@charset "UTF-8";
.header {
  width: 100%;
  height: 100px;
  padding-block: 20px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: #ffffff;
}
@media screen and (max-width: 900px) {
  .header {
    height: 60px;
    padding-block: 10px;
  }
}

.header__inner {
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .header__inner {
    padding-inline: 10px;
  }
}

.header__logo {
  width: 310px;
}
@media screen and (max-width: 900px) {
  .header__logo {
    width: 210px;
  }
}
.header__logo a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.header__nav-list li a {
  line-height: 1.75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-list li a:hover {
  color: #245c29;
}
.button {
  display: inline-block;
  color: #ffffff;
  padding: 13px 33px;
  border: 1px solid #245c29;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}
.button.is-type2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  border-radius: 8px;
  background-color: #245c29;
}
.button.is-type2:hover {
  background-color: #ffffff;
  color: #245c29;
}
.button.is-type3 {
  color: #ffffff;
  line-height: 1.75;
  position: relative;
  width: 280px;
  padding: 15px 20px;
}
@media screen and (max-width: 600px) {
  .button.is-type3 {
    padding: 11.75px 20px;
  }
}
.button.is-type3::before {
  content: "";
  display: block;
  background: url("../img/icon/tryangle-white.png") no-repeat center center/contain;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__btn-link.profile,
.service__btn-link.profile,
.drawer-content__button-link.profile {
  display: none;
}

.logged-in .header__btn-link, .logged-in .service__btn-link, .logged-in .drawer-content__button-link {
  display: none;
}

.logged-in .header__btn-link.profile, .logged-in .service__btn-link.profile, .logged-in .drawer-content__button-link.profile {
  display: block;
  margin-inline: auto;
}

.drawer {
  width: 60px;
  height: 60px;
  background-color: #245c29;
  z-index: 51;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media screen and (max-width: 900px) {
  .drawer {
    display: grid;
    place-items: center;
  }
}

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

.drawer-icon {
  width: 34px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 4px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  border-radius: 100vw;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  background: #c8d6c9;
  z-index: 50;
  padding: 40px 30px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  display: none;
}
@media screen and (max-width: 900px) {
  .drawer-content {
    display: block;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__item,
.drawer-content__menu > ul > li {
  border-top: 1px solid #245c29;
}
.drawer-content__item:last-child,
.drawer-content__menu > ul > li:last-child {
  border-bottom: 1px solid #245c29;
}
.drawer-content__item.has-child > .drawer-content__link,
.drawer-content__item.has-child > a, .drawer-content__item.menu-item-has-children > .drawer-content__link,
.drawer-content__item.menu-item-has-children > a,
.drawer-content__menu > ul > li.has-child > .drawer-content__link,
.drawer-content__menu > ul > li.has-child > a,
.drawer-content__menu > ul > li.menu-item-has-children > .drawer-content__link,
.drawer-content__menu > ul > li.menu-item-has-children > a {
  position: relative;
}
.drawer-content__item.has-child > .drawer-content__link::before,
.drawer-content__item.has-child > a::before, .drawer-content__item.menu-item-has-children > .drawer-content__link::before,
.drawer-content__item.menu-item-has-children > a::before,
.drawer-content__menu > ul > li.has-child > .drawer-content__link::before,
.drawer-content__menu > ul > li.has-child > a::before,
.drawer-content__menu > ul > li.menu-item-has-children > .drawer-content__link::before,
.drawer-content__menu > ul > li.menu-item-has-children > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 6px;
  background: url("../img/icon/tryangle-green.png") no-repeat center center/contain;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.drawer-content__item.has-child.active > .drawer-content__link::before,
.drawer-content__item.has-child.active > a::before, .drawer-content__item.menu-item-has-children.active > .drawer-content__link::before,
.drawer-content__item.menu-item-has-children.active > a::before,
.drawer-content__menu > ul > li.has-child.active > .drawer-content__link::before,
.drawer-content__menu > ul > li.has-child.active > a::before,
.drawer-content__menu > ul > li.menu-item-has-children.active > .drawer-content__link::before,
.drawer-content__menu > ul > li.menu-item-has-children.active > a::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.drawer-content__item.has-child:hover .drawer-content__child,
.drawer-content__item.has-child:hover .sub-menu, .drawer-content__item.menu-item-has-children:hover .drawer-content__child,
.drawer-content__item.menu-item-has-children:hover .sub-menu,
.drawer-content__menu > ul > li.has-child:hover .drawer-content__child,
.drawer-content__menu > ul > li.has-child:hover .sub-menu,
.drawer-content__menu > ul > li.menu-item-has-children:hover .drawer-content__child,
.drawer-content__menu > ul > li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.drawer-content__menu > ul > li > a,
.drawer-content__link {
  display: block;
  padding: 17px 10px;
  line-height: 1.75;
}

.drawer-content__child,
.sub-menu {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  visibility: visible; /*JSで制御するため一旦表示状態は維持*/
  opacity: 1; /*同上*/
  display: none; /* 初期は非表示 */
  max-height: 0; /* 初期は高さ0 */
  overflow: hidden; /* はみ出しを隠す */
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease; /* スライドトグル用のトランジション */
}

.drawer-content__child-item,
.menu-item-object-custom a {
  border-top: 1px solid #91ad94;
  padding: 17px 30px;
  display: block;
}

.drawer-content__button {
  margin-top: 40px;
  text-align: center;
}
.drawer-content__button .button, .drawer-content__button .wpmem-login-link {
  width: 100%;
}

.section {
  padding-block: 70px;
}
@media screen and (max-width: 768px) {
  .section {
    padding-block: 45px;
  }
}

.bg-heading {
  color: #dee7df;
  font-family: "Times", "Times New Roman", serif;
  font-size: 130px;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .bg-heading {
    font-size: 110px;
  }
}
@media screen and (max-width: 600px) {
  .bg-heading {
    font-size: 75px;
    text-align: center;
    margin-bottom: 12px;
  }
}

.heading {
  color: #245c29;
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 30px;
  line-height: 2.5666666667;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 24px;
    line-height: 1.6;
  }
}

.text-lg {
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 24px;
  line-height: 3.2083333333;
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .text-lg {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

.text-box {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .text-box {
    margin-bottom: 35px;
  }
}

.text-box-p + .text-box-p {
  margin-top: 30px;
}

.google-map {
  aspect-ratio: 5/2;
}
@media screen and (max-width: 768px) {
  .google-map {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 600px) {
  .google-map {
    aspect-ratio: 1/1;
  }
}
.google-map iframe {
  width: 100%;
  height: 100%;
}

.map-btn.is-type3 {
  color: #333;
  border-color: #333;
}
.map-btn.is-type3:hover {
  background-color: #333;
  color: #ffffff;
}
.map-btn.is-type3:hover::before {
  background: url("../img/icon/tryangle-white.png") no-repeat center center/contain;
}
.map-btn.is-type3::before {
  background: url("../img/icon/tryangle-black.png") no-repeat center center/contain;
}

.cv {
  padding-block: 55px 60px;
  background: url("../img/cv-img.jpg") no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cv {
    padding-block: 40px 45px;
  }
}
.cv::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 92, 41, 0.7);
  top: 0;
  left: 0;
}

.cv__inner {
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 840px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  .cv__inner {
    max-width: 375px;
    margin-inline: auto;
  }
}

.cv__title {
  color: #ffffff;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 600px) {
  .cv__title {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.text-box-p {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 600px) {
  .text-box-p {
    font-size: 14px;
    line-height: 1.75;
  }
}

.cv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .cv__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  .cv__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    margin-top: 18px;
  }
}
@media screen and (max-width: 600px) {
  .cv__content {
    width: 100%;
    margin-top: 28px;
  }
}

.cv__tell {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 900px) {
  .cv__tell {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-right: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 26px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cv__tell {
    width: 100%;
    padding-inline: 17.5px;
  }
}

.cv__tell-top {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 2px;
}
@media screen and (max-width: 600px) {
  .cv__tell-top {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.5;
  }
}

.cv__tell-middle {
  font-size: 35px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
@media screen and (max-width: 600px) {
  .cv__tell-middle {
    font-size: 24px;
    line-height: 1.2;
    gap: 7px;
  }
}
.cv__tell-middle::before {
  content: "";
  display: block;
  width: 21.8942px;
  height: 28.6575px;
  background: url("../img/icon/icon-tel.png") no-repeat center center/contain;
}
@media screen and (max-width: 600px) {
  .cv__tell-middle::before {
    width: 15px;
    height: 19px;
  }
}

@media screen and (max-width: 600px) {
  .cv__tell-bottom {
    margin-bottom: 1px;
  }
}

.cv__tell-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  .cv__tell-btn {
    display: block;
  }
}

.cv__tell-btn-link.is-type3 {
  border-color: #fff;
}
@media screen and (max-width: 900px) {
  .cv__tell-btn-link.is-type3 {
    width: 100%;
    margin-top: 4px;
  }
}
@media screen and (max-width: 600px) {
  .cv__tell-btn-link.is-type3 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

.cv__mail {
  -ms-flex-preferred-size: calc(50% - 1px);
      flex-basis: calc(50% - 1px);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 900px) {
  .cv__mail {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cv__mail {
    padding-inline: 17.5px;
  }
}

.cv__btn {
  width: 100%;
  text-align: right;
}

.cv__btn-link {
  border-color: #ffffff;
}
.cv__btn-link.is-type3 {
  width: 75.1879699248%;
}
@media screen and (max-width: 900px) {
  .cv__btn-link.is-type3 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .cv__btn-link.is-type3 {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.cv__btn-link.is-type3:hover {
  background-color: #ffffff;
  color: #245c29;
}
.cv__btn-link.is-type3:hover::before {
  background: url("../img/icon/tryangle-green-main.png") no-repeat center center/contain;
}

.footer {
  padding-block: 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 600px) {
  .footer {
    padding-block: 40px 10px;
  }
}

.footer__inner {
  max-width: 1040px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
}
@media screen and (max-width: 900px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
}

.footer__head {
  width: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .footer__head {
    width: auto;
  }
}

.footer__logo {
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    margin-inline: auto;
  }
}
@media screen and (max-width: 600px) {
  .footer__logo {
    width: 238px;
  }
}

.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 900px) {
  .footer__address {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .footer__address {
    gap: 0px;
  }
}

.footer__logo-link {
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__logo-link:hover {
  opacity: 0.7;
}

.footer__body {
  width: 62%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .footer__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer__body {
    width: 100%;
  }
}

.footer__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.4776119403%;
}
@media screen and (max-width: 900px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav li a {
  font-size: 14px;
  line-height: 1.75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__nav li a:hover {
  color: #245c29;
}

.footer__copyright-text {
  text-align: right;
  font-size: 12px;
  line-height: 1.75;
}
@media screen and (max-width: 900px) {
  .footer__copyright-text {
    text-align: center;
  }
}

.column-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .column-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.red-line {
  font-weight: inherit;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(88%, transparent), color-stop(0%, #d43b6d));
  background: linear-gradient(transparent 88%, #d43b6d 0%);
  display: inline;
  padding: 0 1px 7px;
}

.check-list {
  background-color: #ffffff;
  width: 86%;
  margin-inline: auto;
  border: 1px solid #e2e2e2;
  padding: 27px 42px 30px 50px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 67px;
}
@media screen and (max-width: 900px) {
  .check-list {
    gap: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .check-list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
    gap: 20px;
  }
}
.check-list::before {
  content: "";
  display: block;
  width: 74px;
  height: 37px;
  background: url("../img/icon/tryangle-white-main.png") no-repeat center center/contain;
  position: absolute;
  bottom: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.check-list-item {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9444444444;
  padding-left: 38.3492px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .check-list-item {
    padding-left: 30.3492px;
  }
}
@media screen and (max-width: 600px) {
  .check-list-item {
    font-size: 16px;
    padding-left: 32.3492px;
    line-height: 1.6;
  }
}
.check-list-item::before {
  content: "";
  display: block;
  width: 22.3492px;
  height: 24.8184px;
  background: url("../img/icon/icon-check.png") no-repeat center center/contain;
  margin-right: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .check-list-item::before {
    top: 1px;
  }
}

/*------------------------------------------------------------
  下層ページのみ 共通パーツ
------------------------------------------------------------*/
.page .section {
  padding-block: 75px 60px;
}
@media screen and (max-width: 600px) {
  .page .section {
    padding-block: 45px;
  }
}
.page .page-content-text {
  margin-top: 33px;
}
@media screen and (max-width: 600px) {
  .page .page-content-text {
    margin-top: 14px;
  }
}
.page .page-content-text:first-child {
  margin-top: 0;
}
.page .check-list {
  margin-top: 33px;
  margin-bottom: 66px;
}
@media screen and (max-width: 600px) {
  .page .check-list {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.page .column-image {
  margin-top: 33px;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .page .column-image {
    margin-top: 14px;
  }
}
.page .page-list {
  margin-top: 33px;
  margin-left: 2em;
  list-style: disc;
}
@media screen and (max-width: 600px) {
  .page .page-list {
    margin-top: 14px;
  }
}