@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 80px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

.container {
  overflow: hidden;
}

:root {
  --header-height: 100px;
  /* ヘッダーの高さを変数として管理 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

.wrap {
  margin-inline: auto;
  padding: 0 40px;
  width: min(100%, 1200px);
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1004px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 808px);
}

@media screen and (max-width: 964px) {
  .tb-hide {
    display: none;
  }
}

.mb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .mb-display {
    display: block;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-display {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-display {
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.body-fadein {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 60px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #15722c;
  border-top: 2px solid #15722c;
  transform: rotate(45deg) translate(2px, 2px);
}

.section-title {
  text-align: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-title__en {
  color: #15722c;
  font-size: 3.5rem;
}
@media screen and (max-width: 572px) {
  .section-title__en {
    font-size: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .section-title__en {
    font-size: 2rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .section-title__ja {
    font-size: 1rem;
  }
}

.sec-name {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  color: #15722c;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .sec-name {
    font-size: 1.5rem;
    padding: 0 0 0 10px;
  }
}
.sec-name::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../image/company/icon-sec-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.pagination {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 50px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  background: #dcebd7;
  color: #15722c;
  margin-right: 1em;
  font-size: 1.25rem;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 1.1rem;
  }
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  background-color: #15722c;
  color: #fff;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
  background-color: transparent;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #15722c;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(0, -50%);
}
.next.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #15722c;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-75%, -50%);
  font-size: 14px;
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #15722c;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(0, -50%);
}
.prev.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #15722c;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-25%, -50%);
  font-size: 14px;
}

.container {
  position: relative;
  background-image: url(../image/backimage/bg-image.jpg);
  background-size: cover;
}
.container .header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .container .header {
    height: 60px;
  }
}
.container .header .wrap {
  display: flex;
  align-items: center;
}
.container .header__logo {
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .container .header__logo {
    height: 35px;
  }
}
@media screen and (max-width: 572px) {
  .container .header__logo {
    height: 30px;
  }
}
.container .header__logo > a {
  display: block;
  height: 100%;
  transition: 0.3s;
}
.container .header__logo > a:hover {
  opacity: 0.7;
}
.container .header__logo > a > img {
  height: 100%;
}
.container .header__nav {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .container .header__nav {
    display: none;
  }
}
.container .header__nav-list {
  display: flex;
  align-items: center;
}
.container .header__nav-list > li.is-active > a {
  color: #15722c;
}
.container .header__nav-list > li > a {
  display: block;
  padding: 0.5em 0.6em;
  transition: 0.3s ease;
}
.container .header__nav-list > li > a:hover {
  color: #15722c;
}
.container .header__nav-list .nav-contact {
  background-color: #15722c;
  color: #fff;
  border-radius: 20px;
  margin-left: 1em;
}
.container .header__nav-list .nav-contact > a {
  padding: 0.75em 2em;
  line-height: 1;
  font-size: 0.935rem;
  transition: 0.3s ease;
}
.container .header__nav-list .nav-contact > a:hover {
  color: #fff;
  opacity: 0.7;
}
.container .fv {
  position: relative;
  margin-top: 80px;
  width: 100%;
  height: calc(100dvh - 80px);
}
@media screen and (max-width: 1024px) {
  .container .fv {
    margin-top: 60px;
    height: 600px;
  }
}
@media screen and (max-width: 572px) {
  .container .fv {
    height: 400px;
  }
}
.container .fv__image {
  width: 100%;
  height: calc(100dvh - 80px);
}
@media screen and (max-width: 1024px) {
  .container .fv__image {
    height: 600px;
  }
}
@media screen and (max-width: 572px) {
  .container .fv__image {
    height: 400px;
  }
}
.container .fv__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .fv .daisho-tsushin {
  transition: 0.3s ease;
  position: absolute;
  bottom: 60px;
  right: 80px;
  z-index: 4;
  width: 180px;
  height: 180px;
  display: block;
}
@media screen and (max-width: 572px) {
  .container .fv .daisho-tsushin {
    width: 120px;
    height: 120px;
    right: 20px;
    bottom: 30px;
  }
}
.container .fv .daisho-tsushin:hover {
  opacity: 0.9;
}
.container .fv .daisho-tsushin .inner {
  position: relative;
}
.container .fv .daisho-tsushin .inner .tsushin {
  width: 100%;
}
.container .fv .daisho-tsushin .inner .gif {
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 140px;
}
@media screen and (max-width: 1024px) {
  .container .fv .daisho-tsushin .inner .gif {
    bottom: -60px;
    right: -50px;
  }
}
@media screen and (max-width: 572px) {
  .container .fv .daisho-tsushin .inner .gif {
    bottom: -30px;
    right: -35px;
    width: 100px;
  }
}
.container .fv__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  transform: translate(0, 65%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .container .fv__accent {
    transform: translate(0, 50%);
  }
}
.container .fix-works {
  position: fixed;
  bottom: 52%;
  right: 0;
  z-index: 10;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .container .fix-works {
    bottom: 0;
    width: 50%;
    right: auto;
    left: 0;
    border-top: 1px solid #fff;
  }
}
.container .fix-works > a {
  display: block;
  width: 40px;
  height: 200px;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #15722c;
  color: #fff;
  transition: 0.3s;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 572px) {
  .container .fix-works > a {
    width: 100%;
    height: 50px;
    writing-mode: initial;
    background-color: #737061;
  }
}
.container .fix-works > a:hover {
  opacity: 0.7;
}
.container .fix-contact {
  position: fixed;
  top: 52%;
  right: 0;
  z-index: 10;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .container .fix-contact {
    bottom: 0;
    width: 50%;
    top: auto;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
  }
}
.container .fix-contact > a {
  display: block;
  width: 40px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #15722c;
  color: #fff;
  transition: 0.3s;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 572px) {
  .container .fix-contact > a {
    width: 100%;
    height: 50px;
    writing-mode: initial;
    background-color: #737061;
  }
}
.container .fix-contact > a:hover {
  opacity: 0.7;
}
.container .mv {
  height: 800px;
  width: 100%;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .container .mv {
    height: 500px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 572px) {
  .container .mv {
    height: 300px;
  }
}
.container .mv__image {
  width: 100%;
  height: 100%;
  position: relative;
}
.container .mv__image .mv-swiper {
  height: 100%;
}
.container .mv__image .mv__svg {
  display: block;
  width: 100%;
  height: 100%;
}
.container .mv__image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 5;
  width: 500px;
}
@media screen and (max-width: 572px) {
  .container .mv__image-title {
    font-size: 1.5rem;
    width: 300px;
  }
}
.container .mv__image-title > p {
  background-color: #fff;
  width: 100%;
  text-align: center;
}
.container .mv__image-title > p > span {
  color: #15722c;
}
.container .mv__image-title > p:nth-child(2) {
  margin-top: 10px;
}
.container .hamburger {
  width: 60px;
  height: 60px;
  padding: 20px 12px;
  margin-left: auto;
  position: fixed;
  top: 0;
  right: 40px;
  background-color: transparent;
  z-index: 30;
  display: none;
  color: #15722c;
}
@media screen and (max-width: 1024px) {
  .container .hamburger {
    display: block;
  }
}
@media screen and (max-width: 572px) {
  .container .hamburger {
    right: 10px;
    padding: 22px 14px;
  }
}
.container .hamburger.on-click .inner span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 390deg;
}
.container .hamburger.on-click .inner span:nth-child(2) {
  opacity: 0;
}
.container .hamburger.on-click .inner span:nth-child(3) {
  top: 50%;
  translate: 0 -50%;
  rotate: -390deg;
}
.container .hamburger .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .hamburger .inner span {
  width: 100%;
  height: 2px;
  background-color: #15722c;
  position: absolute;
  transition: 0.3s;
}
.container .hamburger .inner span:nth-child(1) {
  top: 0;
}
.container .hamburger .inner span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.container .hamburger .inner span:nth-child(3) {
  bottom: 0;
}
.container .hamburger .inner > p {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 572px) {
  .container .hamburger .inner > p {
    top: 115%;
    font-size: 0.875rem;
  }
}
.container .ham-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  z-index: 20;
  transition: 0.3s;
  background-image: url(../image/backimage/bg-image.jpg);
  background-size: cover;
}
.container .ham-menu.is-show {
  opacity: 1;
  visibility: visible;
}
.container .ham-menu__inner {
  width: 100%;
  overflow-y: auto;
  position: relative;
}
.container .ham-menu__inner .illust {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.container .ham-menu__logo {
  height: 40px;
  margin-top: 80px;
  text-align: center;
}
.container .ham-menu__logo > a {
  display: inline-block;
  height: 100%;
}
.container .ham-menu__logo > a > img {
  height: 100%;
}
.container .ham-menu__hours {
  text-align: center;
  margin-top: 30px;
}
.container .ham-menu__nav {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  padding: 0 40px 50px;
}
.container .ham-menu__nav-list {
  width: 100%;
}
.container .ham-menu__nav-list > li {
  font-size: 1rem;
}
.container .ham-menu__nav-list > li:not(:first-child) {
  margin-top: 1em;
}
.container .ham-menu__nav-list > li > a {
  display: block;
  text-align: center;
}

.sec-contact {
  padding: 100px 0 0;
  background-color: #fff;
  -webkit-clip-path: ellipse(80% 100% at 50% 100%);
          clip-path: ellipse(80% 100% at 50% 100%);
}
@media screen and (max-width: 964px) {
  .sec-contact {
    -webkit-clip-path: ellipse(100% 100% at 50% 100%);
            clip-path: ellipse(100% 100% at 50% 100%);
  }
}
@media screen and (max-width: 572px) {
  .sec-contact {
    -webkit-clip-path: ellipse(140% 100% at 50% 100%);
            clip-path: ellipse(140% 100% at 50% 100%);
    padding: 80px 0 0;
  }
}
.sec-contact .inner {
  width: min(600px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}
.sec-contact__msg {
  width: 100%;
}
.sec-contact__msg > img {
  width: 100%;
}
.sec-contact__btn {
  display: block;
  background-color: #15722c;
  color: #fff;
  border-radius: 20px;
  line-height: 1;
  padding: 0.75em 0;
  text-align: center;
  margin-top: 30px;
  transition: 0.3s ease;
}
.sec-contact__btn:hover {
  opacity: 0.7;
}
.sec-contact__btn > img {
  width: 22px;
  display: inline-block;
  margin-right: 10px;
}
.sec-contact__info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 572px) {
  .sec-contact__info {
    flex-direction: column;
    gap: 0;
  }
}
.sec-contact__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-contact__info-item > img {
  width: 26px;
  display: block;
}
@media screen and (max-width: 572px) {
  .sec-contact__info-item > img {
    width: 20px;
  }
}
.sec-contact__info-item > p {
  color: #15722c;
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  .sec-contact__info-item > p {
    font-size: 1.125rem;
  }
}
.sec-contact__info > a {
  font-size: 2rem;
  font-weight: 800;
  color: #15722c;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .sec-contact__info > a {
    font-size: 2.5rem;
  }
}
.sec-contact__info > a:hover {
  opacity: 0.7;
}
.sec-contact__area {
  padding: 0 20px;
  margin: 30px auto 0;
  width: min(850px, 100%);
}
.sec-contact__area-title {
  text-align: center;
}
.sec-contact__area-name {
  line-height: 1.6;
  font-size: 0.9em;
  font-weight: 500;
}
.sec-contact__area-msg {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875;
  font-weight: 500;
}
.sec-contact__illust {
  margin-top: 30px;
  width: 100%;
}

.footer {
  padding: 50px 0;
  background-color: #15722c;
  color: #fff;
  position: relative;
}
.footer .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 964px) {
  .footer .wrap {
    flex-direction: column;
  }
}
.footer .flex {
  display: flex;
}
@media screen and (max-width: 572px) {
  .footer .flex {
    flex-direction: column;
  }
}
.footer .flex.ai-center {
  align-items: center;
}
.footer .flex.ai-fend {
  align-items: flex-end;
}
@media screen and (max-width: 572px) {
  .footer .flex.ai-fend {
    align-items: center;
  }
}
.footer__logo {
  display: block;
  height: 45px;
}
.footer__logo > img {
  height: 100%;
}
.footer__hours {
  line-height: 1.5;
  margin-left: 50px;
}
@media screen and (max-width: 572px) {
  .footer__hours {
    margin-left: 0;
    margin-top: 30px;
    text-align: center;
  }
}
.footer__info {
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  .footer__info {
    text-align: center;
  }
}
.footer__info-address {
  font-size: 0.937em;
  margin-top: 20px;
}
.footer__info-contact {
  font-size: 1.125em;
}
.footer__sns {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 572px) {
  .footer__sns {
    margin-left: 0;
    margin-top: 30px;
  }
}
.footer__sns > li {
  width: 30px;
}
.footer__sns > li > a {
  width: 100%;
  display: block;
  transition: 0.3s ease;
}
.footer__sns > li > a:hover {
  opacity: 0.7;
}
.footer__sns > li > a > img {
  width: 100%;
}
.footer__nav {
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .footer__nav {
    margin-top: 30px;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 572px) {
  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
}
@media screen and (max-width: 572px) {
  .footer__nav-list > li {
    width: 30%;
  }
}
.footer__nav-list > li > a {
  display: block;
  font-size: 0.935em;
  transition: 0.3s ease;
}
.footer__nav-list > li > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 572px) {
  .footer__nav-list > li.nav-contact {
    width: 200px;
    margin-top: 10px;
  }
}
.footer__nav-list > li.nav-contact > a {
  background-color: #fff;
  color: #15722c;
  border-radius: 30px;
  padding: 0.75em 2em;
  line-height: 1;
}
@media screen and (max-width: 964px) {
  .footer .l-right {
    display: flex;
    gap: 1em;
    align-items: center;
  }
}
@media screen and (max-width: 572px) {
  .footer .l-right {
    justify-content: center;
    width: 100%;
  }
}
.footer .l-right > a {
  display: block;
  transition: 0.3s ease;
}
.footer .l-right > a:hover {
  opacity: 0.7;
}
.footer .l-right > a:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 964px) {
  .footer .l-right > a:not(:first-child) {
    margin-top: 0;
  }
}
.footer .l-right > a > img {
  width: 200px;
  display: block;
}
@media screen and (max-width: 572px) {
  .footer .l-right > a > img {
    width: 150px;
  }
}

.copylight {
  padding: 1em 20px;
  text-align: center;
  font-size: 0.925rem;
  background-color: transparent;
}
@media screen and (max-width: 572px) {
  .copylight {
    padding: 20px 1em 70px;
  }
}

.main .concept {
  margin-top: 20vw;
  width: 100%;
}
.main .concept .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 964px) {
  .main .concept .wrap {
    flex-direction: column;
  }
}
.main .concept__title {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  margin-left: 3rem;
  color: #15722c;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 964px) {
  .main .concept__title {
    writing-mode: initial;
    line-height: 1.4;
    margin-left: 0;
  }
}
.main .concept__title .txt {
  display: block;
}
.main .concept__title .txt:nth-child(2) {
  margin-top: 2em;
}
@media screen and (max-width: 964px) {
  .main .concept__title .txt:nth-child(2) {
    margin-top: 0;
  }
}
.main .concept__message {
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  line-height: 2.2;
  margin-left: 3rem;
}
@media screen and (max-width: 964px) {
  .main .concept__message {
    writing-mode: initial;
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 572px) {
  .main .concept__message {
    line-height: 1.6;
  }
}
.main .concept__btn {
  display: block;
  width: 40px;
  height: auto;
  border-radius: 20px;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #15722c;
  color: #fff;
  transition: 0.3s;
  writing-mode: vertical-lr;
  padding: 2em 0.5em;
  letter-spacing: 0.15em;
  margin-top: auto;
  transition: 0.3s ease;
}
@media screen and (max-width: 964px) {
  .main .concept__btn {
    writing-mode: initial;
    margin-top: 20px;
    width: 240px;
    line-height: 1;
    padding: 1em 0;
  }
}
.main .concept__btn:hover {
  opacity: 0.7;
}
.main .blog {
  margin-top: 80px;
  background-image: url(../image/backimage/bg-news.png);
  background-size: cover;
  padding: 100px 0 80px;
  font-weight: 800;
}
@media screen and (max-width: 572px) {
  .main .blog {
    background-image: url(../image/backimage/bg-news-sp.png);
    margin-top: 60px;
  }
}
.main .blog__category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .main .blog__category {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.main .blog__category-item {
  border-left: 1px solid #000;
}
@media screen and (max-width: 572px) {
  .main .blog__category-item {
    border-left: none;
    width: 40%;
    text-align: center;
    border-bottom: 1px solid #000;
  }
}
.main .blog__category-item:last-child {
  border-right: 1px solid #000;
}
@media screen and (max-width: 572px) {
  .main .blog__category-item:last-child {
    border-right: none;
  }
}
.main .blog__category-item:nth-of-type(even) {
  border-left: 1px solid #000;
}
@media screen and (max-width: 572px) {
  .main .blog__category-item:nth-of-type(even) {
    border-left: none;
  }
}
.main .blog__category-item > a {
  display: block;
  padding: 0.25em 2em;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .main .blog__category-item > a {
    width: 100%;
    padding: 0.25em 0;
  }
}
.main .blog__category-item > a:hover {
  opacity: 0.7;
}
.main .reform {
  padding: 80px 0;
  position: relative;
  background-image: url(../image/backimage/bg-image2.jpg);
  background-size: 100% auto;
}
@media screen and (max-width: 572px) {
  .main .reform {
    padding: 60px 0;
  }
}
.main .reform__list {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3em 2em;
}
@media screen and (max-width: 572px) {
  .main .reform__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em 1em;
    margin-top: 30px;
  }
}
.main .reform__list-item {
  width: 100%;
}
.main .reform__list-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main .reform__list-item > a:hover img {
  transform: none;
  opacity: 0.7;
}
.main .reform__list-item > a > img {
  width: 100%;
  border-radius: 50%;
  height: auto;
  transform: scale(1.05);
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .main .reform__list-item > a > img {
    transform: none;
  }
}
.main .reform__list-item > a > p {
  text-align: center;
  margin-top: 1em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  line-height: 1.6;
}

.sec-head > h2 {
  text-align: center;
  font-size: 2rem;
  color: #15722c;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .sec-head > h2 {
    font-size: 1.5rem;
  }
}
.sec-head > p {
  font-size: 1.25rem;
  text-align: center;
  color: #8a836c;
}
@media screen and (max-width: 572px) {
  .sec-head > p {
    font-size: 1rem;
  }
}

.btn-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.more-btn {
  display: block;
  width: 240px;
  border-radius: 30px;
  line-height: 1;
  padding: 1em 0;
  background-color: #15722c;
  color: #fff;
  font-size: 0.935rem;
  text-align: center;
  transition: 0.3s ease;
}
.more-btn:hover {
  opacity: 0.7;
}

.works {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .works {
    padding: 60px 0;
  }
}
.works.bg-accent {
  margin-top: 50px;
  padding: 100px 0;
  background-image: url(../image/backimage/bg-works.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 572px) {
  .works.bg-accent {
    background-image: url(../image/backimage/bg-works-sp.png);
  }
}

.company-main {
  margin-top: 80px;
  padding: 80px 0;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .company-main {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.company-main .company-msg {
  padding: 0 20px;
  width: min(800px, 100%);
  margin: 0 auto;
}
.company-main .company-msg > img {
  width: 100%;
}
.company-main .concept {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .concept {
    margin-top: 30px;
  }
}
.company-main .concept__content {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .concept__content {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
}
.company-main .concept__content-left {
  flex: 1;
}
@media screen and (max-width: 572px) {
  .company-main .concept__content-left {
    flex: initial;
    width: 100%;
  }
}
.company-main .concept__content-left > p {
  line-height: 2;
}
@media screen and (max-width: 572px) {
  .company-main .concept__content-left > p {
    line-height: 1.8;
  }
}
.company-main .concept__content-right {
  margin-left: 50px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 572px) {
  .company-main .concept__content-right {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}
.company-main .concept__content-right .concept-image {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 220px;
}
.company-main .concept__content-right .concept-image > img {
  border-radius: 10px;
  width: 100%;
}
.company-main .concept__content-right .flex {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .company-main .concept__content-right .flex {
    gap: 20px;
  }
}
.company-main .concept__content-right .flex .post {
  font-size: 1.125rem;
}
.company-main .concept__content-right .flex .inner {
  text-align: center;
}
.company-main .concept__content-right .flex .inner > p:nth-child(1) {
  font-size: 0.875rem;
}
.company-main .concept__content-right .flex .inner > p:nth-child(2) {
  line-height: 1;
  font-size: 1.375rem;
}
.company-main .member {
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .company-main .member {
    margin-top: 60px;
  }
}
.company-main .member__link {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 10px;
  gap: 0;
  transition: 0.3s ease;
  position: relative;
}
.company-main .member__link:hover {
  opacity: 0.8;
}
.company-main .member__link > img {
  width: 14.2857142857%;
  display: block;
  border-radius: 10px;
}
.company-main .member__link > h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
@media screen and (max-width: 572px) {
  .company-main .member__link > h3 {
    width: 75%;
  }
}
.company-main .member__link > h3 > img {
  width: 100%;
}
.company-main .philosophy {
  margin-top: 80px;
  text-align: center;
}
.company-main .philosophy__title {
  font-size: 1.25rem;
  margin-top: 20px;
}
.company-main .philosophy__msg {
  font-weight: 500;
  margin-top: 10px;
}
.company-main .philosophy .newsletter {
  margin-top: 50px;
  display: flex;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy .newsletter {
    margin-top: 30px;
    flex-direction: column;
  }
}
.company-main .philosophy .newsletter > img {
  display: block;
  width: 320px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy .newsletter > img {
    width: 100%;
  }
}
.company-main .philosophy .newsletter__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f15a24;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy .newsletter__info {
    padding: 30px 20px;
  }
}
.company-main .philosophy .newsletter__info > h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy .newsletter__info > h3 {
    font-size: 1.25rem;
  }
}
.company-main .philosophy .newsletter__info > a {
  margin-top: 20px;
  background-color: #fff;
  color: #f15a24;
  line-height: 1;
  display: block;
  padding: 0.75em 4em;
  border-radius: 20px;
  transition: 0.3s ease;
}
.company-main .philosophy .newsletter__info > a:hover {
  opacity: 0.7;
}
.company-main .philosophy .newsletter__info > img {
  width: 180px;
  position: absolute;
  bottom: -80px;
  right: -30px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy .newsletter__info > img {
    width: 120px;
    bottom: -40px;
    right: -10px;
  }
}
.company-main .philosophy__image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy__image {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
}
.company-main .philosophy__image > img {
  border-radius: 30px;
  width: 100%;
}
.company-main .infomation {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .company-main .infomation {
    margin-top: 60px;
  }
}
.company-main .infomation__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.937rem;
  margin-top: 30px;
}
.company-main .infomation__list > li {
  width: calc(50% - 10px);
  display: flex;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li {
    width: 100%;
    flex-direction: column;
  }
}
.company-main .infomation__list > li > p:nth-child(1) {
  background-color: #15722c;
  color: #fff;
  width: 160px;
  text-align: center;
  padding: 0.25em 0;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li > p:nth-child(1) {
    width: 100%;
  }
}
.company-main .infomation__list > li > p:nth-child(2) {
  background-color: #fff;
  padding: 0.25em 1em;
  flex: 1;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li > p:nth-child(2) {
    width: 100%;
    text-align: center;
  }
}
.company-main .history {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .company-main .history {
    margin-top: 60px;
  }
}
.company-main .history__image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .history__image {
    gap: 10px;
    margin-top: 30px;
  }
}
.company-main .history__image > img {
  border-radius: 30px;
  width: 100%;
}
.company-main .history__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .history__list {
    margin-top: 30px;
  }
}
.company-main .history__list > dt {
  width: 30%;
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .company-main .history__list > dt {
    width: 100%;
    border-left: 3px solid #121212;
    padding-left: 10px;
    margin-top: 25px;
  }
}
.company-main .history__list > dd {
  width: 70%;
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .company-main .history__list > dd {
    margin-top: 5px;
    width: 100%;
    padding-left: 13px;
  }
}
.company-main .history__list .l-margin {
  margin-left: 30%;
  margin-top: 5px;
}
@media screen and (max-width: 572px) {
  .company-main .history__list .l-margin {
    margin-left: 0;
  }
}
.company-main .access {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .company-main .access {
    margin-top: 60px;
  }
}
.company-main .access__content {
  margin-top: 50px;
  display: flex;
}
@media screen and (max-width: 572px) {
  .company-main .access__content {
    margin-top: 30px;
    flex-direction: column;
  }
}
.company-main .access__content-map {
  width: 600px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 572px) {
  .company-main .access__content-map {
    width: 100%;
  }
}
.company-main .access__content-map iframe {
  width: 100%;
  height: 100%;
}
.company-main .access__content-info {
  margin-left: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .access__content-info {
    margin-left: 0;
    margin-top: 30px;
    text-align: center;
  }
}
.company-main .access__content-info > h3 {
  font-size: 1.5rem;
}
.company-main .access__content-info > p {
  line-height: 1.5;
  margin-top: 10px;
}
.company-main .access__content-info > ul {
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .company-main .access__content-info > ul {
    margin-top: 20px;
  }
}

.reform-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .reform-main {
    margin-top: 30px;
  }
}
.reform-main .reform__text {
  margin-top: 30px;
  text-align: center;
}
.reform-main .reform__list {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3em 2em;
}
@media screen and (max-width: 572px) {
  .reform-main .reform__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em 1em;
    margin-top: 30px;
  }
}
.reform-main .reform__list-item {
  width: 100%;
}
.reform-main .reform__list-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.reform-main .reform__list-item > a:hover img {
  transform: none;
  opacity: 0.7;
}
.reform-main .reform__list-item > a > img {
  width: 100%;
  border-radius: 50%;
  height: auto;
  transform: scale(1.05);
  transition: 0.3s;
}
@media screen and (max-width: 572px) {
  .reform-main .reform__list-item > a > img {
    transform: none;
  }
}
.reform-main .reform__list-item > a > p {
  text-align: center;
  margin-top: 1em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  line-height: 1.6;
}
.reform-main .reform__content {
  margin-top: 80px;
}
.reform-main .reform__content-item {
  padding: 20px;
  background-color: #fff;
  display: flex;
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item {
    flex-direction: column;
  }
}
.reform-main .reform__content-item:not(:first-child) {
  margin-top: 30px;
}
.reform-main .reform__content-item .item-image {
  width: 400px;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item .item-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.reform-main .reform__content-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reform-main .reform__content-item .item-info {
  width: calc(100% - 300px);
  margin-left: 30px;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item .item-info {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.reform-main .reform__content-item .item-info .ttl {
  background-color: #15722c;
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info .ttl {
    width: 100%;
  }
}
.reform-main .reform__content-item .item-info .msg {
  margin-top: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info .msg {
    width: 100%;
  }
}
.reform-main .reform__content-item .item-info .act {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info .act {
    display: contents;
  }
}
.reform-main .reform__content-item .item-info .act > p {
  position: relative;
  padding: 0 20px;
  margin-right: 1em;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info .act > p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item .item-info .act > p {
    text-align: center;
    display: inline-block;
  }
}
.reform-main .reform__content-item .item-info .act > p::before, .reform-main .reform__content-item .item-info .act > p::after {
  content: "";
  display: block;
  height: 25px;
  width: 2px;
  background-color: #66d9ab;
  position: absolute;
  top: 50%;
}
.reform-main .reform__content-item .item-info .act > p::before {
  left: 5px;
  transform: translateY(-50%) rotate(-15deg);
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item .item-info .act > p::before {
    left: 25px;
  }
}
.reform-main .reform__content-item .item-info .act > p::after {
  right: 5px;
  transform: translateY(-50%) rotate(15deg);
}
@media screen and (max-width: 572px) {
  .reform-main .reform__content-item .item-info .act > p::after {
    right: 25px;
  }
}
.reform-main .reform__content-item .item-info .act > p > span {
  color: #c1272d;
  font-size: 1.25rem;
  font-weight: 800;
}
.reform-main .reform__content-item .item-info .act > a {
  line-height: 1;
  padding: 0.5em 2em;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  display: block;
  transition: 0.3s ease;
  font-size: 0.937rem;
}
@media screen and (max-width: 964px) {
  .reform-main .reform__content-item .item-info .act > a {
    order: 10;
    margin: 10px auto 0;
    width: 200px;
    text-align: center;
  }
}
.reform-main .reform__content-item .item-info .act > a:hover {
  opacity: 0.7;
}
.reform-main .reform__content-item .item-info .text {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.6;
}
.reform-main .reform__content-item .item-info > ul {
  margin-top: 10px;
}

.reason {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .reason {
    margin-top: 60px;
  }
}
.reason__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .reason__content {
    gap: 20px;
  }
}
@media screen and (max-width: 572px) {
  .reason__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-top: 30px;
  }
}
.reason__content-item {
  width: 100%;
  position: relative;
}
.reason__content-item .item-image {
  width: 100%;
  aspect-ratio: 16/9;
}
.reason__content-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.reason__content-item > img {
  position: absolute;
  height: 60px;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
}
.reason__content-item > h3 {
  font-size: 1.25rem;
  color: #15722c;
  margin-top: 10px;
  text-align: center;
}
.reason__content-item > p {
  margin-top: 10px;
  font-weight: 600;
}

.sec-concept {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 572px) {
  .sec-concept {
    margin-top: 60px;
  }
}
.sec-concept__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .sec-concept__content {
    flex-direction: column-reverse;
  }
}
.sec-concept__content-image {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  width: 280px;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 572px) {
  .sec-concept__content-image {
    margin-top: 30px;
    width: 220px;
  }
}
.sec-concept__content-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-concept__content-text {
  flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 572px) {
  .sec-concept__content-text {
    margin-left: 0;
    flex: initial;
    width: 100%;
  }
}
.sec-concept__content-text > p {
  line-height: 2;
}
@media screen and (max-width: 572px) {
  .sec-concept__content-text > p {
    line-height: 1.8;
  }
}
.sec-concept__content-text .flex {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sec-concept__content-text .flex .inner {
  margin-left: 30px;
  text-align: center;
  line-height: 1.4;
}
.sec-concept__content-text .flex .inner > p:nth-child(1) {
  font-size: 0.75rem;
}
.sec-concept__content-text .flex .inner > p:nth-child(2) {
  font-size: 1.25rem;
}

.newhouse-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .newhouse-main {
    margin-top: 30px;
  }
}
.newhouse-main .newhouse {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .newhouse-main .newhouse {
    margin-top: 30px;
  }
}
.newhouse-main .newhouse__content {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .newhouse-main .newhouse__content {
    flex-direction: column-reverse;
  }
}
.newhouse-main .newhouse__content:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 572px) {
  .newhouse-main .newhouse__content:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
.newhouse-main .newhouse__content:not(:first-child) {
  margin-top: 50px;
}
.newhouse-main .newhouse__content-info {
  width: 52%;
}
@media screen and (max-width: 572px) {
  .newhouse-main .newhouse__content-info {
    width: 100%;
  }
}
.newhouse-main .newhouse__content-info > h3 {
  font-size: 1.5rem;
  color: #15722c;
  line-height: 1.4;
}
.newhouse-main .newhouse__content-info > p {
  margin-top: 1em;
  line-height: 1.6;
}
.newhouse-main .newhouse__content-image {
  width: 48%;
}
@media screen and (max-width: 572px) {
  .newhouse-main .newhouse__content-image {
    width: 100%;
  }
}
.newhouse-main .newhouse__content-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.newhouse-main .message {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .newhouse-main .message {
    margin-top: 60px;
  }
}
.newhouse-main .message__title {
  font-size: 2rem;
}
@media screen and (max-width: 572px) {
  .newhouse-main .message__title {
    font-size: 1.5em;
  }
}
.newhouse-main .message img {
  width: 300px;
  text-align: center;
}
.newhouse-main .message__text {
  line-height: 1.8;
}

.contact-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .contact-main {
    margin-top: 60px;
  }
}
.contact-main .contact {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 572px) {
  .contact-main .contact {
    padding: 40px 0;
  }
}
.contact-main .contact__message {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__message {
    margin-top: 20px;
  }
}
.contact-main .contact__message > span {
  display: inline-block;
}
.contact-main .contact__area {
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
}
.contact-main .contact__other {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}
.contact-main .contact__content {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__content {
    margin-top: 30px;
  }
}
.contact-main .contact__content .c-head {
  margin-top: 2em;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__content .c-head {
    width: 100%;
  }
}
.contact-main .contact__content .c-head:nth-of-type(1) {
  margin-top: 0;
}
.contact-main .contact__content .c-head .f-required {
  position: relative;
  background-color: #15722c;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0 1em;
}
.contact-main .contact__content .c-head .f-label {
  display: inline-block;
  margin-left: 0.5em;
  line-height: 2;
}
.contact-main .contact__content .c-data {
  margin-top: 0.25em;
  width: 100%;
}
.contact-main .contact__content .c-data input[type=text],
.contact-main .contact__content .c-data input[type=tel],
.contact-main .contact__content .c-data input[type=email] {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #fff;
  border: 1px solid #999;
}
.contact-main .contact__content .c-data input[type=checkbox] {
  display: none;
}
.contact-main .contact__content .c-data input[type=radio] {
  display: none;
}
.contact-main .contact__content .c-data textarea {
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #fff;
  border: 1px solid #999;
}
.contact-main .contact__content .c-data .wpcf7-checkbox,
.contact-main .contact__content .c-data .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  font-size: 0.825rem;
}
.contact-main .contact__content .c-data .wpcf7-checkbox .wpcf7-list-item,
.contact-main .contact__content .c-data .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: inline-block;
  background-color: #fff;
  width: calc((100% - 1em) / 5);
  text-align: center;
  border: 1px solid #999;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__content .c-data .wpcf7-checkbox .wpcf7-list-item,
.contact-main .contact__content .c-data .wpcf7-radio .wpcf7-list-item {
    width: calc((100% - 0.5em) / 2);
  }
}
.contact-main .contact__content .c-data .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + span,
.contact-main .contact__content .c-data .wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked + span {
  background-color: #15722c;
  color: #fff;
  border: none;
}
.contact-main .contact__content .c-data .wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked + span,
.contact-main .contact__content .c-data .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span {
  background-color: #15722c;
  color: #fff;
  border: none;
}
.contact-main .contact__content .c-data .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
.contact-main .contact__content .c-data .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  width: 100%;
  padding: 0.75em 0;
  line-height: 1;
  transition: 0.1s;
  cursor: pointer;
}
.contact-main .contact__content .c-data .sub-text {
  margin-top: 5px;
  font-size: 0.875rem;
}
.contact-main .contact__content .remarks {
  font-size: 0.75rem;
  margin-top: 5px;
}
.contact-main .contact__content .caution {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 15px;
}
.contact-main .contact__content .question {
  color: #15722c;
}
.contact-main .contact__content .c-policy-check {
  margin: 50px auto 0;
  width: 300px;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__content .c-policy-check {
    margin: 30px auto 0;
  }
}
.contact-main .contact__content .c-policy-check a {
  text-decoration: underline;
  transition: 0.3s ease;
}
.contact-main .contact__content .c-policy-check a:hover {
  opacity: 0.7;
}
.contact-main .contact__content .c-policy-check .wpcf7-list-item {
  margin: 0;
}
.contact-main .contact__content .c-input-check {
  width: 300px;
  margin: 5px auto 0;
}
.contact-main .contact__content .c-input-check .wpcf7-list-item {
  margin: 0;
}
.contact-main .contact__content .c-sales-check .wpcf7-list-item {
  margin: 0;
}
.contact-main .contact__content .btn-send {
  padding: 0;
  margin-inline: auto;
  width: 300px;
  margin: 30px auto 0;
  position: relative;
  transition: 0.3s;
}
.contact-main .contact__content .btn-send:hover input {
  opacity: 0.8;
}
.contact-main .contact__content .btn-send input {
  padding: 1em 0;
  text-align: center;
  width: 100%;
  font-weight: bold;
  background-color: #f15a24;
  color: #fff;
  transition: 0.3s ease;
  line-height: 1;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__content .btn-send input {
    padding: 1em 0;
  }
}
.contact-main .contact__content .btn-send .wpcf7-spinner {
  position: absolute;
  inset: 0;
}

.confirm-main {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .confirm-main {
    margin-top: 60px;
  }
}
.confirm-main .confirm {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm {
    padding: 40px 0;
  }
}
.confirm-main .confirm__message {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm__message {
    margin-top: 20px;
  }
}
.confirm-main .confirm__message > span {
  display: inline-block;
}
.confirm-main .confirm__content {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm__content {
    margin-top: 30px;
  }
}
.confirm-main .confirm__content .c-head {
  margin-top: 2em;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm__content .c-head {
    width: 100%;
  }
}
.confirm-main .confirm__content .c-head:nth-of-type(1) {
  margin-top: 0;
}
.confirm-main .confirm__content .c-head .f-label {
  display: inline-block;
  margin-left: 0.5em;
  line-height: 2;
}
.confirm-main .confirm__content .c-data {
  margin-top: 0.5em;
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #fff;
}
.confirm-main .confirm__content .sub-text {
  margin-top: 5px;
  font-size: 0.875rem;
}
.confirm-main .confirm__content .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm__content .inner {
    margin-top: 50px;
    gap: 30px;
  }
}
@media screen and (max-width: 375px) {
  .confirm-main .confirm__content .inner {
    gap: 10px;
  }
}
.confirm-main .confirm__content .btn-wrap {
  gap: 50px;
}
.confirm-main .confirm__content .btn-send {
  padding: 0;
  width: 300px;
  position: relative;
  transition: 0.3s;
}
.confirm-main .confirm__content .btn-send:hover input {
  opacity: 0.8;
}
.confirm-main .confirm__content .btn-send input {
  padding: 1em 0;
  text-align: center;
  width: 100%;
  font-weight: bold;
  background-color: #f15a24;
  color: #fff;
  line-height: 1;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .confirm-main .confirm__content .btn-send input {
    padding: 1em 0;
  }
}
.confirm-main .confirm__content .btn-send.b-back > input {
  background-color: #808080;
}
.confirm-main .confirm__content .btn-send .wpcf7-spinner {
  position: absolute;
  inset: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.c-recaptcha {
  font-size: 10px;
  text-align: center;
  margin-top: 30px;
}

.policy-main {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .policy-main {
    margin-top: 60px;
  }
}
.policy-main .policy {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .policy-main .policy {
    padding: 50px 0;
  }
}
.policy-main .policy__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.policy-main .policy__content {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .policy-main .policy__content {
    margin-top: 30px;
  }
}
.policy-main .policy__content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2em;
}
.policy-main .policy__content p {
  margin-top: 1em;
}
.policy-main .policy__content p a {
  text-decoration: underline;
  transition: 0.3s;
}
.policy-main .policy__content p a:hover {
  opacity: 0.7;
}
.policy-main .policy__content ol {
  padding-left: 1.5rem;
  counter-reset: number 0;
}
.policy-main .policy__content ol li {
  margin-top: 10px;
}
.policy-main .policy__content ol li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}

.p-404 {
  width: 100%;
  padding: 180px 20px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .p-404 {
    padding: 150px 20px;
  }
}
.p-404 .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #15722c;
}
.p-404 .title > span {
  display: inline-block;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.125rem;
}
.p-404 .text > span {
  display: inline-block;
}
.p-404 .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #15722c;
  border: 1px solid currentColor;
  border-radius: 30px;
  padding: 1em 0;
  width: 300px;
  transition: 0.3s;
  text-align: center;
}
.p-404 .back-btn:hover {
  background-color: #15722c;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .p-404 .back-btn {
    margin: 50px auto 0;
    width: 250px;
  }
}

.thanks {
  width: 100%;
  padding: 180px 20px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .thanks {
    padding: 150px 20px;
  }
}
.thanks .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #15722c;
}
.thanks .title > span {
  display: inline-block;
}
.thanks .text {
  margin-top: 30px;
  font-size: 1rem;
}
.thanks .text > span {
  display: inline-block;
}
.thanks .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #15722c;
  border: 1px solid currentColor;
  border-radius: 30px;
  padding: 1em 0;
  width: 300px;
  transition: 0.3s;
  text-align: center;
}
.thanks .back-btn:hover {
  background-color: #15722c;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .thanks .back-btn {
    margin: 50px auto 0;
    width: 250px;
  }
}

.a-blog-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .a-blog-main {
    margin-top: 60px;
  }
}
.a-blog-main .a-blog {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .a-blog-main .a-blog {
    padding: 40px 0;
  }
}
.a-blog-main .a-blog__category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .a-blog-main .a-blog__category {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.a-blog-main .a-blog__category-item {
  border-left: 1px solid #000;
}
@media screen and (max-width: 572px) {
  .a-blog-main .a-blog__category-item {
    border-left: none;
    width: 40%;
    text-align: center;
    border-bottom: 1px solid #000;
  }
}
.a-blog-main .a-blog__category-item.is-active {
  color: #15722c;
}
.a-blog-main .a-blog__category-item:last-child {
  border-right: 1px solid #000;
}
@media screen and (max-width: 572px) {
  .a-blog-main .a-blog__category-item:last-child {
    border-right: none;
  }
}
.a-blog-main .a-blog__category-item > a {
  padding: 0.25em 2em;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .a-blog-main .a-blog__category-item > a {
    padding: 0.25em 0;
  }
}
.a-blog-main .a-blog__category-item > a:hover {
  opacity: 0.7;
}

.blog-content {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media screen and (max-width: 964px) {
  .blog-content {
    gap: 1.5em 1em;
  }
}
@media screen and (max-width: 572px) {
  .blog-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-content__item {
  width: 100%;
  display: block;
  padding: 1em;
  background-color: #fff;
  border-radius: 20px;
  transition: 0.3s ease;
}
.blog-content__item:hover {
  opacity: 0.7;
}
.blog-content__item .item-image {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
.blog-content__item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-content__item .item-cat {
  display: inline-block;
  padding: 0.3em 1em;
  background-color: #dcebd7;
  color: #15722c;
  font-weight: 800;
  border-radius: 20px;
  font-size: 0.875em;
  line-height: 1;
}
.blog-content__item .item-date {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.937em;
  font-weight: 800;
}
.blog-content__item .item-title {
  line-height: 1.6;
  margin-top: 10px;
}

.data-nothing {
  text-align: center;
  margin-top: 30px;
  font-size: 1.125rem;
}

.a-member-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .a-member-main {
    margin-top: 60px;
  }
}
.a-member-main .a-member {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 572px) {
  .a-member-main .a-member {
    padding: 40px 0;
  }
}
.a-member-main .a-member__text {
  margin-top: 30px;
  text-align: center;
}
.a-member-main .a-member__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}
@media screen and (max-width: 1024px) {
  .a-member-main .a-member__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
  }
}
@media screen and (max-width: 572px) {
  .a-member-main .a-member__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 60px;
    padding: 0 20px;
  }
}
.a-member-main .a-member__list-item {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}
.a-member-main .a-member__list-item .member-image {
  width: 50%;
  aspect-ratio: 1;
  border: 3px solid #15722c;
  border-radius: 50%;
  overflow: hidden;
  margin: -50px auto 0;
}
.a-member-main .a-member__list-item .member-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.a-member-main .a-member__list-item .member-position {
  text-align: center;
  margin-top: 20px;
  color: #15722c;
}
.a-member-main .a-member__list-item .member-name {
  position: relative;
  padding-top: 23px;
  margin-top: 10px;
}
.a-member-main .a-member__list-item .member-name .furigana {
  font-size: 0.75rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.a-member-main .a-member__list-item .member-name .name {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1;
}
.a-member-main .a-member__list-item .balloon {
  background-color: #15722c;
  color: #fff;
  padding: 0.5em 1em;
  line-height: 1;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
.a-member-main .a-member__list-item .balloon::after {
  content: "";
  width: 16px;
  height: 10px;
  background-color: #15722c;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 98%;
  left: 20px;
}
.a-member-main .a-member__list-item .member-important {
  margin-top: 15px;
  font-size: 1.25rem;
  color: #15722c;
  line-height: 1.4;
}
.a-member-main .a-member__list-item .member-message {
  line-height: 1.6;
  margin-top: 20px;
}

.a-works-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .a-works-main {
    margin-top: 60px;
  }
}
.a-works-main .a-works {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .a-works-main .a-works {
    padding: 40px 0;
  }
}
.a-works-main .a-works__search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
}
@media screen and (max-width: 572px) {
  .a-works-main .a-works__search {
    flex-direction: column;
  }
}
.a-works-main .a-works__search-title {
  margin-right: 20px;
}
.a-works-main .a-works__search input[type=text] {
  background-color: #fff;
  border: 1px solid #555;
  width: 240px;
  padding: 0 0.5em;
}
@media screen and (max-width: 572px) {
  .a-works-main .a-works__search input[type=text] {
    flex-direction: column;
  }
}
.a-works-main .a-works__search button {
  font-size: 0.875rem;
  background-color: #15722c;
  color: #fff;
  width: 50px;
  text-align: center;
  height: 30px;
  display: inline-block;
}
.a-works-main .a-works__result {
  margin-top: 20px;
  text-align: center;
}
.a-works-main .a-works__category {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 0.5em 1em;
  flex-wrap: wrap;
}
@media screen and (max-width: 572px) {
  .a-works-main .a-works__category-item {
    width: calc(50% - 1em);
  }
}
.a-works-main .a-works__category-item.is-active > a {
  background-color: #15722c;
  color: #fff;
}
.a-works-main .a-works__category-item > a {
  display: block;
  padding: 0.25em 0;
  text-align: center;
  border: 1px solid #15722c;
  background-color: #fff;
  width: 180px;
  transition: 0.3s;
  font-size: 0.925rem;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 572px) {
  .a-works-main .a-works__category-item > a {
    width: 100%;
  }
}
.a-works-main .a-works__category-item > a:hover {
  opacity: 0.7;
  background-color: #15722c;
  color: #fff;
}

.works-content {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media screen and (max-width: 964px) {
  .works-content {
    gap: 1.5em 1em;
  }
}
@media screen and (max-width: 572px) {
  .works-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-content__item {
  display: block;
  padding: 1em;
  display: block;
  background-color: #fff;
  padding: 1em;
  border-radius: 10px;
}
.works-content__item:hover .item-image > img {
  transform: scale(1.05);
}
.works-content__item .item-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.works-content__item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.works-content__item .item-cat {
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .works-content__item .item-cat {
    margin-top: 10px;
  }
}
.works-content__item .item-cat > span {
  display: inline-block;
  background-color: #dcebd7;
  color: #15722c;
  padding: 0.3em 1em;
  border-radius: 20px;
  line-height: 1;
  font-size: 0.875rem;
}
.works-content__item .item-title {
  margin-top: 10px;
  line-height: 1.6;
}

.single-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .single-main {
    margin-top: 60px;
  }
}
.single-main .single {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .single-main .single {
    padding: 50px 0 80px;
  }
}
.single-main .single__title {
  font-size: 1.75rem;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .single-main .single__title {
    font-size: 1.5rem;
  }
}
.single-main .single__date {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.875rem;
  margin-top: 20px;
}
.single-main .single__thumbnail {
  width: 100%;
  margin-top: 20px;
}
.single-main .single__thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
}
.single-main .single__content {
  margin-top: 2.5em;
  line-height: 1.8;
}
.single-main .single__content h2 {
  font-size: 1.375rem;
  border-bottom: 3px double #15722c;
  font-weight: bold;
  margin-top: 2em;
  padding-bottom: 3px;
}
.single-main .single__content h3 {
  font-size: 1.25rem;
  padding-left: 0.5em;
  font-weight: bold;
  border-left: 3px double #15722c;
  margin-top: 1.5em;
}
.single-main .single__content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1.5em;
}
.single-main .single__content p {
  margin-top: 1em;
  font-weight: 500;
}
.single-main .single__content p a {
  color: #f15a24;
  text-decoration: underline;
  transition: 0.3s;
}
.single-main .single__content p a:hover {
  opacity: 0.7;
}
.single-main .single__content figure {
  margin-top: 1em;
}
.single-main .single__content figure img {
  width: 100%;
}
.single-main .single .back-btn {
  margin: 80px auto 0;
  padding: 1.25em 0;
  display: block;
  width: 350px;
  color: #15722c;
  border: 1px solid #15722c;
  border-radius: 30px;
  transition: 0.3s;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .single-main .single .back-btn {
    width: 280px;
    padding: 1em 0;
    margin: 50px auto 0;
  }
}
.single-main .single .back-btn:hover {
  background-color: #15722c;
  color: #fff;
}

@media screen and (max-width: 572px) {
  .rtoc-mokuji-content.rtoc_open #rtoc-mokuji-title.is_close {
    padding: 14px !important;
  }
}

@media screen and (max-width: 572px) {
  .rtoc-mokuji-content #rtoc-mokuji-title {
    padding: 14px !important;
    font-size: 1.25em !important;
  }
}

@media screen and (max-width: 572px) {
  .rtoc-mokuji-content .rtoc-mokuji.level-1 {
    margin: 0 14px 21px !important;
  }
}

.adjacent-posts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .adjacent-posts {
    flex-wrap: wrap;
  }
}
.adjacent-posts__card {
  width: 320px;
}
@media screen and (max-width: 572px) {
  .adjacent-posts__card {
    width: 100%;
  }
}
.adjacent-posts__card-link {
  display: block;
  border-radius: 10px;
  transition: 0.3s ease;
}
.adjacent-posts__card-link:hover {
  opacity: 0.8;
}
.adjacent-posts__card-link .inner {
  margin-top: 10px;
  border-radius: 1px;
  background-color: #fff;
  padding: 1em;
}
.adjacent-posts__card-link .card-text {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #000;
}
.adjacent-posts__card-link .card-image {
  width: 100%;
  aspect-ratio: 16/9;
}
.adjacent-posts__card-link .card-image > img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.adjacent-posts__card-link .card-meta {
  display: flex;
  align-items: center;
  margin-top: 1em;
  gap: 5px;
}
.adjacent-posts__card-link .card-meta .post-cat {
  padding: 0.3em 1em;
  background-color: #dcebd7;
  color: #15722c;
  font-weight: 800;
  border-radius: 20px;
  font-size: 0.875rem;
  line-height: 1;
}
.adjacent-posts__card-link .card-meta .post-date {
  margin-left: 1em;
  font-size: 0.937em;
  font-weight: 800;
}
.adjacent-posts__card-link .card-title {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 0.937rem;
}
.adjacent-posts__card-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.adjacent-posts__back > a {
  padding: 0.75em 2em;
  background-color: #15722c;
  color: #fff;
  display: block;
  transition: 0.3s ease;
  font-size: 0.937rem;
  line-height: 1;
  border-radius: 20px;
}
.adjacent-posts__back > a:hover {
  opacity: 0.7;
}

.blog-related {
  margin: 80px 0;
}
@media screen and (max-width: 572px) {
  .blog-related {
    margin: 50px 0;
  }
}
.blog-related__title {
  font-size: 1.5rem;
  text-align: center;
  color: #15722c;
}

.works-related {
  margin: 80px 0;
}
@media screen and (max-width: 572px) {
  .works-related {
    margin: 50px 0;
  }
}
.works-related__title {
  font-size: 1.5rem;
  text-align: center;
  color: #15722c;
}

.s-works-main {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 572px) {
  .s-works-main {
    margin-top: 60px;
  }
}
.s-works-main .s-works {
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .s-works-main .s-works {
    padding: 50px 0;
  }
}
.s-works-main .s-works__title {
  font-size: 1.75rem;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .s-works-main .s-works__title {
    font-size: 1.5rem;
  }
}
.s-works-main .s-works__date {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.875rem;
  margin-top: 20px;
}
.s-works-main .s-works__thumbnail {
  width: 100%;
  margin-top: 20px;
}
.s-works-main .s-works__thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
}
.s-works-main .s-works__content {
  margin-top: 2.5em;
  line-height: 1.8;
}
.s-works-main .s-works__content h2 {
  font-size: 1.375rem;
  margin-top: 2em;
  line-height: 1.4;
}
.s-works-main .s-works__content h3 {
  font-size: 1.25rem;
  margin-top: 1.5em;
  line-height: 1.4;
}
.s-works-main .s-works__content h4 {
  font-size: 1.125rem;
  margin-top: 1.25em;
  line-height: 1.4;
}
.s-works-main .s-works__content p {
  margin-top: 1em;
}
.s-works-main .s-works__content figure {
  margin-top: 1em;
}
.s-works-main .s-works__content figure img {
  width: 100%;
}
.s-works-main .s-works .back-btn {
  margin: 80px auto 0;
  padding: 1.25em 0;
  display: block;
  width: 350px;
  color: #15722c;
  border: 1px solid #15722c;
  border-radius: 30px;
  transition: 0.3s;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .s-works-main .s-works .back-btn {
    width: 280px;
    padding: 1em 0;
  }
}
.s-works-main .s-works .back-btn:hover {
  background-color: #15722c;
  color: #fff;
}

.works-recent {
  margin: 80px 0;
}
@media screen and (max-width: 572px) {
  .works-recent {
    margin-top: 60px;
  }
}
.works-recent__title {
  font-size: 1.5rem;
  text-align: center;
  color: #15722c;
}
.works-recent__content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.works-recent__content-item {
  display: block;
  transition: 0.3s ease;
  padding: 1em;
  border-radius: 10px;
  background-color: #fff;
}
.works-recent__content-item:hover {
  opacity: 0.7;
}
.works-recent__content-item .item-image {
  width: 100%;
  aspect-ratio: 16/9;
}
.works-recent__content-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.works-recent__content-item .item-meta {
  display: flex;
  align-items: center;
  margin-top: 1em;
  gap: 5px;
}
.works-recent__content-item .item-meta .item-cat {
  display: inline-block;
  background-color: #dcebd7;
  color: #15722c;
  padding: 0.3em 1em;
  border-radius: 20px;
  line-height: 1;
  font-size: 0.875rem;
  font-weight: 800;
}
.works-recent__content-item .item-title {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 0.937rem;
}
/*# sourceMappingURL=style.css.map */