@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #00421e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
body.is-fixed {
  position: fixed;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.l-header__inner {
  padding-inline: 12px;
  height: 80px;
  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 (min-width:1000px) {
  .l-header__inner {
    padding-inline: 2.6041666667vw;
    margin-top: 15px;
  }
}

.l-drawer-content__inner {
  padding-inline: 20px;
}

.l-fv__bg {
  position: relative;
  width: 100%;
  height: 770px;
  overflow: hidden;
  margin: 0 auto;
}
.l-fv__bg::after {
  position: absolute;
  top: 80%;
  left: -90%;
  width: 300%;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, left bottom, from(#42b556));
  background: linear-gradient(#42b556);
  border-radius: 50% 50%/50% 60%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: top 2s ease;
  transition: top 2s ease;
  -webkit-animation: anime linear 12s infinite;
          animation: anime linear 12s infinite;
  content: "";
}
@media screen and (min-width:1000px) {
  .l-fv__bg::after {
    border-radius: 85% 85%/85% 100%;
    top: 85%;
    left: -120%;
    width: 350%;
  }
}
@media screen and (min-width:1000px) {
  .l-fv__bg {
    height: 1050px;
  }
}

@-webkit-keyframes anime {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes anime {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes waveAnime {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateX(25%) translateY(15px) rotate(180deg);
            transform: translateX(25%) translateY(15px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(360deg);
            transform: translateX(0) translateY(0) rotate(360deg);
  }
  @media screen and (min-width:1000px) {
    height: 1056px;
  }
}
@keyframes waveAnime {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0deg);
            transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateX(25%) translateY(15px) rotate(180deg);
            transform: translateX(25%) translateY(15px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(360deg);
            transform: translateX(0) translateY(0) rotate(360deg);
  }
  @media screen and (min-width:1000px) {
    height: 1056px;
  }
}
.l-fv__slide {
  background: url("../img/fv.png") left center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: zoom-out 10s linear forwards;
          animation: zoom-out 10s linear forwards;
}
@media screen and (min-width:1000px) {
  .l-fv__slide {
    background: url("../img/fv-pc.png") left center/cover no-repeat;
  }
}

/* ズームアウトのキーフレーム */
@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 少し拡大からスタート */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 元のサイズまでズームアウト */
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 少し拡大からスタート */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 元のサイズまでズームアウト */
  }
}
.l-service__inner {
  padding-inline: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-service__inner {
    max-width: 78.125vw;
    padding-inline: 0;
    padding-top: 1.5625vw;
  }
}

.l-partner__logo-inner {
  padding-inline: 7px;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1000px) {
  .l-partner__logo-inner {
    max-width: 1000px;
  }
}
@media screen and (min-width:1920px) {
  .l-partner__logo-inner {
    max-width: 1500px;
  }
}

.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  padding-inline: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1000px) {
  .l-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 5vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 20vw;
  }
}
@media screen and (min-width:1920px) {
  .l-footer__inner {
    gap: 306px;
    padding-right: 654px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.l-servicePage__inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-servicePage__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-servicePage__inner {
    max-width: 1200px;
  }
}

.l-reason__inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-reason__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-reason__inner {
    max-width: 1200px;
  }
}

.l-interview__inner {
  padding-inline: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-interview__inner {
    padding-inline: 0;
    max-width: 900px;
  }
}
@media screen and (min-width:1000px) {
  .l-interview__inner {
    max-width: 1400px;
  }
}

.l-treePage__inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-treePage__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-treePage__inner {
    max-width: 1200px;
  }
}

.l-buildingPage__inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-buildingPage__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-buildingPage__inner {
    max-width: 1200px;
  }
}

.l-housingPage__inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-housingPage__inner {
    padding-inline: 0;
    max-width: 90vw;
    margin-bottom: 60px;
  }
}
@media screen and (min-width:1920px) {
  .l-housingPage__inner {
    max-width: 1200px;
  }
}

.l-overview__inner {
  padding-inline: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -55px;
}
@media screen and (min-width:1000px) {
  .l-overview__inner {
    padding-inline: 0;
    max-width: 90vw;
    margin-bottom: 165px;
  }
}
@media screen and (min-width:1920px) {
  .l-overview__inner {
    max-width: 1200px;
  }
}

.l-contact__inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-contact__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-contact__inner {
    max-width: 1200px;
  }
}

.l-faq__inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-faq__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-faq__inner {
    max-width: 1200px;
  }
}

.l-faq__inner-category {
  padding-inline: 10px;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}

.l-faq__inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .l-faq__inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .l-faq__inner {
    max-width: 1200px;
  }
}

.l-faq__inner-category {
  padding-inline: 10px;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}

.c-logo {
  width: 164px;
  z-index: 51;
}
@media screen and (min-width:1000px) {
  .c-logo {
    width: 14.53125vw;
  }
}

.c-nav {
  display: none;
}
@media screen and (min-width:1000px) {
  .c-nav {
    display: block;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-nav__item {
  position: relative;
}
.c-nav__item.--margin {
  padding-right: 3.3854166667vw;
}

.c-nav__link {
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-nav__link:hover {
  color: #8bc782;
}
.c-nav__link.scrolled {
  color: #00421e;
}

.c-nav__button {
  border-radius: 40px;
  border: 1px solid #fff;
  padding: 1.6666666667vw 4.0625vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 13px;
  color: #fff;
  background: #008c3f;
  font-size: 18px;
  font-weight: 700;
}
.c-nav__button img {
  width: 32px;
}

.c-nav__sub-list {
  border-radius: 15px;
  background: #8bc782;
  padding: 25px 15px;
  color: #fff;
  font-size: 15px;
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 10;
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.c-nav__sub-list a {
  display: block;
}

.c-nav__item.is-open > .c-nav__sub-list {
  display: block;
}
.c-nav__item.is-open > .c-nav__sub-list a {
  display: block;
}

.c-nav__sub-item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-nav__sub-item:hover {
  color: #00421e;
}

.c-nav__sub-item + .c-nav__sub-item {
  margin-top: 20px;
}

.c-tel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-tel-box__icon {
  width: 29px;
  height: 29px;
}
@media screen and (min-width:1000px) {
  .c-tel-box__icon {
    width: 42px;
    height: 42px;
  }
}

.c-tel-box__number {
  color: #00421e;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.52px;
}
@media screen and (min-width:1000px) {
  .c-tel-box__number {
    font-size: 49px;
  }
}

.c-cta__button {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  border-radius: 40px;
  border: 1px solid #fff;
  background: #008c3f;
  padding: 31px 70px;
  /* ドロップシャドウ */
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  z-index: 10;
}
.c-cta__button img {
  width: 31px;
  margin-right: 10px;
}
@media screen and (max-width:374px) {
  .c-cta__button {
    padding: 20px 50px;
  }
}
@media screen and (min-width:1000px) {
  .c-cta__button {
    font-size: clamp(16px, 1.8vw, 24px);
    width: 31.25vw;
  }
}

.c-breadclumb {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .c-breadclumb {
    margin-top: 55px;
  }
}
.c-breadclumb .current-item {
  color: #8bc782;
}

.p-drawer-content {
  background: url(../img/drawer-content.png) no-repeat center center/cover;
  width: 100%;
  height: 800px;
  border-radius: 0 0 30px 30px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: auto;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.p-drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 40;
}

.p-drawer-content__menu {
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
}

.p-drawer-content__item-bold {
  font-weight: 700;
}

.p-drawer-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.p-drawer-content__items::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #8bc782;
  top: -20px;
}
.p-drawer-content__items::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #8bc782;
  bottom: -20px;
}

.p-drawer-content__subnav {
  margin-top: 20px;
}

.p-drawer-content__subnav-item + .p-drawer-content__subnav-item {
  margin-top: 20px;
}

.p-fv-cta__tel.--drawer {
  margin-top: 60px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.p-fv-cta-box.--drawer {
  margin-top: 10px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.c-cta__button.--drawer {
  padding-inline: 0;
  max-width: 350px;
  width: 100%;
}

.p-fv-message {
  position: absolute;
  top: 164px;
  z-index: 10;
}
@media screen and (min-width:1000px) {
  .p-fv-message {
    top: 485px;
  }
}

.p-fv-copyright {
  display: none;
}
@media screen and (min-width:1000px) {
  .p-fv-copyright {
    display: block;
    position: absolute;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.84px;
    -webkit-transform: rotate(90deg) translate(450px, 21px);
            transform: rotate(90deg) translate(450px, 21px);
    color: #fff;
  }
}

.p-fv-message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 5.3333333333vw;
  gap: 12px;
}
@media screen and (min-width:1000px) {
  .p-fv-message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 10.9375vw;
    gap: 30px;
  }
}

.p-fv-message__sub {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width:1000px) {
  .p-fv-message__sub {
    font-size: 1.25vw;
    line-height: 1.5;
    letter-spacing: 1.92px;
  }
}

.p-fv-message__history {
  position: relative;
}
.p-fv-message__history::after {
  content: "";
  position: absolute;
  left: 125px;
  top: 42%;
  height: 1px;
  background: #fff;
  width: 0;
  opacity: 0;
}
@media screen and (min-width:1000px) {
  .p-fv-message__history::after {
    left: 120px;
  }
}
.p-fv-message__history::after {
  -webkit-animation: lineGrow 1s ease-out forwards;
          animation: lineGrow 1s ease-out forwards;
}
@-webkit-keyframes lineGrow {
  to {
    width: 100px;
    opacity: 1;
  }
}
@keyframes lineGrow {
  to {
    width: 100px;
    opacity: 1;
  }
}

.p-fv-message__sentence span {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.24px;
}
@media screen and (min-width:1000px) {
  .p-fv-message__sentence span {
    font-size: 1.875vw;
    line-height: 1.5;
    letter-spacing: 2.88px;
  }
}

.p-fv-message__main {
  color: #fff;
  font-size: 49px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Serif JP", sans-serif;
}
.p-fv-message__main span {
  letter-spacing: -23.5px;
}
@media screen and (min-width:1000px) {
  .p-fv-message__main span {
    letter-spacing: -47.5px;
  }
}
@media screen and (max-width:374px) {
  .p-fv-message__main {
    font-size: 42px;
  }
}
@media screen and (min-width:1000px) {
  .p-fv-message__main {
    font-size: 5.2083333333vw;
    line-height: 1.3;
  }
}

.p-fv-cta {
  background: #8bc782;
  position: relative;
  z-index: 4;
  padding-top: 40px;
}
@media screen and (min-width:1000px) {
  .p-fv-cta {
    padding-top: 0px;
    margin-top: -10px;
  }
}
.p-fv-cta::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/152;
  background: url("../img/fv_wave.png") no-repeat center center/cover;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width:1000px) {
  .p-fv-cta::before {
    background: url("../img/fv_wave-pc.png") no-repeat center center/cover;
    aspect-ratio: 1920/152;
  }
}
.p-fv-cta::after {
  content: "";
  position: absolute;
  background: url("../img/fv-cta-tree.png") no-repeat center center/contain;
  width: 511px;
  height: 507px;
  -webkit-transform: translateY(-580px);
          transform: translateY(-580px);
  z-index: 1;
  max-width: 100vw;
}
@media screen and (min-width:1000px) {
  .p-fv-cta::after {
    width: 706px;
    height: 701px;
    -webkit-transform: translateY(-480px);
            transform: translateY(-480px);
  }
}

.p-fv-cta__container {
  position: relative;
  z-index: 3;
  padding-bottom: 70px;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__container {
    padding-bottom: 60px;
  }
}

.p-fv-cta__title {
  color: #00421e;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__title {
    font-size: 36px;
    letter-spacing: 1.44px;
    margin-bottom: 35px;
  }
}
.p-fv-cta__title span {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__title span {
    font-size: 47px;
    letter-spacing: 1.88px;
  }
}

.p-fv-cta__wrapper {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__wrapper {
    max-width: 78.125vw;
  }
}
@media screen and (min-width:1920px) {
  .p-fv-cta__wrapper {
    max-width: 62.5vw;
  }
}

.p-fv-cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  gap: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:1000px) {
  .p-fv-cta-box {
    margin-top: 30px;
    gap: 6.25vw;
  }
}

.p-fv-cta__tel {
  display: block;
  border-radius: 40px;
  background: #fff;
  padding: 20px 40px;
  z-index: 10;
}
@media screen and (max-width:374px) {
  .p-fv-cta__tel {
    padding: 20px 20px;
  }
}
@media screen and (min-width:1000px) {
  .p-fv-cta__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-fv-cta__open {
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__open {
    font-size: 16px;
  }
}

.p-fv-cta__text {
  display: none;
}
@media screen and (min-width:1000px) {
  .p-fv-cta__text {
    display: block;
    color: #00421e;
    font-family: "Noto Sans JP";
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    letter-spacing: 0.96px;
  }
}

.p-message__sp-content {
  position: relative;
}
.p-message__sp-content::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/152;
  background: url("../img/message_wave.png") no-repeat center center/cover;
  z-index: -1;
}
@media screen and (min-width:1000px) {
  .p-message__sp-content {
    display: none;
  }
}

.p-message__sp-inner {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.p-message__sp-title-main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
  padding-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-message__sp-title-main {
    margin-top: 0;
  }
}

.p-message__sp-title-sub {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-message__sp-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-message__sp-image {
  width: 180px;
  margin-top: 28px;
}

.p-message__sp-subtitle {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 30px;
}
@media screen and (max-width:374px) {
  .p-message__sp-subtitle {
    font-size: 20px;
  }
}

.p-message__sp-text {
  color: #00421e;
  line-height: 1.5; /* 150% */
  letter-spacing: 0.32px;
  margin-top: 13px;
}

.p-message__sp-button {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.54px;
  padding: 27px 100px;
  background: #008c3f;
  border-radius: 30px;
  margin-top: 15px;
  display: block;
  max-width: 359px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:374px) {
  .p-message__sp-button {
    padding: 27px 80px;
  }
}

.p-message__pc-content {
  display: none;
  padding-bottom: 37px;
}
@media screen and (min-width:1000px) {
  .p-message__pc-content {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .p-message__pc-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1920/152;
    background: url("../img/message_wave-pc.png") no-repeat center center/cover;
    z-index: -1;
  }
}

.p-message__pc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1000px) {
  .p-message__pc-box {
    max-width: 80vw;
  }
}
@media screen and (min-width:1920px) {
  .p-message__pc-box {
    max-width: 1257px;
  }
}

@media screen and (min-width:1000px) {
  .p-message__pc-image {
    position: relative;
    z-index: 5;
    width: 33.0729166667vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width:1000px) {
  .p-message__pc-texts {
    padding-top: 100px;
  }
}

.p-message__pc-title-main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-message__pc-title-sub {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-message__pc-subtitle {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0.96px;
  margin-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-message__pc-subtitle {
    margin-bottom: 15px;
  }
}

.p-message__pc-text {
  color: #00421e;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.p-message__pc-button {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.54px;
  padding-block: 34px;
  background: #008c3f;
  border-radius: 30px;
  margin-top: 25px;
  display: block;
  max-width: 450px;
}

.p-service {
  margin-top: 72px;
}
@media screen and (min-width:1000px) {
  .p-service {
    margin-top: 0;
  }
}

.p-service__bg {
  background: url("../img/service_wave.png") no-repeat top center/contain;
  width: 100%;
  aspect-ratio: 392/827;
}
@media screen and (min-width:1000px) {
  .p-service__bg {
    background: url("../img/service_wave-pc.png") no-repeat top center/cover;
    aspect-ratio: 1920/827;
  }
}

.p-service__title-main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}
@media screen and (min-width:1000px) {
  .p-service__title-main {
    padding-top: 1.5625vw;
    color: #fff;
  }
}

.p-service__title-sub {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.p-service__title {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.8px;
  margin-top: 40px;
}
@media screen and (min-width:1000px) {
  .p-service__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding-right: 154px;
    font-size: 24px;
    line-height: 1.33;
    letter-spacing: 0.96px;
    margin-top: 0;
  }
}

.p-service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
@media screen and (min-width:1000px) {
  .p-service__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 35px;
  }
}

.p-service__card {
  width: 100%;
  aspect-ratio: 350/338;
  position: relative;
}
.p-service__card:nth-child(1) {
  background: url(../img/service-bg-tree.jpg) no-repeat center center/contain;
}
.p-service__card:nth-child(2) {
  background: url(../img/service-bg-building.jpg) no-repeat center center/contain;
}
.p-service__card:nth-child(3) {
  background: url(../img/service-bg-housing.jpg) no-repeat center center/contain;
}
.p-service__card:nth-child(3) .p-service__card-text {
  -webkit-transform: translate(40px, -80px);
          transform: translate(40px, -80px);
}
@media screen and (min-width:1000px) {
  .p-service__card:nth-child(3) .p-service__card-text {
    -webkit-transform: translate(25px, -97px);
            transform: translate(25px, -97px);
  }
}

.p-service__card-icon {
  position: relative;
  -webkit-transform: translate(15px, 18px);
          transform: translate(15px, 18px);
}
@media screen and (min-width:1000px) {
  .p-service__card-icon {
    -webkit-transform: translate(35px, 35px);
            transform: translate(35px, 35px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-service__card-image {
  width: 120px;
  aspect-ratio: 1/1;
  background: url(../img/service_tree.png) no-repeat center center/contain;
}

.p-service__card-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0.72px;
  position: absolute;
  -webkit-transform: translate(40px, -70px);
          transform: translate(40px, -70px);
}
@media screen and (min-width:1000px) {
  .p-service__card-text {
    font-size: 30px;
    -webkit-transform: translate(25px, -80px);
            transform: translate(25px, -80px);
  }
}

.p-service__card-button {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.05px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: #008c3f;
  padding-block: 15px;
  position: absolute;
  bottom: 20px; /* 下から20px */
  left: 50%;
  width: 222px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:1000px) {
  .p-service__card-button {
    padding-block: 1.5625vw;
    width: 15.625vw;
  }
}

.p-service__button {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.54px;
  border-radius: 30px;
  background: #008c3f;
  display: block;
  padding-block: 27px;
  max-width: 359px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-service__button {
    margin-top: 35px;
    padding-block: 40px;
    max-width: 450px;
  }
}

.p-partner {
  margin-top: 55px;
}
@media screen and (min-width:1000px) {
  .p-partner {
    margin-top: 120px;
  }
}

.p-partner__heading {
  color: rgba(0, 140, 63, 0.3);
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}
@media screen and (min-width:1000px) {
  .p-partner__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.p-partner__sub {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  position: relative;
  top: -65px;
}
@media screen and (min-width:1000px) {
  .p-partner__sub {
    top: 0;
  }
}

.p-partner__title-main {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-partner__title-main {
    line-height: 1.4;
    font-size: 24px;
    letter-spacing: 0.96px;
    margin-top: 35px;
  }
}

.p-partner__title-sub {
  color: #00421e;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.72px;
  margin-top: 15px;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-partner__title-sub {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.p-partner__logo {
  margin-top: 25px;
}
@media screen and (min-width:1000px) {
  .p-partner__logo {
    margin-top: 60px;
  }
}

.p-partner__logo-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:1000px) {
  .p-partner__logo-upper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 78px;
  }
}

.p-partner__upper-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
}
.p-partner__upper-first img {
  height: auto;
}
.p-partner__upper-first img:nth-of-type(1) {
  width: 58.6666666667vw; /* 1個目の幅 */
  max-width: 220px;
}
@media screen and (min-width:1000px) {
  .p-partner__upper-first img:nth-of-type(1) {
    width: 19.53125vw;
    max-width: 375px;
  }
}
.p-partner__upper-first img:nth-of-type(2) {
  width: 35.7333333333vw;
  max-width: 134px;
}
@media screen and (min-width:1000px) {
  .p-partner__upper-first img:nth-of-type(2) {
    width: 10.2083333333vw;
    max-width: 196px;
  }
}
@media screen and (min-width:1000px) {
  .p-partner__upper-first {
    gap: 62px;
  }
}

.p-partner__upper-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-partner__upper-second img {
  height: auto;
}
.p-partner__upper-second img:nth-of-type(1) {
  width: 48.2666666667vw;
  max-width: 181px;
}
@media screen and (min-width:1000px) {
  .p-partner__upper-second img:nth-of-type(1) {
    width: 19.53125vw;
    max-width: 375px;
  }
}
.p-partner__upper-second img:nth-of-type(2) {
  width: 48.2666666667vw;
  max-width: 181px;
}
@media screen and (min-width:1000px) {
  .p-partner__upper-second img:nth-of-type(2) {
    width: 19.53125vw;
    max-width: 375px;
  }
}
@media screen and (min-width:1000px) {
  .p-partner__upper-second {
    gap: 62px;
  }
}

.p-partner__logo-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
@media screen and (min-width:1000px) {
  .p-partner__logo-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 78px;
  }
}

.p-partner__bottom-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 49px;
}
.p-partner__bottom-first img {
  height: auto;
}
.p-partner__bottom-first img:nth-of-type(1) {
  width: 24.5333333333vw; /* 1個目の幅 */
  max-width: 92px;
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-first img:nth-of-type(1) {
    width: 9.2708333333vw;
    max-width: 178px;
  }
}
.p-partner__bottom-first img:nth-of-type(2) {
  width: 24.2666666667vw;
  max-width: 91px;
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-first img:nth-of-type(2) {
    width: 9.2708333333vw;
    max-width: 178px;
  }
}
.p-partner__bottom-first img:nth-of-type(3) {
  width: 25.3333333333vw;
  max-width: 95px;
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-first img:nth-of-type(3) {
    width: 9.6354166667vw;
    max-width: 185px;
  }
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-first {
    gap: 62px;
  }
}

.p-partner__bottom-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.p-partner__bottom-second img {
  height: auto;
}
.p-partner__bottom-second img:nth-of-type(1) {
  width: 34.4vw;
  max-width: 129px;
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-second img:nth-of-type(1) {
    width: 19.53125vw;
    max-width: 375px;
  }
}
.p-partner__bottom-second img:nth-of-type(2) {
  width: 57.3333333333vw;
  max-width: 215px;
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-second img:nth-of-type(2) {
    width: 19.53125vw;
    max-width: 375px;
  }
}
@media screen and (min-width:1000px) {
  .p-partner__bottom-second {
    gap: 62px;
  }
}

.p-contactTop {
  margin-top: 46px;
}

.p-contactTop__bg {
  background: url(../img/contactTop_wave-sp.png) no-repeat bottom center/cover;
  aspect-ratio: 390/700;
  width: 100%;
  position: relative;
  max-height: 1000px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__bg {
    background: url(../img/contactTop_wave-pc.png) no-repeat center center/cover;
    aspect-ratio: 1920/708;
  }
}

.p-contactTop__wrapper {
  padding-inline: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 26.6666666667vw;
}
@media screen and (min-width:1000px) {
  .p-contactTop__wrapper {
    max-width: 1100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 6vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 172px;
  }
}
@media screen and (min-width:1920px) {
  .p-contactTop__wrapper {
    max-width: 1500px;
    padding-top: 170px;
  }
}

.p-contactTop__heading-main {
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-contactTop__heading-sub {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.p-contactTop__lead {
  margin-top: 11.2vw;
}
@media screen and (min-width:1000px) {
  .p-contactTop__lead {
    margin-top: 42px;
  }
}

.p-contactTop__lead-main {
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.84px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__lead-main {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.p-contactTop__lead-sub {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 1.4;
}
@media screen and (min-width:1000px) {
  .p-contactTop__lead-sub {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.p-contactTop__container {
  margin-top: 5.8666666667vw;
  padding-inline: 10px;
  padding-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-contactTop__container {
    margin-top: 65px;
    max-width: 1100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.3333333333vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width:1920px) {
  .p-contactTop__container {
    max-width: 1500px;
  }
}

.p-contactTop__tel {
  color: #fff;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contactTop__tel {
    position: relative;
  }
  .p-contactTop__tel::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 85px;
    background: #fff;
    right: 0;
    top: 0;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

.p-contactTop__label {
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__label {
    font-size: 16px;
  }
}

.p-contactTop__number {
  margin-top: 20px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  font-size: 35px;
  letter-spacing: 3.15px;
  display: block;
}
.p-contactTop__number img {
  padding-right: 13px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__number {
    font-size: 49px;
    letter-spacing: 4.41px;
  }
}

.p-contactTop__time {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: 0.28px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__time {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}

.p-contactTop__mail {
  margin-top: 60px;
}
@media screen and (min-width:1000px) {
  .p-contactTop__mail {
    margin-top: 0;
  }
}

.p-contactTop-text {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contactTop-text {
    font-size: 16px;
  }
}

.p-contactTop-button {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 40px;
  border: 1px solid #fff;
  background: #008c3f;
  display: block;
  padding-block: 32px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  text-align: center;
  margin-top: 10px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.p-contactTop-button img {
  padding-right: 10px;
}
@media screen and (min-width:1000px) {
  .p-contactTop-button {
    max-width: 500px;
    width: 500px !important;
    font-size: 22px;
    letter-spacing: 1.54px;
  }
}

.p-footer {
  padding-top: 178px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1000px) {
  .p-footer {
    padding-top: 100px;
    overflow: visible;
  }
}
.p-footer::before {
  content: "";
  position: absolute;
  background: url("../img/footer-tree.png") no-repeat center center/contain;
  width: 676px;
  aspect-ratio: 676/672;
  right: 0;
  -webkit-transform: translate(282px, -215px);
          transform: translate(282px, -215px);
  z-index: -1;
}
@media screen and (min-width:1000px) {
  .p-footer::before {
    width: 35.2083333333vw;
    top: -60px;
    right: 270px;
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
}
@media screen and (min-width:1000px) {
  .p-footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-footer__nav-item {
  text-align: center;
  color: #00421e;
  font-weight: 700;
  position: relative;
}
.p-footer__nav-item::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: #8bc782;
  -webkit-transform: translate(-3px, -30px);
          transform: translate(-3px, -30px);
}
@media screen and (min-width:1000px) {
  .p-footer__nav-item::before {
    width: 70px;
    -webkit-transform: translate(0px, 30px);
            transform: translate(0px, 30px);
  }
}
.p-footer__nav-item:nth-child(1)::before {
  display: none;
}
@media screen and (min-width:1000px) {
  .p-footer__nav-item {
    text-align: left;
  }
}

.p-footer__subnav-item + .p-footer__subnav-item {
  margin-top: 19px;
}

.p-footer__subnav {
  margin-top: 25px;
}

.p-footer__subnav-item {
  color: #00421e;
  font-size: 15px;
}

.p-footer__logo {
  width: 277px;
  display: block;
}

.p-footer__address {
  margin-top: 9px;
}

.p-footer__tel {
  margin-top: 11px;
  display: block;
}

.p-footer__fax {
  margin-top: 12px;
}

.p-footer__bottom {
  margin-top: 20px;
  padding-inline: 10px;
}
@media screen and (min-width:1000px) {
  .p-footer__bottom {
    margin-top: 77px;
  }
}

.p-footer__bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  padding-bottom: 7px;
}
@media screen and (min-width:1000px) {
  .p-footer__bottom-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 77.8125vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }
}

.p-footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
@media screen and (min-width:1000px) {
  .p-footer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    font-size: 16px;
  }
}

.p-footer__copyright {
  text-align: center;
}

.p-servicePage {
  position: relative;
}

.p-servicePage-top {
  background: url(../img/servicePage_top.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-servicePage-top {
    background: url(../img/servicePage_top-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
  }
}

.p-servicePage-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -225px);
          transform: translate(10px, -225px);
}
@media screen and (min-width:1000px) {
  .p-servicePage-top__title {
    -webkit-transform: translate(210px, -290px);
            transform: translate(210px, -290px);
  }
}

.p-servicePage-top__main {
  font-family: "Urbanist", sans-serif;
  font-size: 50px;
  font-weight: 500;
}
@media screen and (min-width:1000px) {
  .p-servicePage-top__main {
    font-size: 100px;
  }
}

.p-servicePage-top__sub {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width:1000px) {
  .p-servicePage-top__sub {
    font-size: 20px;
  }
}

.p-servicePage__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 93px;
    gap: 140px;
  }
}

.p-servicePage__main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-servicePage__sub {
  color: #00421e;
  font-size: 15px;
  font-weight: 700;
}

.p-servicePage__text {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.8px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__text {
    font-size: 24px;
    line-height: 1.67;
    letter-spacing: 0.96px;
  }
}
.p-servicePage__text span {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: 1.04px;
  position: relative;
}
.p-servicePage__text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #8bc782;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (min-width:1000px) {
  .p-servicePage__text span {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1.2px;
  }
}
.p-servicePage__text span.is-show::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-servicePage__cards {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__cards {
    gap: 15px;
  }
}

.p-servicePage__card {
  border-radius: 30px;
  max-height: 420px;
}
.p-servicePage__card:nth-child(1) {
  background: url(../img/servicePage-tree.png) no-repeat top center/cover;
  aspect-ratio: 370/471;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card:nth-child(1) {
    background: url(../img/servicePage-tree-pc.png) no-repeat top center/cover;
    aspect-ratio: 1200/401;
  }
}
.p-servicePage__card:nth-child(2) {
  background: url(../img/servicePage-building.png) no-repeat top center/cover;
  aspect-ratio: 370/471;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card:nth-child(2) {
    background: url(../img/servicePage-building-pc.png) no-repeat top center/cover;
    aspect-ratio: 1200/401;
  }
}
.p-servicePage__card:nth-child(3) {
  background: url(../img/servicePage-housing.png) no-repeat top center/cover;
  aspect-ratio: 370/471;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card:nth-child(3) {
    background: url(../img/servicePage-housing-pc.png) no-repeat top center/cover;
    aspect-ratio: 1200/401;
  }
}

.p-servicePage__card-title {
  color: #fff;
  padding-left: 11px;
  padding-top: 45px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card-title {
    padding-left: 65px;
    padding-top: 61px;
  }
}

.p-servicePage__card-en {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
}

.p-servicePage__card-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  padding-left: 16px;
  position: relative;
}
.p-servicePage__card-flex::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 11px;
  background: url(../img/servicePage-card-line.png) no-repeat center center/contain;
  bottom: -10px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.p-servicePage__card-flex.is-show::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-servicePage__card-number {
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-servicePage__card-name {
  font-size: 18px;
  font-weight: 700;
}

.p-servicePage__card-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.875vw;
  }
}

.p-servicePage__card-texts {
  color: #fff;
  padding-left: 10px;
  margin-top: 26px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card-texts {
    padding-left: 65px;
    max-width: 490px;
  }
}

.p-servicePage__card-serif {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.p-servicePage__card-text {
  margin-top: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.p-servicePage__card-button {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.54px;
  border-radius: 30px;
  background: #008c3f;
  padding-block: 26px;
  width: 100%;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  margin-top: 28px;
}
@media screen and (min-width:1000px) {
  .p-servicePage__card-button {
    margin-top: 95px;
    padding-block: 35px;
    max-width: 450px;
  }
}

.p-reason {
  background: url(../img/servicePage-reason.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/1986;
  margin-top: 68px;
  max-height: 2900px;
  padding-bottom: 130px;
}
@media screen and (min-width:1000px) {
  .p-reason {
    background: url(../img/servicePage-reason-pc.png) no-repeat top center/cover;
    aspect-ratio: 1940/1892;
    margin-top: 184px;
  }
}

.p-reason__title {
  margin-top: -5px;
}
@media screen and (min-width:1000px) {
  .p-reason__title {
    padding-top: 48px;
  }
}

.p-reason__title-main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}
@media screen and (min-width:1000px) {
  .p-reason__title-main {
    color: rgba(255, 255, 255, 0.3);
  }
}

.p-reason__title-sub {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.p-reason__cards {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width:1000px) {
  .p-reason__cards {
    gap: 59px;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width:1920px) {
  .p-reason__cards {
    max-width: 1180px;
  }
}

@media screen and (min-width:1000px) {
  .p-reason__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .p-reason__card:nth-child(2), .p-reason__card:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width:1000px) {
  .p-reason__card-image {
    aspect-ratio: 580/340;
    width: 30.2083333333vw;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-reason__card-image img {
    width: 100%;
  }
}

@media screen and (min-width:1000px) {
  .p-reason__card-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-reason__card-title {
  color: #008c3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
  position: relative;
}
.p-reason__card-title::after {
  position: absolute;
  content: "";
  width: 253px;
  height: 2px;
  background: url(../img/servicePage-reason-line.png) no-repeat center center/contain;
  bottom: -4px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 3.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 3.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 3.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 3.5s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 3.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width:1000px) {
  .p-reason__card-title::after {
    -webkit-transform: rotate(90deg) scale(0);
            transform: rotate(90deg) scale(0);
  }
}
.p-reason__card-title.is-show::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (min-width:1000px) {
  .p-reason__card-title.is-show::after {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (min-width:1000px) {
  .p-reason__card-title {
    display: block;
  }
}

.p-reason__card-label {
  font-family: "Urbanist", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-reason__card-en {
  letter-spacing: 0.64px;
  width: 55px;
  height: 15px;
  -webkit-transform: rotate(90deg) translateY(20px);
          transform: rotate(90deg) translateY(20px);
}
@media screen and (min-width:1000px) {
  .p-reason__card-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.p-reason__card-number {
  font-size: 60px;
  letter-spacing: 2.4px;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
@media screen and (min-width:1000px) {
  .p-reason__card-number {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
}

.p-reason__card-ja {
  color: #008c3f;
  font-size: 24px;
  font-weight: 700;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
@media screen and (min-width:1000px) {
  .p-reason__card-ja {
    margin-left: 58px;
    margin-top: 10px;
  }
}

.p-reason__card-main {
  color: #00421e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  margin-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-reason__card-main {
    font-size: 24px;
    line-height: 1.37;
    margin-top: 30px;
    margin-left: 30px;
  }
}

.p-reason__card-sub {
  color: #00421e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
  margin-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-reason__card-sub {
    margin-left: 30px;
  }
}
@media screen and (min-width:1920px) {
  .p-reason__card-sub {
    margin-right: 6.25vw;
  }
}

@media screen and (min-width:1000px) {
  .p-interview {
    margin-bottom: 80px;
  }
}

.p-interview__title {
  text-align: center;
}

.p-interview__title-main {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-interview__title-sub {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-interview__text {
  margin-top: 22px;
  color: #00421e;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.p-interview__cards {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width:1000px) {
  .p-interview__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.p-interview__card {
  border-radius: 55px;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media screen and (min-width:1000px) {
  .p-interview__card {
    border-radius: 30px;
    width: 17.7083333333vw;
  }
}

.p-interview__card-image {
  width: 100%;
}

.p-interview__card-content {
  padding-top: 13px;
  padding-inline: 25px;
  height: 230px !important;
}

.p-interview__card-name {
  color: #00421e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 15px;
  position: relative;
}
.p-interview__card-name::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #42b556;
  left: 0;
  bottom: -17px;
}

.p-interview__card-voice {
  color: #00421e;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-top: 30px;
  line-height: 1.35;
}
@media screen and (max-width:374px) {
  .p-interview__card-voice {
    font-size: 19px;
  }
}
@media screen and (min-width:1000px) {
  .p-interview__card-voice {
    font-size: 1.0416666667vw;
  }
}

.p-treePage {
  position: relative;
}

.p-treePage-top {
  background: url(../img/treePage.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-treePage-top {
    background: url(../img/treePage-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
  }
}

.p-treePage-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -298px);
          transform: translate(10px, -298px);
}
@media screen and (min-width:1000px) {
  .p-treePage-top__title {
    -webkit-transform: translate(210px, -16.6666666667vw);
            transform: translate(210px, -16.6666666667vw);
  }
}

.p-treePage-top__sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-treePage-top__sub {
    font-size: 2.2395833333vw;
    line-height: 1;
  }
}

.p-treePage-top__main {
  font-size: 50px;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width:1000px) {
  .p-treePage-top__main {
    font-size: 5.2083333333vw;
    letter-spacing: 4px;
    margin-top: 25px;
  }
}

.p-treePage__feature {
  margin-top: 25px;
}
@media screen and (min-width:1000px) {
  .p-treePage__feature {
    margin-top: 105px;
  }
}

.p-feature__container {
  background: url(../img/treePage-featureTop.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 370/458;
  border-radius: 30px;
  max-height: 480px;
  max-width: 470px;
}
@media screen and (min-width:1000px) {
  .p-feature__container {
    background: url(../img/treePage-featureTop-pc.png) no-repeat top left/cover;
    aspect-ratio: 1200/239;
    max-height: 100%;
    max-width: 100%;
  }
}
.p-feature__title {
  padding-top: 15px;
  padding-left: 7px;
}
@media screen and (min-width:1000px) {
  .p-feature__title {
    padding-top: 4.6vw;
    padding-left: 50px;
  }
}

.p-feature__title-main {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-feature__title-sub {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.p-feature__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: clamp(50px, 13.3333333333vw, 84px);
}
@media screen and (min-width:1000px) {
  .p-feature__items {
    top: -30%;
    max-width: 520px;
    left: 40%;
    gap: 50px;
    padding-top: 0;
  }
}
@media screen and (min-width:1440px) {
  .p-feature__items {
    left: clamp(45%, 3.125vw, 50%);
    max-height: 156px;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width:1920px) {
  .p-feature__items {
    max-width: 520px;
    left: 44%;
    gap: 50px;
    padding-top: 0;
  }
}

.p-feature__item {
  width: 140px;
  aspect-ratio: 1/1;
}
.p-feature__item img {
  width: 100%;
  max-width: 140px;
  display: block;
}
.p-feature__item:nth-child(1) {
  grid-column: 2;
}
@media screen and (min-width:1000px) {
  .p-feature__item:nth-child(1) {
    grid-column: auto;
  }
}
.p-feature__item:nth-child(2) {
  grid-column: 1;
  -webkit-transform: translate(60px, -10px);
          transform: translate(60px, -10px);
}
@media screen and (min-width:1000px) {
  .p-feature__item:nth-child(2) {
    grid-column: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.p-feature__item:nth-child(3) {
  grid-column: 3;
  -webkit-transform: translate(-60px, -10px);
          transform: translate(-60px, -10px);
}
@media screen and (min-width:1000px) {
  .p-feature__item:nth-child(3) {
    grid-column: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.p-feature__texts {
  color: #00421e;
  margin-top: 35px;
}

.p-feature__text-serif {
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-feature__text-serif {
    font-size: 32px;
  }
}

.p-feature__text {
  margin-top: 15px;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-feature__text {
    font-size: 18px;
    line-height: 1.44;
    text-align: center;
  }
}

.p-feature__cards {
  background: url(../img/treePage-feature-bg.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/1986;
  padding-top: 100px;
  margin-bottom: -50px;
  max-height: 2200px;
}
@media screen and (min-width:1000px) {
  .p-feature__cards {
    background: url(../img/treePage-feature-bg-pc.png) no-repeat top center/cover;
    width: 100%;
    aspect-ratio: 1920/1141;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 0px;
  }
}
@media screen and (min-width:1920px) {
  .p-feature__cards {
    padding-bottom: 0;
    margin-bottom: -60px;
  }
}

.p-feature__card-inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-feature__card-inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .p-feature__card-inner {
    max-width: 1200px;
  }
}

.p-feature__card {
  border-radius: 30px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1000px) {
  .p-feature__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-feature__card + .p-feature__card {
  margin-top: 15px;
}

.p-feature__card-image {
  border-radius: 30px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  overflow: hidden;
}
.p-feature__card-image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:1000px) {
  .p-feature__card-image {
    width: 20.1041666667vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-feature__card-content {
  padding-top: 20px;
  padding-inline: 11px;
  padding-bottom: 43px;
}
@media screen and (min-width:1000px) {
  .p-feature__card-content {
    padding-top: 70px;
    padding-inline: 24px;
  }
}

.p-feature__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 26px;
  color: #008c3f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-feature__card-title::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 11px;
  background: url(../img/treePage-line.png) no-repeat center center/contain;
  bottom: -10px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.p-feature__card-title.is-show::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-feature__card-label {
  font-family: "Urbanist", sans-serif;
}

.p-feature__card-en {
  font-size: 20px;
  letter-spacing: 0.8px;
}

.p-feature__card-number {
  font-size: 60px;
  letter-spacing: 2.4px;
  padding-left: 15px;
}

.p-feature__card-ja {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-feature__card-ja {
    font-size: 22px;
  }
}

.p-feature__card-text {
  color: #00421e;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 25px;
}
@media screen and (min-width:1000px) {
  .p-feature__card-text {
    margin-top: 36px;
  }
}

.p-buildingPage {
  position: relative;
}

.p-buildingPage-top {
  background: url(../img/buildingPage.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-buildingPage-top {
    background: url(../img/buildingPage-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
  }
}

.p-buildingPage-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -298px);
          transform: translate(10px, -298px);
}
@media screen and (min-width:1000px) {
  .p-buildingPage-top__title {
    -webkit-transform: translate(210px, -16.6666666667vw);
            transform: translate(210px, -16.6666666667vw);
  }
}

.p-buildingPage-top__sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-buildingPage-top__sub {
    font-size: 2.2395833333vw;
    line-height: 1;
  }
}

.p-buildingPage-top__main {
  font-size: 50px;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width:1000px) {
  .p-buildingPage-top__main {
    font-size: 5.2083333333vw;
    letter-spacing: 4px;
    margin-top: 25px;
  }
}

.p-buildingPage__region {
  margin-top: 25px;
}
@media screen and (min-width:1000px) {
  .p-buildingPage__region {
    margin-top: 105px;
  }
}

.p-region__container {
  background: url(../img/buildingPage-regionTop.png) no-repeat top center/cover;
  width: 100%;
  max-height: 470px;
  aspect-ratio: 370/458;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-region__container {
    background-image: url(../img/buildingPage-regionTop-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 15% top;
    aspect-ratio: 1200/239;
    max-width: 100%;
    height: 239px;
  }
}
@media screen and (min-width:1440px) {
  .p-region__container {
    height: 330px;
  }
}
@media screen and (min-width:1920px) {
  .p-region__container {
    background: url(../img/buildingPage-regionTop-pc.png) no-repeat top left/cover;
    aspect-ratio: 1200/239;
    max-width: 1200px;
    height: 239px;
  }
}

.p-region__title {
  padding-top: 15px;
  padding-left: 7px;
}
@media screen and (min-width:1000px) {
  .p-region__title {
    padding-top: 46px;
    padding-left: 50px;
  }
}

.p-region__title-main {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-region__title-sub {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.p-region__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: min(11.2vw, 70px);
  row-gap: 20px;
  max-width: 355px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:374px) {
  .p-region__items {
    top: 5px;
  }
}
@media screen and (min-width:1000px) {
  .p-region__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    top: -60%;
    right: -15%;
  }
}
@media screen and (min-width:1440px) {
  .p-region__items {
    top: -27%;
    gap: 40px;
  }
}
@media screen and (min-width:1920px) {
  .p-region__items {
    left: 13%;
    max-width: 520px;
    gap: 50px;
    top: -57%;
  }
}

.p-region__item {
  width: 140px;
  aspect-ratio: 1/1;
  justify-self: center;
}
.p-region__item img {
  width: 100%;
  max-width: 140px;
  display: block;
}
@media screen and (min-width:1000px) {
  .p-region__item:nth-child(1) {
    grid-column: auto;
  }
}
@media screen and (min-width:1000px) {
  .p-region__item:nth-child(2) {
    grid-column: auto;
  }
}
@media screen and (min-width:1000px) {
  .p-region__item:nth-child(3) {
    grid-column: auto;
  }
}

.p-region__texts {
  color: #00421e;
  margin-top: 35px;
}

.p-region__text-serif {
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
}
.p-region__text-serif span {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-region__text-serif span {
    font-size: 32px;
  }
}
@media screen and (min-width:1000px) {
  .p-region__text-serif {
    font-size: 32px;
  }
}

.p-region__text {
  margin-top: 15px;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-region__text {
    font-size: 18px;
    line-height: 1.44;
    text-align: center;
  }
}

.p-region__cards {
  background: url(../img/treePage-feature-bg.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/1986;
  padding-top: 75px;
  max-height: 2700px;
}
@media screen and (min-width:1000px) {
  .p-region__cards {
    background: url(../img/treePage-feature-bg-pc.png) no-repeat top center/cover;
    width: 100%;
    aspect-ratio: 1920/1141;
    padding-top: 35px;
    padding-bottom: 40px;
  }
}

.p-region__card-inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-region__card-inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .p-region__card-inner {
    max-width: 1200px;
  }
}

.p-region__card {
  border-radius: 40px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1000px) {
  .p-region__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-region__card + .p-region__card {
  margin-top: 15px;
}

.p-region__card-image {
  border-radius: 40px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  overflow: hidden;
}
.p-region__card-image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:1000px) {
  .p-region__card-image {
    width: 20.1041666667vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-region__card-content {
  padding-top: 20px;
  padding-inline: 11px;
  padding-bottom: 60px;
}
@media screen and (min-width:1000px) {
  .p-region__card-content {
    padding-top: 45px;
    padding-inline: 50px;
  }
}

.p-region__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 26px;
  color: #008c3f;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-region__card-title::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 11px;
  background: url(../img/treePage-line.png) no-repeat center center/contain;
  bottom: -23px;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.p-region__card-title.is-show::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-region__card-en {
  font-family: "Urbanist", sans-serif;
  font-size: 43px;
  letter-spacing: 1.72px;
}

.p-region__card-number {
  font-size: 22px;
  font-weight: 700;
}
.p-region__card-number.--secondary {
  margin-top: 5px;
}
@media screen and (min-width:1000px) {
  .p-region__card-number.--secondary {
    margin-top: 0;
  }
}

.p-region__card-text {
  color: #00421e;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 40px;
}
@media screen and (min-width:1000px) {
  .p-region__card-text {
    margin-top: 46px;
  }
}

.p-housingPage {
  position: relative;
}

.p-housingPage-top {
  background: url(../img/housingPage.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-housingPage-top {
    background: url(../img/housingPage-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
  }
}

.p-housingPage-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -298px);
          transform: translate(10px, -298px);
}
@media screen and (min-width:1000px) {
  .p-housingPage-top__title {
    -webkit-transform: translate(210px, -16.6666666667vw);
            transform: translate(210px, -16.6666666667vw);
  }
}

.p-housingPage-top__sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .p-housingPage-top__sub {
    font-size: 2.2395833333vw;
    line-height: 1;
  }
}

.p-housingPage-top__main {
  font-size: 50px;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width:1000px) {
  .p-housingPage-top__main {
    font-size: 5.2083333333vw;
    letter-spacing: 4px;
    margin-top: 25px;
  }
}

.p-housingPage__contents {
  margin-top: 67px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-housingPage__contents {
    margin-top: 93px;
  }
}

.p-housingPage__serif {
  color: #008c3f;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (min-width:1000px) {
  .p-housingPage__serif {
    font-size: 40px;
    line-height: 1.5;
  }
}

.p-housingPage__title {
  margin-top: 25px;
  color: #008c3f;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (min-width:1000px) {
  .p-housingPage__title {
    font-size: 32px;
    line-height: 60px;
    margin-top: 0;
  }
}

.p-housingPage__text {
  margin-top: 14px;
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: left;
}
@media screen and (min-width:1000px) {
  .p-housingPage__text {
    text-align: center;
  }
}

.p-housingPage__cards {
  background: url(../img/treePage-feature-bg.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/1077;
  padding-top: 75px;
  max-height: 1500px;
}
@media screen and (min-width:1000px) {
  .p-housingPage__cards {
    background: url(../img/treePage-feature-bg-pc.png) no-repeat top center/cover;
    width: 100%;
    aspect-ratio: 1920/1141;
    padding-top: 35px;
    padding-bottom: 150px;
    max-height: 1930px;
  }
}
@media screen and (min-width:1920px) {
  .p-housingPage__cards {
    max-height: 1400px;
  }
}

.p-housingPage__card-inner {
  padding-inline: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-housingPage__card-inner {
    padding-inline: 0;
    max-width: 90vw;
  }
}
@media screen and (min-width:1920px) {
  .p-housingPage__card-inner {
    max-width: 1200px;
  }
}

@media screen and (min-width:1000px) {
  .p-housingPage__card-sp {
    display: none;
  }
}

.p-housingPage__card-sp + .p-housingPage__card-sp {
  margin-top: 25px;
}

.p-housingPage__sp-content {
  background: #8bc782;
  height: 100px;
  padding-top: 40px;
  padding-inline: 12px;
  position: relative;
}
.p-housingPage__sp-content::before {
  content: "";
  position: absolute;
  background: url(../img/housingPage-card-sp-bath.png) no-repeat center center/contain;
  width: 225px;
  height: 60px;
  top: -30px;
  left: 0;
}

.card-bath .p-housingPage__sp-content::before {
  background: url(../img/housingPage-card-sp-bath.png) no-repeat center center/contain;
}

.card-kitchen .p-housingPage__sp-content::before {
  background: url(../img/housingPage-card-sp-kitchen.png) no-repeat center center/contain;
}

.card-sash .p-housingPage__sp-content::before {
  background: url(../img/housingPage-card-sp-sash.png) no-repeat center center/contain;
}

.p-housing__sp-text {
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.p-housingPage__card-pc {
  display: none;
}
@media screen and (min-width:1000px) {
  .p-housingPage__card-pc {
    display: block;
  }
  .p-housingPage__card-pc.--bath {
    -webkit-transform: translate(-130px, -20px);
            transform: translate(-130px, -20px);
  }
  .p-housingPage__card-pc.--kitchen {
    -webkit-transform: translate(60px, 20px);
            transform: translate(60px, 20px);
  }
  .p-housingPage__card-pc.--sash {
    -webkit-transform: translate(0px, 100px);
            transform: translate(0px, 100px);
  }
}

.p-overview {
  position: relative;
}

.p-overview-top {
  background: url(../img/overviewPage-top.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-overview-top {
    background: url(../img/overviewPage-top-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
    position: relative;
  }
  .p-overview-top::after {
    content: "";
    position: absolute;
    background: url(../img/overview_bg.png) no-repeat center center/cover;
    width: 100%;
    height: 660px;
    -webkit-transform: translateY(450px);
            transform: translateY(450px);
    z-index: -1;
  }
}
@media screen and (min-width:1000px) and (min-width:1440px) {
  .p-overview-top::after {
    -webkit-transform: translateY(550px);
            transform: translateY(550px);
  }
}
@media screen and (min-width:1000px) and (min-width:1920px) {
  .p-overview-top::after {
    -webkit-transform: translateY(640px);
            transform: translateY(640px);
  }
}

.p-overview-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -320px);
          transform: translate(10px, -320px);
}
@media screen and (min-width:1000px) {
  .p-overview-top__title {
    -webkit-transform: translate(100px, -150px);
            transform: translate(100px, -150px);
  }
}
@media screen and (min-width:1920px) {
  .p-overview-top__title {
    -webkit-transform: translate(210px, -290px);
            transform: translate(210px, -290px);
  }
}

.p-overview-top__main {
  font-family: "Urbanist", sans-serif;
  font-size: 50px;
  font-weight: 500;
  max-width: 220px;
}
@media screen and (min-width:1000px) {
  .p-overview-top__main {
    font-size: 5.2083333333vw;
    max-width: 863px;
  }
}

.p-overview-top__sub {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width:1000px) {
  .p-overview-top__sub {
    font-size: 20px;
  }
}

.p-overview__message {
  margin-top: 57px;
}
@media screen and (min-width:1000px) {
  .p-overview__message {
    margin-top: 90px;
  }
}

.p-overview__message-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1000px) {
  .p-overview__message-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width:1000px) {
  .p-overview__message-image {
    width: 425px;
    aspect-ratio: 425/500;
  }
}

.p-overview__message-wrapper {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  top: -80px;
}
@media screen and (min-width:1000px) {
  .p-overview__message-wrapper {
    width: 837px;
    top: 0;
    -webkit-transform: translate(-40px, 50px);
            transform: translate(-40px, 50px);
    padding-top: 27px;
    padding-right: 50px;
    padding-left: 39px;
  }
}

.p-overview__message-label {
  padding-left: 17px;
}
@media screen and (min-width:1000px) {
  .p-overview__message-label {
    padding-left: 0;
  }
}

.p-overview__message-en {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-overview__message-ja {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-overview__message-title {
  color: #00421e;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 47px;
  line-height: 1.2;
}
@media screen and (min-width:1000px) {
  .p-overview__message-title {
    font-size: 24px;
    letter-spacing: 0.96px;
    margin-top: 20px;
  }
}

.p-overview__message-text {
  color: #00421e;
  line-height: 1.44;
  letter-spacing: 0.32px;
  margin-top: 15px;
}
@media screen and (min-width:1000px) {
  .p-overview__message-text {
    margin-top: 30px;
  }
}

.p-overview__message-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  color: #00421e;
  margin-top: 27px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-overview__message-career {
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.p-overview__message-name {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 28px;
  line-height: 22px; /* 78.571% */
}

.p-overview__about-container {
  background: #f2f2f2 url(../img/overview-bg-sp.png) center/cover no-repeat;
  width: 100%;
  aspect-ratio: 390/1000;
  padding: 50px 20px;
  max-height: 1600px;
}
@media screen and (min-width:1000px) {
  .p-overview__about-container {
    background: #f2f2f2 url(../img/overview-bg-pc.png) center/cover no-repeat;
    aspect-ratio: 12/5;
    padding-inline: 0;
  }
}

.p-overview__about-wrapper {
  border-radius: 30px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  padding-inline: 30px;
  padding-top: 50px;
  padding-bottom: 34px;
}
@media screen and (min-width:1000px) {
  .p-overview__about-wrapper {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 45px;
    padding-inline: 13.5416666667vw;
    padding-bottom: 55px;
  }
}

.p-overview__about-label {
  padding-left: 17px;
}

.p-overview__about-en {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}

.p-overview__about-ja {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-overview__about-title {
  color: #00421e;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 30px;
  line-height: 1.4;
}
@media screen and (max-width:374px) {
  .p-overview__about-title {
    font-size: 15px;
  }
}
@media screen and (min-width:1000px) {
  .p-overview__about-title {
    font-size: 24px;
    margin-top: 12px;
  }
}

.p-overview__about-title-big {
  color: #00421e;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.04px;
}
@media screen and (max-width:374px) {
  .p-overview__about-title-big {
    font-size: 24px;
  }
}
@media screen and (min-width:1000px) {
  .p-overview__about-title-big {
    font-size: 24px;
    letter-spacing: 0.8px;
  }
}

.p-overview__about-text {
  color: #00421e;
  line-height: 1.44;
  letter-spacing: 0.32px;
  margin-top: 15px;
}
@media screen and (max-width:374px) {
  .p-overview__about-text {
    font-size: 15px;
  }
}
@media screen and (min-width:1000px) {
  .p-overview__about-text {
    margin-top: 25px;
  }
}

.p-overview__about-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-overview__about-images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    margin-top: 35px;
    max-width: 980px;
  }
}

.p-overview__information-container {
  background: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-overview__information-container {
    max-width: 1200px;
    padding-bottom: 54px;
  }
}

.p-overview__information-wrapper {
  padding-inline: 10px;
  padding-top: 50px;
}
@media screen and (min-width:1000px) {
  .p-overview__information-wrapper {
    padding-inline: 0;
    padding-top: 92px;
  }
}

@media screen and (min-width:1000px) {
  .p-overview__information-label {
    margin-left: 100px;
  }
}
@media screen and (min-width:1440px) {
  .p-overview__information-label {
    margin-left: 0;
  }
}

.p-overview__information-en {
  color: rgba(0, 140, 63, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  letter-spacing: 2.4px;
}
@media screen and (max-width:374px) {
  .p-overview__information-en {
    font-size: 50px;
  }
}

.p-overview__information-ja {
  color: #008c3f;
  font-size: 15px;
  font-weight: 700;
}

.p-overview__information-content {
  margin-top: 30px;
}
@media screen and (min-width:1000px) {
  .p-overview__information-content {
    margin-top: 40px;
  }
}

.p-overview__information-item {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 140, 63, 0.3);
  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;
}
.p-overview__information-item:nth-child(1) {
  border-top: 1px solid rgba(0, 140, 63, 0.3);
}
@media screen and (min-width:1000px) {
  .p-overview__information-item:nth-child(1) {
    border-top: 0px solid rgba(0, 140, 63, 0.3);
  }
}
@media screen and (min-width:1000px) {
  .p-overview__information-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1000px;
  }
}

.p-overview__information-title {
  font-weight: 700;
  line-height: 1.38;
}
@media screen and (min-width:1000px) {
  .p-overview__information-title {
    width: 112px;
  }
}

.p-overview__information-text {
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.p-overview__map {
  margin-inline: auto;
  margin-top: 50px;
}
.p-overview__map iframe {
  width: 94.6666666667vw;
  max-width: 680px;
}
@media screen and (max-width:374px) {
  .p-overview__map iframe {
    max-width: 300px;
  }
}
@media screen and (min-width:1000px) {
  .p-overview__map iframe {
    max-width: 900px;
  }
}
@media screen and (min-width:1440px) {
  .p-overview__map iframe {
    max-width: 1000px;
  }
}
@media screen and (min-width:1000px) {
  .p-overview__map {
    max-width: 900px;
  }
}
@media screen and (min-width:1440px) {
  .p-overview__map {
    max-width: 1000px;
  }
}

.p-contact {
  position: relative;
}
@media screen and (min-width:1000px) {
  .p-contact {
    padding-bottom: 60px;
  }
}

.p-contact-top {
  background: url(../img/contactPage-top.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-contact-top {
    background: url(../img/contactPage-top-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
    position: relative;
  }
}

.p-contact-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -220px);
          transform: translate(10px, -220px);
}
@media screen and (min-width:1000px) {
  .p-contact-top__title {
    -webkit-transform: translate(210px, -290px);
            transform: translate(210px, -290px);
  }
}

.p-contact-top__main {
  font-family: "Urbanist", sans-serif;
  font-size: 50px;
  font-weight: 500;
  max-width: 220px;
}
@media screen and (min-width:1000px) {
  .p-contact-top__main {
    font-size: 100px;
    max-width: 863px;
  }
}

.p-contact-top__sub {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width:1000px) {
  .p-contact-top__sub {
    font-size: 20px;
  }
}

.p-contact__contents {
  margin-top: 67px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contact__contents {
    margin-top: 93px;
  }
}

.p-contact__title {
  margin-top: 25px;
  color: #008c3f;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (min-width:1000px) {
  .p-contact__title {
    font-size: 32px;
    margin-top: 0;
    line-height: 1.4;
  }
}

.p-contact__text {
  margin-top: 14px;
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contact__text {
    text-align: center;
  }
}

.p-contact__recept {
  border-radius: 30px;
  background: #8bc782;
  margin-top: 30px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
}
@media screen and (min-width:1000px) {
  .p-contact__recept {
    margin-top: 50px;
  }
}

.p-contact__recept-inner {
  color: #fff;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 43px;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-inner {
    padding-top: 36px;
  }
}

.p-contact__recept-title {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.p-contact__recept-title::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 3px;
  background: #fff;
  bottom: -10px;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-title img {
    width: 73.159px;
    height: 60.844px;
  }
}

.p-contact__recept-ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-ja {
    font-size: 32px;
    line-height: 1.1;
  }
}

.p-contact__recept-text {
  margin-top: 28px;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
  }
}

.p-contact__recept-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
}
.p-contact__recept-tel img {
  width: 29px;
  height: 29px;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-tel img {
    width: 55.416px;
    height: 55.199px;
  }
}
@media screen and (min-width:1000px) {
  .p-contact__recept-tel {
    gap: 21px;
    margin-top: 10px;
  }
}

.p-contact__recept-number {
  font-size: 40px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-number {
    font-size: 80px;
  }
}

.p-contact__recept-time {
  font-size: 14px;
  line-height: 1.57;
}
@media screen and (min-width:1000px) {
  .p-contact__recept-time {
    font-size: 16px;
    line-height: 1.37;
  }
}

.p-contact__formbox {
  border-radius: 30px;
  background: #8bc782;
  margin-top: 30px;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  margin-top: 20px;
  padding-bottom: 50px;
}
@media screen and (min-width:1000px) {
  .p-contact__formbox {
    margin-top: 15px;
  }
}

.p-contact__form-inner {
  color: #fff;
  text-align: center;
  padding-top: 37px;
  padding-bottom: 0px;
  padding-inline: 10px;
}
@media screen and (min-width:1000px) {
  .p-contact__form-inner {
    padding-top: 44px;
  }
}

.p-contact__form-title {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 15px;
}
.p-contact__form-title img {
  width: 31.365px;
  height: 24px;
}
.p-contact__form-title::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 3px;
  background: #fff;
  bottom: -22px;
}

.p-contact__form-ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
}
@media screen and (min-width:1000px) {
  .p-contact__form-ja {
    font-size: 32px;
    line-height: 1.1;
  }
}

.p-contact__form-text {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.22;
}
@media screen and (min-width:1000px) {
  .p-contact__form-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
  }
}

.contact__form {
  margin-top: 40px;
}
@media screen and (min-width:1000px) {
  .contact__form {
    margin-top: 50px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  padding-inline: 10px;
}
@media screen and (min-width:1000px) {
  .contact__fields {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width:1920px) {
  .contact__fields {
    padding-inline: 0;
  }
}

.contact__privacy {
  margin-top: 17px;
  padding-left: 10px;
}
@media screen and (min-width:1000px) {
  .contact__privacy {
    margin-top: 10px;
    text-align: center;
  }
}

.contact__button {
  margin-top: 35px;
  text-align: center;
  display: block;
}
@media screen and (min-width:1000px) {
  .contact__button {
    margin-top: 27px;
  }
}

.contact-button {
  border-radius: 40px;
  background: #008c3f;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border: none;
  max-width: 350px;
  width: 100%;
  padding-block: 32px;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
}
@media screen and (min-width:1000px) {
  .contact-button {
    padding-block: 37px;
    max-width: 450px;
    font-size: 22px;
  }
}
.contact-button:hover {
  color: #008c3f;
  background: #fff;
}

@media screen and (min-width:1000px) {
  .form-field.-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width:1000px) {
  .form-field.-policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 39px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width:1000px) {
  .form-field__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.form-field__label {
  color: #00421e;
  font-weight: 700;
  line-height: 1.37;
}

.form-field__tag {
  color: #f00;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid #f00;
  background: #fff;
  padding: 1px 12px;
}

.form-field__instruction {
  margin-top: 23px;
  margin-bottom: 20px;
}
@media screen and (min-width:1000px) {
  .form-field__instruction {
    margin-top: 0;
  }
}

.form-field__item {
  margin-top: 10px;
}
@media screen and (min-width:1000px) {
  .form-field__item {
    margin-top: 17px;
  }
}

.wpcf7-list-item-label {
  color: #00421e !important;
}

.form-text {
  width: 100%;
  border-radius: 15px;
  background: #fff;
  border: none;
  padding-left: 12px;
  padding-block: 12px;
}
.form-text::-webkit-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
}
.form-text::-moz-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
}
.form-text:-ms-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
}
.form-text::-ms-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
}
.form-text::placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
}
@media screen and (min-width:1000px) {
  .form-text {
    padding-left: 56px;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  padding-left: 28px;
  position: relative;
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio__text::before {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  width: 20px;
  height: 14px;
  left: -1px;
  background: url(../img/check-icon.svg) no-repeat center center/contain;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  border-radius: 15px;
  background: #fff;
  border: none;
  padding-left: 12px;
  padding-top: 15px;
  padding-bottom: 20px;
  line-height: 1.6;
  resize: vertical;
}
.form-textarea[name=policy] {
  padding-right: 23px;
}
.form-textarea::-webkit-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
  line-height: 1.5;
}
.form-textarea::-moz-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
  line-height: 1.5;
}
.form-textarea:-ms-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
  line-height: 1.5;
}
.form-textarea::-ms-input-placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
  line-height: 1.5;
}
.form-textarea::placeholder {
  color: rgba(0, 140, 63, 0.3);
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (min-width:1000px) {
  .form-textarea {
    padding-left: 56px;
    padding-top: 15px;
  }
  .form-textarea[name=policy] {
    padding-left: 23px;
    padding-right: 31px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width:1000px) {
  .form-field__radios {
    gap: 20px;
  }
}
.form-field__radios label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-field-wrapper1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width:1000px) {
  .form-field-wrapper1 {
    gap: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-field-wrapper2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width:1000px) {
  .form-field-wrapper2 {
    gap: 17px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.wpcf7-checkbox input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-acceptance input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.wpcf7-acceptance input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
@media screen and (max-width:374px) {
  .wpcf7-acceptance span {
    font-size: 15px;
  }
}

.wpcf7-list-item-label {
  position: relative;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.32px;
  padding-left: 30px;
  cursor: pointer;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.wpcf7-list-item-label::after {
  width: 20px;
  height: 14px;
  left: -1px;
  background: url(../img/check-icon.svg) no-repeat center center/contain;
  opacity: 0;
}

.custom-width {
  resize: vertical;
}
@media screen and (min-width:1000px) {
  .custom-width {
    width: 500px;
  }
}

.form-textarea.custom-width {
  overflow-y: scroll;
}

.p-contact__thanks-button {
  margin-top: 40px;
}
@media screen and (min-width:1000px) {
  .p-contact__thanks-button {
    margin-top: 50px;
  }
}

.p-contact__thanks-back {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 40px;
  background: #008c3f;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  padding-block: 32px;
  width: 350px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:1000px) {
  .p-contact__thanks-back {
    width: 450px;
    font-size: 22px;
    line-height: 1.54;
    padding-block: 34px;
  }
}

.p-contactthanks__contents {
  margin-top: 67px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contactthanks__contents {
    margin-top: 93px;
  }
}

.p-contactthanks__title {
  margin-top: 25px;
  color: #008c3f;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (min-width:1000px) {
  .p-contactthanks__title {
    font-size: 32px;
    margin-top: 0;
    line-height: 1.4;
  }
}

.p-contactthanks__text {
  margin-top: 32px;
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: center;
}
@media screen and (min-width:1000px) {
  .p-contactthanks__text {
    margin-top: 64px;
    text-align: center;
  }
}

.p-contactthanks {
  position: relative;
}
@media screen and (min-width:1000px) {
  .p-contactthanks {
    padding-bottom: 80px;
  }
}

.p-faq {
  position: relative;
}
@media screen and (min-width:1000px) {
  .p-faq {
    padding-bottom: 60px;
    position: relative;
  }
  .p-faq::before {
    content: "";
    position: absolute;
    aspect-ratio: 1920/2111;
    width: 100vw;
    background: url(../img/faqPage-bg.png) no-repeat center center/cover;
    z-index: -1;
    top: 1500px;
  }
}

.p-faq-top {
  background: url(../img/faqPage-top.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-faq-top {
    background: url(../img/faqPage-top-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
    position: relative;
  }
}

.p-faq-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -220px);
          transform: translate(10px, -220px);
}
@media screen and (min-width:1000px) {
  .p-faq-top__title {
    -webkit-transform: translate(210px, -290px);
            transform: translate(210px, -290px);
  }
}

.p-faq-top__main {
  font-family: "Urbanist", sans-serif;
  font-size: 50px;
  font-weight: 500;
  max-width: 220px;
}
@media screen and (min-width:1000px) {
  .p-faq-top__main {
    font-size: 100px;
    max-width: 863px;
  }
}

.p-faq-top__sub {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width:1000px) {
  .p-faq-top__sub {
    font-size: 20px;
  }
}

.p-faq__contents {
  margin-top: 67px;
}
@media screen and (min-width:1000px) {
  .p-faq__contents {
    margin-top: 93px;
  }
}

.p-faq__title {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:1000px) {
  .p-faq__title {
    font-size: 32px;
    margin-top: 0;
    line-height: 1.4;
  }
}

.p-faq__text {
  margin-top: 18px;
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: center;
}

.p-faq__categories {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width:1000px) {
  .p-faq__categories {
    margin-top: 42px;
  }
}

.p-faq__category {
  color: #008c3f;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 30px;
  border: 1px solid #008c3f;
  background: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:1000px) {
  .p-faq__category {
    font-size: 16px;
    padding: 10px 38px;
  }
}

.p-faq__qa {
  margin-top: 62px;
}
@media screen and (min-width:1000px) {
  .p-faq__qa {
    margin-top: 50px;
  }
}

.p-qa-title {
  color: #008c3f;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-qa-title {
    font-size: 24px;
  }
}

.p-qa-boxes {
  margin-top: 27px;
}
@media screen and (min-width:1000px) {
  .p-qa-boxes {
    margin-top: 25px;
  }
}

.p-qa__box {
  border-radius: 30px;
  background: #8bc782;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  padding-inline: 15px;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 27px;
}
@media screen and (min-width:1000px) {
  .p-qa__box {
    padding: 60px 100px 60px;
  }
}

.p-qa__box + .p-qa__box {
  margin-top: 10px;
}
@media screen and (min-width:1000px) {
  .p-qa__box + .p-qa__box {
    margin-top: 15px;
  }
}

.p-qa__head {
  position: relative;
}
.p-qa__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: -16px;
}
@media screen and (min-width:1000px) {
  .p-qa__head::after {
    bottom: -19px;
  }
}

.p-qa__head-text {
  line-height: 1.37;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-qa__head-text {
    font-size: 20px;
    line-height: 1.1;
  }
}

.p-qa__body {
  margin-top: 34px;
}
@media screen and (min-width:1000px) {
  .p-qa__body {
    margin-top: 38px;
  }
}

.p-qa__body-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width:1000px) {
  .p-qa__body-a {
    gap: 19px;
  }
}

.p-qa__body-icon {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.p-qa___body-text {
  line-height: 1.47;
}
@media screen and (min-width:1000px) {
  .p-qa___body-text {
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}

.p-qa-padding {
  margin-top: 20px;
}

.p-faq {
  position: relative;
}
@media screen and (min-width:1000px) {
  .p-faq {
    padding-bottom: 60px;
    position: relative;
  }
  .p-faq::before {
    content: "";
    position: absolute;
    aspect-ratio: 1920/2111;
    width: 100vw;
    background: url(../img/faqPage-bg.png) no-repeat center center/cover;
    z-index: -1;
    top: 1500px;
  }
}

.p-faq-top {
  background: url(../img/faqPage-top.png) no-repeat top center/cover;
  width: 100%;
  aspect-ratio: 390/600;
}
@media screen and (min-width:1000px) {
  .p-faq-top {
    background: url(../img/faqPage-top-pc.png) no-repeat top center/cover;
    aspect-ratio: 1920/600;
    position: relative;
  }
}

.p-faq-top__title {
  color: #fff;
  position: absolute;
  -webkit-transform: translate(10px, -220px);
          transform: translate(10px, -220px);
}
@media screen and (min-width:1000px) {
  .p-faq-top__title {
    -webkit-transform: translate(210px, -290px);
            transform: translate(210px, -290px);
  }
}

.p-faq-top__main {
  font-family: "Urbanist", sans-serif;
  font-size: 50px;
  font-weight: 500;
  max-width: 220px;
}
@media screen and (min-width:1000px) {
  .p-faq-top__main {
    font-size: 100px;
    max-width: 863px;
  }
}

.p-faq-top__sub {
  font-weight: 700;
  letter-spacing: 0.64px;
}
@media screen and (min-width:1000px) {
  .p-faq-top__sub {
    font-size: 20px;
  }
}

.p-faq__contents {
  margin-top: 67px;
}
@media screen and (min-width:1000px) {
  .p-faq__contents {
    margin-top: 93px;
  }
}

.p-faq__title {
  color: #00421e;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:1000px) {
  .p-faq__title {
    font-size: 32px;
    margin-top: 0;
    line-height: 1.4;
  }
}

.p-faq__text {
  margin-top: 18px;
  color: #00421e;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: center;
}

.p-faq__categories {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width:1000px) {
  .p-faq__categories {
    margin-top: 42px;
  }
}

.p-faq__category {
  color: #008c3f;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 30px;
  border: 1px solid #008c3f;
  background: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:1000px) {
  .p-faq__category {
    font-size: 16px;
    padding: 10px 38px;
  }
}

.p-faq__qa {
  margin-top: 62px;
}
@media screen and (min-width:1000px) {
  .p-faq__qa {
    margin-top: 50px;
  }
}

.p-qa-title {
  color: #008c3f;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-qa-title {
    font-size: 24px;
  }
}

.p-qa-boxes {
  margin-top: 27px;
}
@media screen and (min-width:1000px) {
  .p-qa-boxes {
    margin-top: 25px;
  }
}

.p-qa__box {
  border-radius: 30px;
  background: #8bc782;
  -webkit-box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
          box-shadow: 1px 4px 14.2px 0 rgba(0, 66, 30, 0.3);
  padding-inline: 15px;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 27px;
}
@media screen and (min-width:1000px) {
  .p-qa__box {
    padding: 60px 100px 60px;
  }
}

.p-qa__box + .p-qa__box {
  margin-top: 10px;
}
@media screen and (min-width:1000px) {
  .p-qa__box + .p-qa__box {
    margin-top: 15px;
  }
}

.p-qa__head {
  position: relative;
}
.p-qa__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: -16px;
}
@media screen and (min-width:1000px) {
  .p-qa__head::after {
    bottom: -19px;
  }
}

.p-qa__head-text {
  line-height: 1.37;
  font-weight: 700;
}
@media screen and (min-width:1000px) {
  .p-qa__head-text {
    font-size: 20px;
    line-height: 1.1;
  }
}

.p-qa__body {
  margin-top: 34px;
}
@media screen and (min-width:1000px) {
  .p-qa__body {
    margin-top: 38px;
  }
}

.p-qa__body-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width:1000px) {
  .p-qa__body-a {
    gap: 19px;
  }
}

.p-qa__body-icon {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.p-qa___body-text {
  line-height: 1.47;
}
@media screen and (min-width:1000px) {
  .p-qa___body-text {
    line-height: 1.5;
    letter-spacing: 0.32px;
  }
}

.p-qa-padding {
  margin-top: 20px;
}

.u-drawer-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #008c3f;
  border-radius: 50%;
  position: relative;
  z-index: 51;
}
.u-drawer-icon.is-checked .u-drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 23px;
  left: 10px;
}
.u-drawer-icon.is-checked .u-drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.u-drawer-icon.is-checked .u-drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 23px;
  left: 10px;
}
@media screen and (min-width:1000px) {
  .u-drawer-icon {
    display: none;
  }
}

.u-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background: #008c3f;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s linear;
  transition: top 0.3s, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s;
  transition: transform 0.3s linear, top 0.3s, -webkit-transform 0.3s linear;
}
.u-drawer-icon__bar:nth-of-type(1) {
  top: 14px;
}
.u-drawer-icon__bar:nth-of-type(2) {
  top: 22px;
}
.u-drawer-icon__bar:nth-of-type(3) {
  top: 30px;
}

@media screen and (min-width:1000px) {
  .u-hidden-md {
    display: none;
  }
}

.u-visible-md {
  display: none;
}
@media screen and (min-width:1000px) {
  .u-visible-md {
    display: block;
  }
}

.u-slide-in-left {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  -webkit-animation: slideLeft 0.6s ease-out forwards;
          animation: slideLeft 0.6s ease-out forwards;
}

@-webkit-keyframes slideLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.u-fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-in-view {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.js-in-view.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}