@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edge/Safariなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::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;
  list-style-type: none;
}

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

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

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;
}

:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-beige: #eae8e1;
  --light-orange: #eabf80;
  --orange: #d9ac6b;
  --sheer-orange: #f1e8d9;
  --light-green: #d9e2dd;
  --green: #5a8f82;
  --charcoal: #3c3c3c;
  --gradation: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
  --spacing-4: 4px;
  --spacing-6: 6px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-56: 56px;
  --spacing-64: 64px;
  --spacing-80: 80px;
  --header-h: 0px;
  --breadcrumb-h: 0px;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: inherit;
  padding: 0 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 632px;
    padding: 0 16px;
  }
}

.l-inner__narrow {
  width: min(1040px, 100%);
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 16px;
    max-width: 100%;
  }
}

.l-footer {
  padding-block: 80px;
}
@media (max-width: 900px) {
  .l-footer {
    padding-block: 56px;
  }
}

.l-section--lg {
  padding-block: 160px;
}
@media screen and (max-width: 767px) {
  .l-section--lg {
    padding-block: 100px;
  }
}

.l-section--sm {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .l-section--sm {
    padding-block: 80px;
  }
}

.p-animation.l-section--sm {
  padding-bottom: 240px;
}

.l-bg--archive-work-main {
  position: relative;
}
.l-bg--archive-work-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: "../img/woodgrain-bg.webp" center/contain repeat;
  z-index: 3;
}

.l-bg--about-fv {
  background: #f1e8d9;
}

.l-bg--contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
}

.l-bg--thanks {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
}

.l-bg--404 {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
}

.l-bg--archive-work-fv {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
  overflow: hidden;
}

.l-bg-archive-work-main {
  background: url(../img/bg-woodgrain.webp) repeat center center/contain;
}

.l-bg__frontpage-bottom {
  background: var(--off-white, #f8f7f4);
}

.l-hero-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
  overflow: hidden;
}

.c-btn {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: visible;
  border-radius: var(--Radius-Full, 999px);
  padding: 24px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #3c3c3c;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.28px;
}
.c-btn::before, .c-btn::after {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  will-change: transform, opacity, filter;
}
.c-btn::before {
  right: -57.023px;
  bottom: 30px;
  width: 133.023px;
  height: 127.426px;
  background-image: url("../img/hover-steam1.svg");
  -webkit-filter: blur(0.2px);
          filter: blur(0.2px);
}
.c-btn::after {
  left: -30px;
  bottom: -34px;
  width: 93.334px;
  height: 86px;
  background-image: url("../img/hover-steam2.svg");
}
@media (any-hover: hover) {
  .c-btn:hover::before, .c-btn:focus-visible::before {
    -webkit-animation: steamPuff 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
            animation: steamPuff 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
  }
  .c-btn:hover::after, .c-btn:focus-visible::after {
    -webkit-animation: steamPuff 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
            animation: steamPuff 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
  }
}
.c-btn.--header {
  padding: 12px 41px;
}
@media screen and (max-width: 767px) {
  .c-btn.--header {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-btn.--drawer {
  padding: 24px 40px;
  width: 100%;
  max-width: 343px;
}
.c-btn.--orange {
  background: #eabf80;
  -webkit-box-shadow: 0 0 20px 0 #d39c4d inset;
          box-shadow: 0 0 20px 0 #d39c4d inset;
}
@media (any-hover: hover) {
  .c-btn.--orange:hover {
    color: var(--orange, #d9ac6b);
    border-radius: var(--Radius-Full, 999px);
    background: rgba(234, 191, 128, 0.4);
    -webkit-box-shadow: 0 0 20px 0 #d39c4d inset;
            box-shadow: 0 0 20px 0 #d39c4d inset;
    border: 1px solid var(--orange, #d9ac6b);
  }
}
.c-btn.--green {
  border-radius: 999px;
  background: #d9e2dd;
  -webkit-box-shadow: 0 0 20px 0 #5a8f82 inset;
          box-shadow: 0 0 20px 0 #5a8f82 inset;
  border: 1px solid var(--charcoal, #3c3c3c);
}
@media (any-hover: hover) {
  .c-btn.--green:hover {
    color: var(--green, #5a8f82);
    background: rgba(217, 226, 221, 0.4);
    -webkit-box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
            box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
    border: 1px solid var(--green, #5a8f82);
  }
}
.c-btn.--drawer {
  width: 100%;
}
.c-btn.--cta {
  text-align: center;
  border: 1px solid #3c3c3c;
  border-radius: var(--Radius-Full, 999px);
  background: var(--white, #fff);
  -webkit-box-shadow: 0 0 20px 0 var(--gray-beige, #eae8e1) inset;
          box-shadow: 0 0 20px 0 var(--gray-beige, #eae8e1) inset;
}
.c-btn.--contact {
  max-width: 235px;
}
@media screen and (max-width: 767px) {
  .c-btn.--contact {
    width: 100%;
    max-width: 100%;
  }
}

@-webkit-keyframes steamPuff {
  0% {
    opacity: 0;
    -webkit-transform: translateY(28px) scale(0.9);
            transform: translateY(28px) scale(0.9);
  }
  25% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-60px) scale(1.2);
            transform: translateY(-60px) scale(1.2);
  }
}

@keyframes steamPuff {
  0% {
    opacity: 0;
    -webkit-transform: translateY(28px) scale(0.9);
            transform: translateY(28px) scale(0.9);
  }
  25% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-60px) scale(1.2);
            transform: translateY(-60px) scale(1.2);
  }
}
.c-animated__fadeIn-title {
  position: relative;
  overflow: visible;
}
.c-animated__fadeIn-title .c-section-title__en,
.c-animated__fadeIn-title .c-section-title__ja {
  opacity: 0;
}
.c-animated__fadeIn-title .c-decoration-steam {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.c-animated__fadeIn-title .c-decoration-steam.is-left {
  width: 160px;
  aspect-ratio: 130/120;
  bottom: -25px;
  left: -40px;
  background: url(../img/img_steam2.svg) no-repeat center center/contain;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}
.c-animated__fadeIn-title .c-decoration-steam.is-right {
  width: 210px;
  aspect-ratio: 180/172;
  top: 10px;
  right: -60px;
  background: url(../img/img_steam1.svg) no-repeat center center/contain;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.c-section-head {
  text-align: center;
  -webkit-margin-after: 72px;
          margin-block-end: 72px;
}
@media screen and (max-width: 767px) {
  .c-section-head {
    -webkit-margin-after: 56px;
            margin-block-end: 56px;
  }
}

.c-section-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.c-section-title__en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #5a8f82;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.88px;
  -webkit-padding-after: 6px;
          padding-block-end: 6px;
  position: relative;
}
.c-section-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: url(../img/line1.svg) repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 18px;
    letter-spacing: 2.16px;
  }
}

.c-section-title__ja {
  display: block;
  color: #3c3c3c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 3.2px;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 28px;
    letter-spacing: 1.68px;
  }
}
@media (max-width: 370px) {
  .c-section-title__ja {
    text-wrap: wrap;
  }
}

.c-section-lead {
  color: #3c3c3c;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.08px;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
@media screen and (max-width: 767px) {
  .c-section-lead {
    font-size: 16px;
    letter-spacing: 0.96px;
  }
}

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: min(1312px, 100%);
  padding-block: 16px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 8px;
  }
}
.c-breadcrumb li {
  color: var(--green, #5a8f82);
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}
.c-breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5em;
  color: #3c3c3c;
}
.c-breadcrumb li.current-item {
  color: #3c3c3c;
}

.c-breadcrumb__home {
  display: inline-block;
  width: 20px;
  height: 17px;
  /* 文字は見えなくする（読み上げ用には残る） */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* 家アイコン（SVG） */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 3l9 8h-3v10h-5v-6H11v6H6V11H3l9-8z'/%3E%3C/svg%3E") no-repeat center/contain;
  /* 色はここで変えられる（currentColor） */
  color: var(--green, #5a8f82);
}

.c-page-title {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.c-page-title__main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-page-title__main {
    gap: 12px;
  }
}
.c-page-title__main svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  width: 28.05px;
  height: 19.67px;
}
@media screen and (max-width: 767px) {
  .c-page-title__main svg {
    width: 20px;
    height: 14.025px;
  }
}
.c-page-title__main span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: clamp(6px, 0.53vw + 1.95px, 9.6px);
}
@media (max-width: 900px) {
  .c-page-title__main span {
    font-size: clamp(40px, 3.57vw + 12.6px, 64px);
  }
}
@media screen and (max-width: 767px) {
  .c-page-title__main span {
    font-size: 40px;
  }
}

.c-page-title__sub {
  color: #5a8f82;
  text-align: center;
  /* En/Section */
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: clamp(1.68px, 0.27vw + 0.82px, 2.88px);
  -webkit-padding-after: 8px;
          padding-block-end: 8px;
  position: relative;
}
.c-page-title__sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: url(../img/line-fv-title.svg) repeat center center/contain;
}

@media (max-width: 1130px) {
  .p-privacy .c-page-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.c-cta {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  -webkit-margin-after: 100px;
          margin-block-end: 100px;
  padding-inline: 16px;
}
@media screen and (max-width: 767px) {
  .c-cta {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}

.c-cta__frontpage {
  background: var(--off-white, #f8f7f4);
}

.c-cta__card {
  max-width: 1200px;
  position: relative;
  border-radius: var(--Radius-M, 8px);
  border: 1.5px solid var(--charcoal, #3c3c3c);
  overflow: hidden;
  margin-inline: auto;
}
.c-cta__card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  inset: 0;
  background: url("../img/bg-cta.webp") center/contain repeat;
  z-index: 0;
}

.c-cta__card-inner {
  padding-inline: 12px;
  padding-block: 64px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-cta__card-inner {
    padding-block: 40px;
  }
}

.c-cta__text-lead {
  text-align: center;
  text-wrap: pretty;
  word-break: auto-phrase;
  /* H2/PC */
  font-size: 40px;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .c-cta__text-lead {
    font-size: 28px;
    line-height: 160%; /* 44.8px */
    letter-spacing: 1.68px;
  }
}

.c-cta__text-description {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  text-align: center;
  text-wrap: pretty;
  word-break: auto-phrase;
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .c-cta__text-description {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
    font-size: 20px;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
  }
}

.c-cta__btn {
  -webkit-padding-before: 72px;
          padding-block-start: 72px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    -webkit-padding-before: 54px;
            padding-block-start: 54px;
  }
}

.c-work-card {
  border-radius: var(--Radius-M, 8px);
  background: var(--white, #fff);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-work-card:hover .c-work-card__arrow {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}

.c-work-card__img {
  width: 100%;
  aspect-ratio: 326/244;
}
.c-work-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-work-card__body {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-work-card__body {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    gap: 16px;
  }
}

.c-work-card__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-work-card__category {
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 4px 12px;
  color: var(--charcoal, #3c3c3c);
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.56px;
  border-radius: var(--Radius-S, 4px);
  background: var(--off-white, #f8f7f4);
}
@media screen and (max-width: 767px) {
  .c-work-card__category {
    font-size: 12px;
  }
}

.c-work-card__title {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  color: var(--charcoal, #3c3c3c);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .c-work-card__title {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%; /* 28.8px */
    letter-spacing: 1.08px;
  }
}

.c-work-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--green, #5a8f82);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  margin-left: auto;
  margin-top: auto;
}

.c-work-card__arrow {
  -webkit-margin-before: 3px;
          margin-block-start: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-work-card__arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

.c-work-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #fff;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading.js-loading-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.loading.js-loading-end {
  display: none;
}
.loading img {
  width: 100%;
  height: 100%;
  display: block;
}

.loading__img {
  position: relative;
}

.loading__bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #fff;
}
.loading__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2030px;
  aspect-ratio: 2030/1175;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .loading__bg img {
    width: 1402.86px;
    aspect-ratio: 1402/812;
  }
}

.loading__drop {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}
.loading__drop svg {
  width: 40px;
  height: 100px;
  display: block;
}

.loading__impact {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.loading__splash-drop {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 13px;
  margin-left: -3.5px;
  margin-top: -6.5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c8dbd6), to(#5a8f82));
  background: linear-gradient(to bottom, #c8dbd6, #5a8f82);
  border-radius: 50% 50% 40% 40%/55% 55% 45% 45%;
  opacity: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-block: 12px;
  padding-inline: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding: 8px;
  }
}

.p-header__inner {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 0 20px 6px var(--white, #fff) inset;
          box-shadow: 0 0 20px 6px var(--white, #fff) inset;
  width: min(1440px, 100%);
  padding-inline: 12px;
  border-radius: 8px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 16px;
  }
}
@media (max-width: 370px) {
  .p-header__inner {
    padding-inline: 8px;
  }
}

.p-header__contents {
  margin-inline: auto;
  width: min(1288px, 100%);
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 225px 1fr;
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .p-header__contents {
    grid-template-columns: 1fr auto;
  }
}

.p-header__logo a {
  color: #5a8f82;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
  text-wrap: nowrap;
  min-width: 0;
}
@media (max-width: 370px) {
  .p-header__logo a {
    font-size: 20px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media (max-width: 1200px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.p-header__list li {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}

.p-header__btn {
  padding: 12px 24px;
  background: #eabf80;
  -webkit-box-shadow: 0 0 20px 0 #d39c4d inset;
          box-shadow: 0 0 20px 0 #d39c4d inset;
  border: 1px solid #ffffff;
  border-radius: 100vmax;
  color: #3c3c3c;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid #3c3c3c;
  background: #ffffff;
}
@media (max-width: 370px) {
  .p-drawer__icon {
    right: 15px;
  }
}
@media (min-width: 1201px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 24px;
  height: 5px;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  -webkit-transform: translateY(7.5px);
          transform: translateY(7.5px);
  opacity: 0;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  -webkit-transform: translateY(-7.5px);
          transform: translateY(-7.5px);
  opacity: 0;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #5a8f82;
  -webkit-padding-after: 80px;
          padding-block-end: 80px;
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-margin-before: 45px;
          margin-block-start: 45px;
  padding-block: 88px 40px;
  text-align: center;
}
.p-drawer__body li a {
  padding-block: 28px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 56px;
  margin-bottom: 40px;
}
.p-drawer__list li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}

.p-drawer__btn {
  text-align: center;
  padding-inline: 16px;
}

.p-footer {
  background: #3c3c3c;
  color: #ffffff;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 56px;
  }
}

.p-footer__inner {
  width: min(1344px, 100%);
  padding-inline: 16px;
  margin-inline: auto;
}

.p-footer__contents {
  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;
  -webkit-padding-after: 80px;
          padding-block-end: 80px;
  border-bottom: 1px solid #f8f7f4;
}
@media (max-width: 900px) {
  .p-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__contents {
    -webkit-padding-after: 56px;
            padding-block-end: 56px;
  }
}

.p-footer__logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  color: #f8f7f4;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.88px;
}

@media (max-width: 900px) {
  .p-footer__nav {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 900px) {
  .p-footer__list {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-footer__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}

.p-footer__copyright {
  text-align: center;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
}
.p-footer__copyright small {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
}

.p-test {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    padding-block: 4.375rem;
  }
}

.p-test__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-test__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.25rem;
  }
}

.p-test__title {
  font-size: max(3.125rem, 40px);
}
@media screen and (max-width: 767px) {
  .p-test__title {
    font-size: 3.125rem;
  }
}
.p-test__title {
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.p-test__text {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  font-size: max(1.75rem, 22.4px);
}
@media screen and (max-width: 767px) {
  .p-test__text {
    font-size: 1.75rem;
  }
}
.p-test__text {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}

.p-test__text-wrap {
  width: min(25rem, 100%);
}

.p-test__img {
  width: min(37.5rem, 100%);
  height: auto;
}

.p-fv {
  -webkit-padding-before: 215px;
          padding-block-start: 215px;
  -webkit-padding-after: 77px;
          padding-block-end: 77px;
}
@media screen and (max-width: 767px) {
  .p-fv {
    -webkit-padding-before: 144px;
            padding-block-start: 144px;
  }
}

.p-fv__illust-wrapper {
  position: relative;
  overflow-x: clip;
}

.p-fv__left-illust {
  position: absolute;
  left: calc(50% + clamp(-50px, 60vw - 866px, -2px));
  top: 0px;
  left: 50%;
}
@media (max-width: 1360px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1260px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1200px) and (min-width: 1081px) {
  .p-fv__left-illust {
    left: 50%;
  }
}
@media (max-width: 1160px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1080px) {
  .p-fv__left-illust {
    left: clamp(50%, 5.27vw + 343px, 400px);
  }
}
@media (max-width: 1030px) {
  .p-fv__left-illust {
    top: -20px;
    left: 500px;
  }
}
@media (max-width: 1000px) {
  .p-fv__left-illust {
    left: 50%;
  }
}
@media (max-width: 980px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media (max-width: 930px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 920px) {
  .p-fv__left-illust {
    left: 50%;
  }
}
@media (max-width: 840px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__left-illust {
    top: 120px;
    left: calc(50% + 140px);
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media (max-width: 640px) {
  .p-fv__left-illust {
    left: calc(50% + 160px);
  }
}
@media (max-width: 580px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    left: calc(50% + 150px);
    top: 150px;
  }
}
@media (max-width: 540px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    left: calc(50% + 140px);
    top: 170px;
  }
}
@media (max-width: 500px) {
  .p-fv__left-illust {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    left: calc(50% + 130px);
    top: 190px;
  }
}
@media (max-width: 375px) {
  .p-fv__left-illust {
    top: 213px;
    left: calc(50% + 100px);
    -webkit-transform: scale(0.43);
            transform: scale(0.43);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 370px) {
  .p-fv__left-illust {
    top: 213px;
    left: calc(50% + 100px);
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 360px) {
  .p-fv__left-illust {
    top: 230px;
  }
}

.p-fv__right-illust {
  position: absolute;
  top: 0px;
  right: 50%;
}
@media (max-width: 1360px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1260px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1200px) and (min-width: 1081px) {
  .p-fv__right-illust {
    right: 50%;
  }
}
@media (max-width: 1160px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media (max-width: 1080px) {
  .p-fv__right-illust {
    top: auto;
    right: clamp(50%, 5.27vw + 343px, 400px);
  }
}
@media (max-width: 1030px) {
  .p-fv__right-illust {
    top: -20px;
    right: 500px;
  }
}
@media (max-width: 1000px) {
  .p-fv__right-illust {
    right: 50%;
  }
}
@media (max-width: 980px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media (max-width: 930px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (max-width: 840px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__right-illust {
    top: 120px;
    right: calc(50% + 160px);
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
  }
}
@media (max-width: 640px) {
  .p-fv__right-illust {
    right: calc(50% + 170px);
  }
}
@media (max-width: 580px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    right: calc(50% + 150px);
    top: 150px;
  }
}
@media (max-width: 540px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    right: calc(50% + 140px);
    top: 170px;
  }
}
@media (max-width: 500px) {
  .p-fv__right-illust {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: calc(50% + 130px);
    top: 190px;
  }
}
@media (max-width: 375px) {
  .p-fv__right-illust {
    top: 212px;
    right: calc(50% + 100px);
    -webkit-transform: scale(0.44);
            transform: scale(0.44);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
}
@media (max-width: 370px) {
  .p-fv__right-illust {
    top: 212px;
    right: calc(50% + 100px);
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
}
@media (max-width: 360px) {
  .p-fv__right-illust {
    top: 230px;
  }
}

.p-fv__heading {
  overflow: visible;
  text-align: center;
  text-wrap: pretty;
  word-break: auto-phrase;
  padding-inline: 4.5px;
}

.p-fv__heading-steam {
  overflow: visible;
  position: relative;
}
.p-fv__heading-steam .steam1 {
  position: absolute;
  top: -80px;
  left: calc(50% + 130px);
}
.p-fv__heading-steam .steam2 {
  position: absolute;
  top: -104px;
  right: calc(50% + 130px);
}
.p-fv__heading-steam .steam3 {
  position: absolute;
  top: 270px;
  right: calc(50% + 130px);
}
.p-fv__heading-steam.is-animated .steam1 {
  -webkit-animation: steam-wobble1 3s ease-in-out infinite;
          animation: steam-wobble1 3s ease-in-out infinite;
}
.p-fv__heading-steam.is-animated .steam2 {
  -webkit-animation: steam-wobble2 3.8s ease-in-out infinite 0.5s;
          animation: steam-wobble2 3.8s ease-in-out infinite 0.5s;
}
.p-fv__heading-steam.is-animated .steam3 {
  -webkit-animation: steam-wobble3 2.8s ease-in-out infinite 1s;
          animation: steam-wobble3 2.8s ease-in-out infinite 1s;
}

@-webkit-keyframes steam-wobble1 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  30% {
    -webkit-transform: translateY(-10px) translateX(4px);
            transform: translateY(-10px) translateX(4px);
  }
  60% {
    -webkit-transform: translateY(-6px) translateX(-3px);
            transform: translateY(-6px) translateX(-3px);
  }
}

@keyframes steam-wobble1 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  30% {
    -webkit-transform: translateY(-10px) translateX(4px);
            transform: translateY(-10px) translateX(4px);
  }
  60% {
    -webkit-transform: translateY(-6px) translateX(-3px);
            transform: translateY(-6px) translateX(-3px);
  }
}
@-webkit-keyframes steam-wobble2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  40% {
    -webkit-transform: translateY(-14px) translateX(-5px);
            transform: translateY(-14px) translateX(-5px);
  }
  70% {
    -webkit-transform: translateY(-8px) translateX(3px);
            transform: translateY(-8px) translateX(3px);
  }
}
@keyframes steam-wobble2 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  40% {
    -webkit-transform: translateY(-14px) translateX(-5px);
            transform: translateY(-14px) translateX(-5px);
  }
  70% {
    -webkit-transform: translateY(-8px) translateX(3px);
            transform: translateY(-8px) translateX(3px);
  }
}
@-webkit-keyframes steam-wobble3 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  35% {
    -webkit-transform: translateY(-8px) translateX(5px);
            transform: translateY(-8px) translateX(5px);
  }
  65% {
    -webkit-transform: translateY(-12px) translateX(-2px);
            transform: translateY(-12px) translateX(-2px);
  }
}
@keyframes steam-wobble3 {
  0%, 100% {
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
  35% {
    -webkit-transform: translateY(-8px) translateX(5px);
            transform: translateY(-8px) translateX(5px);
  }
  65% {
    -webkit-transform: translateY(-12px) translateX(-2px);
            transform: translateY(-12px) translateX(-2px);
  }
}
.p-fv__heading-top {
  display: block;
  font-size: clamp(20px, 4.158vw - 11.89px, 48px);
  font-weight: 700;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 767px) {
  .p-fv__heading-top {
    letter-spacing: 2px;
  }
}

.p-fv__heading-bottom {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: clamp(8px, 1.188vw - 1.11px, 16px);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  /* H1/PC */
  font-size: clamp(36px, 4.158vw + 4.11px, 64px);
  font-weight: 700;
  line-height: 150%; /* 96px */
  letter-spacing: 3.84px;
}
@media screen and (max-width: 767px) {
  .p-fv__heading-bottom {
    letter-spacing: 2.16px;
  }
}
@media (max-width: 360px) {
  .p-fv__heading-bottom {
    font-size: 30px;
  }
}

.p-fv__heading-bottom > span {
  font-weight: 700;
}

.p-fv__heading-quote {
  position: relative;
  top: -0.7em;
  width: 28.05px;
  height: 19.668px;
}
@media screen and (max-width: 767px) {
  .p-fv__heading-quote {
    width: 15.729px;
    height: 11.03px;
  }
}

.p-fv__title {
  -webkit-margin-before: clamp(40px, 5.944vw - 5.59px, 80px);
          margin-block-start: clamp(40px, 5.944vw - 5.59px, 80px);
  text-align: center;
}

.p-fv__title-sub {
  display: block;
  color: var(--charcoal, #3c3c3c);
  text-align: center;
  /* H3/SP */
  font-size: clamp(18px, 0.297vw + 15.72px, 20px);
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-fv__title-sub {
    letter-spacing: 1.08px;
  }
}

.p-fv__title-main {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  display: block;
  color: var(--green, #5a8f82);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(24px, 2.377vw + 5.77px, 40px);
  font-weight: 700;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .p-fv__title-main {
    color: var(--green, #5a8f82);
    letter-spacing: 1.92px;
  }
}

.p-fv__title-text {
  -webkit-margin-before: 48px;
          margin-block-start: 48px;
  text-align: center;
  color: var(--charcoal, #3c3c3c);
  /* Body/L */
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 767px) {
  .p-fv__title-text {
    -webkit-margin-before: 248px;
            margin-block-start: 248px;
    font-size: 16px;
    letter-spacing: 0.96px;
  }
}
@media (max-width: 360px) {
  .p-fv__title-text {
    -webkit-margin-before: 200px;
            margin-block-start: 200px;
  }
}

.p-fv__arrow {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  width: 24px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__arrow {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

/*==========================================================
# animation
=========================================================== */
#fvLeft-line1 {
  position: absolute;
  top: -23px;
  right: calc(50% + 272px);
  width: 576.398px;
  height: 442.207px;
  z-index: 20;
}

#fvLeft-line1 #fvLeft-line1-base path {
  fill: #3c3c3c;
}

#fvLeft-line1 #fvLeft-line1-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-line2 {
  position: absolute;
  top: 82px;
  right: calc(50% + 266px);
  width: 608.55px;
  height: 456.964px;
  z-index: 20;
}

#fvLeft-line2 #fvLeft-line2-base path {
  fill: #3c3c3c;
}

#fvLeft-line2 #fvLeft-line2-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-line3 {
  position: absolute;
  top: 102px;
  right: calc(50% + 279px);
  width: 619.724px;
  height: 350.184px;
  z-index: 20;
}

#fvLeft-line3 #fvLeft-line3-base path {
  fill: #3c3c3c;
}

#fvLeft-line3 #fvLeft-line3-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts5 {
  position: absolute;
  top: 278px;
  right: calc(50% + 336px);
  width: 13.305px;
  height: 19.92px;
  z-index: 20;
}

#fvLeft-parts5 #fvLeft-parts5-base path {
  fill: #3c3c3c;
}

#fvLeft-parts5 #fvLeft-parts5-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts6 {
  position: absolute;
  top: 439px;
  right: calc(50% + 698px);
  width: 25.055px;
  height: 63.931px;
  z-index: 20;
}

#fvLeft-parts6 #fvLeft-parts6-base path {
  fill: #3c3c3c;
}

#fvLeft-parts6 #fvLeft-parts6-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts7 {
  position: absolute;
  top: 271px;
  right: calc(50% + 639px);
  width: 23.593px;
  height: 38.929px;
  z-index: 20;
}

#fvLeft-parts7 #fvLeft-parts7-base path {
  fill: #3c3c3c;
}

#fvLeft-parts7 #fvLeft-parts7-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts8 {
  position: absolute;
  top: 190px;
  right: calc(50% + 300px);
  width: 23.593px;
  height: 38.929px;
  z-index: 20;
}

#fvLeft-parts8 #fvLeft-parts8-base path {
  fill: #3c3c3c;
}

#fvLeft-parts8 #fvLeft-parts8-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts9 {
  position: absolute;
  top: 155px;
  right: calc(50% + 440px);
  width: 27.084px;
  height: 45.21px;
  z-index: 20;
}

#fvLeft-parts9 #fvLeft-parts9-base path {
  fill: #3c3c3c;
}

#fvLeft-parts9 #fvLeft-parts9-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts10 {
  position: absolute;
  top: 353px;
  right: calc(50% + 456px);
  width: 23.593px;
  height: 38.929px;
  z-index: 20;
}

#fvLeft-parts10 #fvLeft-parts10-base path {
  fill: #3c3c3c;
}

#fvLeft-parts10 #fvLeft-parts10-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

#fvLeft-parts11 {
  position: absolute;
  top: 20px;
  right: calc(50% + 633px);
  width: 30.011px;
  height: 52.633px;
  z-index: 20;
}

#fvLeft-parts11 #fvLeft-parts11-base path {
  fill: #3c3c3c;
}

#fvLeft-parts11 #fvLeft-parts11-mask path {
  fill: none; /* 塗りの色 */
  stroke: #ffffff; /* 線の色 */
  stroke-width: 4px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}

/*==========================================================
# fvRight
=========================================================== */
.fvRight-parts1,
.fvRight-parts2,
.fvRight-parts3,
.fvRight-parts4,
.fvRight-parts5,
.fvRight-parts6,
.fvRight-parts7,
.fvRight-parts8,
.fvRight-parts9,
.fvRight-parts10,
.fvRight-parts11,
.fvRight-parts12,
.fvRight-parts13,
.fvRight-parts14,
.fvRight-parts15,
.fvRight-parts16,
.fvRight-parts17 {
  position: absolute;
}

.fvRight-parts1 {
  top: 340px;
  left: calc(50% + 360px);
  width: 61.527px;
  height: 51.598px;
}

.fvRight-parts2 {
  top: 287px;
  left: calc(50% + 262px);
  width: 77.319px;
  height: 37.502px;
}

.fvRight-parts3 {
  top: 207px;
  left: calc(50% + 390px);
  width: 66.089px;
  height: 70.552px;
}

.fvRight-parts5 {
  top: 418px;
  left: calc(50% + 671px);
  width: 98.442px;
  height: 75.663px;
}

.fvRight-parts6 {
  top: 118px;
  left: calc(50% + 689px);
  width: 65.488px;
  height: 140.098px;
}

.fvRight-parts7 {
  top: 266px;
  left: calc(50% + 447px);
  width: 91.245px;
  height: 79.003px;
}

.fvRight-parts8 {
  top: 375px;
  left: calc(50% + 523px);
  width: 89.816px;
  height: 77.218px;
}

.fvRight-parts9 {
  top: 214px;
  left: calc(50% + 588px);
  width: 84.947px;
  height: 146.148px;
}

.fvRight-parts10 {
  top: 190px;
  left: calc(50% + 550px);
  width: 22.1px;
  height: 45.244px;
}

.fvRight-parts11 {
  top: 335px;
  left: calc(50% + 708px);
  width: 10.642px;
  height: 8.471px;
}

.fvRight-parts12 {
  top: 138px;
  left: calc(50% + 481px);
  width: 30.603px;
  height: 34.599px;
}

.fvRight-parts13 {
  top: 451px;
  left: calc(50% + 490px);
  width: 17.876px;
  height: 22.718px;
}

.fvRight-parts14 {
  top: 451px;
  left: calc(50% + 590px);
  width: 17.876px;
  height: 22.718px;
}

.fvRight-parts15 {
  top: 421px;
  left: calc(50% + 433px);
  width: 24.215px;
  height: 27.272px;
}

.fvRight-parts16 {
  top: 0;
  left: calc(50% + 587px);
  width: 59.704px;
  height: 202.195px;
}

/*==========================================================
# fvRight - shine animation
=========================================================== */
.fvRight-parts1,
.fvRight-parts2,
.fvRight-parts3,
.fvRight-parts4,
.fvRight-parts5,
.fvRight-parts6,
.fvRight-parts7,
.fvRight-parts8,
.fvRight-parts9,
.fvRight-parts14,
.fvRight-parts16,
.fvRight-parts17 {
  overflow: hidden;
  isolation: isolate;
}
.fvRight-parts1::after,
.fvRight-parts2::after,
.fvRight-parts3::after,
.fvRight-parts4::after,
.fvRight-parts5::after,
.fvRight-parts6::after,
.fvRight-parts7::after,
.fvRight-parts8::after,
.fvRight-parts9::after,
.fvRight-parts14::after,
.fvRight-parts16::after,
.fvRight-parts17::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.6)), color-stop(75%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  z-index: 1;
}

.fvRight-shine-active::after {
  -webkit-animation: fvRight-shine 8s linear infinite;
          animation: fvRight-shine 8s linear infinite;
}

@-webkit-keyframes fvRight-shine {
  4% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes fvRight-shine {
  4% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.fvRight-parts17 {
  top: 0;
  left: calc(50% + 787px);
  width: 59.704px;
  height: 202.195px;
}

.p-page-fv {
  padding-block: 72px 96px;
}
@media screen and (max-width: 767px) {
  .p-page-fv {
    padding-block: 72px 64px;
  }
}

.p-page-fv--contact {
  -webkit-padding-before: 56px;
          padding-block-start: 56px;
}

.p-page-fv__text {
  position: relative;
  z-index: 1;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  color: var(--charcoal, #3c3c3c);
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .p-page-fv__text {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
  }
}

.p-profile {
  background: #f8f7f4;
}

.p-profile__body {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-profile__body {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.p-profile__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-profile__img {
    width: 320px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media (max-width: 400px) {
  .p-profile__img {
    width: 300px;
  }
}
.p-profile__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-profile__content {
  padding-block: 86.5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-profile__content {
    padding-block: 0;
  }
}

.p-profile__heading {
  color: var(--orange, #d9ac6b);
  font-size: 32px;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 2.56px;
}
@media screen and (max-width: 767px) {
  .p-profile__heading {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.p-profile__text {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
.p-profile__text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 767px) {
  .p-profile__text p {
    font-size: 16px;
    letter-spacing: 0.96px;
  }
}
.p-profile__text p + p {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
@media screen and (max-width: 767px) {
  .p-profile__text p + p {
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
  }
}

.p-profile__btn {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-profile__btn {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    text-align: center;
  }
}

.p-information {
  position: relative;
}
.p-information::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 232, 217, 0.8)), to(rgba(241, 232, 217, 0.8))), url("../img/woodgrain-bg.webp") center/contain repeat;
  background: linear-gradient(rgba(241, 232, 217, 0.8), rgba(241, 232, 217, 0.8)), url("../img/woodgrain-bg.webp") center/contain repeat;
  z-index: -1;
  pointer-events: none;
}

.p-information__body {
  border-radius: 8px;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.3);
  padding: 56px;
}
@media screen and (max-width: 767px) {
  .p-information__body {
    padding: 32px 12px;
  }
}

.p-information__items {
  margin-inline: auto;
  max-width: 760px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media screen and (max-width: 767px) {
  .p-information__items {
    gap: 56px;
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
  }
}

.p-information__item-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
  background: #5a8f82;
  border-radius: 4px;
  color: #f8f7f4;
  padding-block: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-information__item-title {
    font-size: 20px;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
  }
}

.p-information__item-list {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  color: #5a8f82;
  display: grid;
  grid-template-columns: 154px 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-information__item-list {
    grid-template-columns: 1fr;
  }
}
.p-information__item-list dt {
  padding-inline: 20px;
  border: 1px solid #5a8f82;
  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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-information__item-list dt {
    padding-inline: 4px;
  }
}
.p-information__item-list dd {
  font-size: 20px;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-information__item-list dd {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}
.p-information__item-list dd small {
  display: block;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
}

.p-information__item-time {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-information__item-time {
    text-align: center;
  }
}

.p-information__item-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-information__item-text {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}

.p-information__item-price {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  color: #5a8f82;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
}
@media screen and (max-width: 767px) {
  .p-information__item-price {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}
.p-information__item-price li {
  position: relative;
}
.p-information__item-price li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -18px;
}

.p-information__item-notes {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
}

.p-information__item-note {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .p-information__item-note {
    font-size: 14px;
    line-height: 170%; /* 23.8px */
    letter-spacing: 0.56px;
  }
}

.p-service {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  background: #f8f7f4;
  position: relative;
  z-index: -3;
  overflow-x: clip;
}

.p-service1 {
  position: relative;
}

.p-service__item-title {
  padding-block: 16px;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  color: #5a8f82;
  border: 1px solid #5a8f82;
}
@media (max-width: 1300px) {
  .p-service__item-title {
    padding-block: 8px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
  }
}
.p-service__item-title {
  position: relative;
  z-index: 2;
}
.p-service__item-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/bg-woodgrain.webp") center/cover no-repeat;
}
.p-service__item-title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(90, 143, 130, 0.2)), to(rgba(90, 143, 130, 0.2))), url("../img/icon") center/contain repeat;
  background: linear-gradient(rgba(90, 143, 130, 0.2), rgba(90, 143, 130, 0.2)), url("../img/icon") center/contain repeat;
}

.p-service1__title-wrap {
  z-index: 10;
}
.p-service1__title-wrap .illust {
  position: absolute;
  left: 0;
  top: 0;
  translate: -60% -50%;
  width: 408px;
  aspect-ratio: 408/413;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .p-service1__title-wrap .illust {
    width: 312px;
    aspect-ratio: 312/315;
  }
}
.p-service1__title-wrap .illust img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-service1 .p-service__item-title {
  z-index: 10;
  background: #f8f7f4;
}
.p-service1 .p-service__item-title span {
  z-index: 0;
}
.p-service1 .p-service__item-title {
  padding-block: 16px;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  color: #5a8f82;
  border: 1px solid #5a8f82;
}
.p-service1 .p-service__item-title::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(90, 143, 130, 0.2)), to(rgba(90, 143, 130, 0.2))), url("../img/icon") center/contain repeat;
  background: linear-gradient(rgba(90, 143, 130, 0.2), rgba(90, 143, 130, 0.2)), url("../img/icon") center/contain repeat;
}

.p-service__offer {
  margin-block: 32px 96px;
}

.p-service__offer-body {
  display: grid;
  grid-template-columns: 376px 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
}
@media (max-width: 1300px) {
  .p-service__offer-body {
    grid-template-columns: 1fr;
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
}

@media (max-width: 1300px) {
  .p-service__offer-index {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-service__offer-index li a {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    font-size: 0;
  }
}
.p-service__offer-index {
  position: sticky;
  top: 240px;
  -ms-flex-item-align: start;
      align-self: start;
  z-index: 2;
  padding-block: 10px;
}
@media (max-width: 1300px) {
  .p-service__offer-index {
    top: 10px;
    height: 15px;
    padding-block: 0;
  }
}
.p-service__offer-index li a {
  padding-block: 32.5px;
  -webkit-padding-start: 21px;
          padding-inline-start: 21px;
  color: var(--green, #5a8f82);
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-wrap: nowrap;
  position: relative;
}
@media (max-width: 1300px) {
  .p-service__offer-index li a {
    padding-block: 0;
    font-size: 0;
  }
}
@media (max-width: 1300px) {
  .p-service__offer-index li a {
    font-size: 0;
  }
}
.p-service__offer-index li a::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/green-dot.svg) no-repeat center center/contain;
  z-index: 2;
}
@media (max-width: 1300px) {
  .p-service__offer-index {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .p-service__offer-index li {
    width: 15px;
    height: 15px;
  }
  .p-service__offer-index li a {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    font-size: 0;
  }
}

.p-service__offer-index li a {
  opacity: 0.35;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

@media (max-width: 1300px) {
  .p-service__offer-index li a {
    font-size: 0;
    opacity: 0;
  }
}
.p-step__cards {
  -ms-flex-item-align: start;
      align-self: start;
}
@media (max-width: 1300px) {
  .p-step__cards {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.p-step__card-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: 32px;
}

.p-service__offer-card {
  position: sticky;
  top: 240px;
  z-index: 11;
  border-radius: var(--Radius-M, 8px);
  border: var(--Stroke-Border-Width, 1px) solid var(--green, #5a8f82);
  background: var(--white, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--spacing-24, 24px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-16, 16px);
  will-change: transform, opacity;
}
@media (max-width: 1300px) {
  .p-service__offer-card {
    top: 260px;
  }
}
.p-service__offer-card:last-child {
  -webkit-margin-after: 180px;
          margin-block-end: 180px;
}
@media (max-width: 1300px) {
  .p-service__offer-card:last-child {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.p-service__offer-title {
  color: var(--green, #5a8f82);
  /* H3/PC */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}

.p-service__offer-text {
  color: var(--charcoal, #3c3c3c);
  /* Body/M */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-service__skills {
  display: grid;
  grid-template-columns: repeat(4, 246px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
  -webkit-margin-after: 96px;
          margin-block-end: 96px;
  gap: 16px;
}
@media (max-width: 1300px) {
  .p-service__skills {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 370px) {
  .p-service__skills {
    grid-template-columns: 1fr;
  }
}

.p-service__skill {
  border-radius: 8px;
  background: #5a8f82;
  padding: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1300px) {
  .p-service__skill {
    padding: 12px;
  }
}

.p-service__skill-title {
  color: var(--off-white, #f8f7f4);
  text-align: center;
  /* En/Section */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  min-height: 3em;
  font-size: 24px;
  letter-spacing: 2.88px;
  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;
}
@media (max-width: 1300px) {
  .p-service__skill-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.16px;
  }
}

.p-service__skill-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  gap: 24px;
}
@media (max-width: 1300px) {
  .p-service__skill-list {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
    gap: 8px;
  }
}

.p-service__skill-row {
  border-radius: var(--spacing-4, 4px);
  background: var(--white, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
}
@media (max-width: 1300px) {
  .p-service__skill-row {
    padding: 8px;
    gap: 16px;
  }
}

.p-service__skill-icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
}
@media (max-width: 1300px) {
  .p-service__skill-icon {
    width: 24px;
    height: 24px;
  }
}

.p-service__skill-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
}
@media (max-width: 1300px) {
  .p-service__skill-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.12px;
  }
}

.p-service__flow-contents {
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
  max-width: 1000px;
  padding-inline: 20px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1300px) {
  .p-service__flow-contents {
    gap: 4px;
  }
}

.p-service__flow {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-service__flow-box {
  position: relative;
  padding-left: 22px;
  --dot-y: 48px;
  --gap: 10px;
}
.p-service__flow-box::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 48px;
  width: 15px;
  height: 15px;
  background: url(../img/green-dot.svg) no-repeat center center/contain;
  z-index: 2;
}
@media (max-width: 1300px) {
  .p-service__flow-box::before {
    left: -25px;
  }
}
.p-service__flow-box::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  width: 32px;
  height: 22px;
  background: url(../img/icon-polygon.svg) no-repeat center center/contain;
  z-index: 2;
}

.p-service__flow-progress {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  position: relative;
}

.flow-progress__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-progress__line {
  stroke: #5a8f82;
  stroke-width: 8;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.p-service__flow-inner {
  padding-block: 24px;
  position: relative;
}

.p-service__flow-body {
  border-radius: var(--Radius-M, 8px);
  background: var(--white, #fff);
  padding: 16px;
  position: relative;
}

.p-service__flow-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1300px) {
  .p-service__flow-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-service__flow-heading span {
  color: var(--green, #5a8f82);
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
  position: relative;
}

.p-service__flow-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.88px;
}

.p-service__flow-desc {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  color: var(--charcoal, #3c3c3c);
  /* Body/M */
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-service1__illust-wrapper,
.p-service2__illust-wrapper,
.p-service3__illust-wrapper {
  position: relative;
}

.p-service2__illust-wrapper .illust {
  position: absolute;
  z-index: -1;
  top: 200px;
  left: calc(50% + min(300px, 19vw));
  width: 456.83px;
  aspect-ratio: 456/623;
}
@media (max-width: 1300px) and (max-width: 375px) {
  .p-service2__illust-wrapper .illust {
    position: absolute;
    right: -36px;
    top: 763.748px;
    top: -175px;
    left: calc(50% + 155px);
    width: 74.842px;
    aspect-ratio: 74/82;
  }
}
@media (max-width: 375px) {
  .p-service2__illust-wrapper .illust {
    top: -383px;
  }
}

.p-service3__illust-wrapper .illust {
  width: 529px;
  aspect-ratio: 529/668;
  position: absolute;
  top: 30px;
  right: calc(50% + 300px);
}
@media (max-width: 1300px) {
  .p-service3__illust-wrapper .illust {
    top: -190px;
  }
}
@media (max-width: 1250px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 200px);
  }
}
@media (max-width: 1000px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 100px);
  }
}
@media (max-width: 900px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 70px);
  }
}
@media (max-width: 800px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 50px);
  }
}
@media (max-width: 750px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 0px);
  }
}
@media (max-width: 1300px) {
  .p-service3__illust-wrapper .illust {
    right: calc(50% + 50px);
  }
}
@media (max-width: 375px) {
  .p-service3__illust-wrapper .illust {
    top: -200px;
    right: calc(50% + 150px);
  }
}
.p-service3__illust-wrapper .illust img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-service3__illust-wrapper .illust2 {
  width: 744.01px;
  aspect-ratio: 744/241;
  position: absolute;
  bottom: -100px;
  right: calc(50% - 900px);
}
@media (max-width: 375px) {
  .p-service3__illust-wrapper .illust2 {
    width: 430px;
    aspect-ratio: 43/14;
  }
}
.p-service3__illust-wrapper .illust2 img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-policy {
  -webkit-margin-before: -120px;
          margin-block-start: -120px;
  background: var(--sheer-orange, #f1e8d9);
  position: relative;
  z-index: 1;
}
.p-policy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: url(../img/bg-cloud.png) no-repeat center center/cover;
}
.p-policy::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%) rotate(180deg);
          transform: translateY(100%) rotate(180deg);
  background: url(../img/bg-policy.png) repeat center center/cover;
}

.p-policy__items {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-policy__items {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
  }
}

.p-policy__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-policy__item {
    gap: 16px;
  }
}
.p-policy__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-policy__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-policy__contents {
  padding-block: 38.5px;
}
@media screen and (max-width: 767px) {
  .p-policy__contents {
    width: 100%;
    padding-block: 0;
  }
}

.p-policy__title {
  color: var(--orange, #d9ac6b);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-policy__title {
    gap: 16px;
  }
}

.p-policy__title-number {
  font-size: 62px;
  font-style: italic;
  font-weight: 700;
  font-family: "Plus Jakarta Sans";
}

.p-policy__title-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .p-policy__title-text {
    font-size: 20px;
  }
}

.p-policy__text {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  color: var(--charcoal, #3c3c3c);
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
  /* Body/L */
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 767px) {
  .p-policy__text {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    font-size: 16px;
    letter-spacing: 0.96px;
  }
}

.p-policy1__illust-wrapper {
  width: 38.125%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 366/275;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-policy1__illust-wrapper {
    width: 65.306122449%;
    margin-inline: auto;
  }
}

.p-policy1__illust-wrapper > div {
  opacity: 0;
  -webkit-transform: translateY(18px) scale(0.98);
          transform: translateY(18px) scale(0.98);
  will-change: transform, opacity;
}

/* 浮遊（JSで class を付けて動かす） */
.p-policy1__illust-wrapper > div.is-float {
  -webkit-animation: floatY 3.6s ease-in-out infinite;
          animation: floatY 3.6s ease-in-out infinite;
}

/* 2枚目は位相をずらして“自然”に */
.p-policy1__illust-wrapper > div.is-float:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes floatY {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes floatY {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.p-policy1__illust1-img {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 3;
  width: 80.0546448087%;
  aspect-ratio: 293/225;
}
.p-policy1__illust1-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-policy1__illust2-img {
  position: absolute;
  top: 54%;
  right: 0;
  z-index: 4;
  width: 50.2732240437%;
  aspect-ratio: 184/141;
}
.p-policy1__illust2-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-policy2__illust1-img,
.p-policy2__illust2-img,
.p-policy2__illust3-img,
.p-policy2__illust4-img {
  width: 27.0491803279%;
  aspect-ratio: 99/90;
}

.p-policy2__illust-wrapper {
  position: relative;
  width: 38.125%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 366/275;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-policy2__illust-wrapper {
    width: 65.306122449%;
    max-width: 366px;
    margin-inline: auto;
  }
}

.p-policy2__illust-wrapper > div {
  position: absolute;
  left: 50%;
  top: 0;
}

.p-policy2__illust1-img {
  -webkit-transform: translate(-160px, -140px) rotate(-25deg);
          transform: translate(-160px, -140px) rotate(-25deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-policy2__illust1-img {
    -webkit-transform: translate(-80px, -70px) rotate(-25deg);
            transform: translate(-80px, -70px) rotate(-25deg);
  }
}

.p-policy2__illust2-img {
  -webkit-transform: translate(130px, -60px) rotate(15deg);
          transform: translate(130px, -60px) rotate(15deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-policy2__illust2-img {
    -webkit-transform: translate(65px, -30px) rotate(15deg);
            transform: translate(65px, -30px) rotate(15deg);
  }
}

.p-policy2__illust3-img {
  -webkit-transform: translate(-120px, 100px) rotate(-10deg);
          transform: translate(-120px, 100px) rotate(-10deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-policy2__illust3-img {
    -webkit-transform: translate(-60px, 50px) rotate(-10deg);
            transform: translate(-60px, 50px) rotate(-10deg);
  }
}

.p-policy2__illust4-img {
  -webkit-transform: translate(150px, 160px) rotate(18deg);
          transform: translate(150px, 160px) rotate(18deg);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-policy2__illust4-img {
    -webkit-transform: translate(75px, 80px) rotate(18deg);
            transform: translate(75px, 80px) rotate(18deg);
  }
}

.p-policy1__illust-wrapper img,
.p-policy2__illust-wrapper img,
.p-policy3__illust-wrapper img {
  -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.p-policy__illust-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-policy3__illust-wrapper {
  width: 38.125%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 366/275;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-policy3__illust-wrapper {
    width: 65.306122449%;
    max-width: 366px;
    margin-inline: auto;
  }
}

.p-policy3__illust1-img,
.p-policy3__illust2-img {
  position: absolute;
}

.p-policy3__illust1-img {
  z-index: 2;
  top: 0;
  left: 0;
  width: 74.3169398907%;
  aspect-ratio: 90/91;
}
.p-policy3__illust1-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-policy3__illust2-img {
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  right: 0px;
  top: 0px;
  width: 36.8852459016%;
  aspect-ratio: 135/280;
}
.p-policy3__illust2-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-works {
  padding-block: 120px 340px;
  background: url("../img/woodgrain-bg.webp") center/contain repeat;
}

.p-works__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media (max-width: 1200px) {
  .p-works__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-works__cards .c-work-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    max-width: calc((100% - 24px) / 2);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-works__cards {
    grid-template-columns: 1fr;
  }
  .p-works__cards .c-work-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

.p-works__btn {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  text-align: center;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.p-animation {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--light-green, #d9e2dd)), to(var(--off-white, #f8f7f4)));
  background: linear-gradient(180deg, var(--light-green, #d9e2dd) 0%, var(--off-white, #f8f7f4) 100%);
}

.swiper-slide-active {
  position: relative;
}

.p-animation__swiper {
  padding-inline: 120px;
}

/* ボタン共通 */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  padding: 24px;
  border-radius: 999px;
  background: var(--light-green, #d9e2dd);
  -webkit-box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
          box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 24px;
  height: 24px;
  z-index: 3;
}

.swiper-button-prev {
  right: calc(50% + 200px);
}

.swiper-button-next {
  left: calc(50% + 200px);
}

/*==========================================================
# スライド
=========================================================== */
.p-animation__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 365px;
  height: 420px;
}

.p-animation__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-animation__card-img {
  width: 365px;
  aspect-ratio: 365/262;
  border-radius: var(--Radius-M, 8px);
  border: 1px solid var(--charcoal, #3c3c3c);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.p-animation__card-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-animation__card-contents {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  overflow: hidden;
}

.p-animation__card-tag {
  color: var(--off-white, #f8f7f4);
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.56px;
  border-radius: var(--Radius-S, 4px);
  background: var(--charcoal, #3c3c3c);
  padding: 4px 12px;
}

.p-animation__card-title {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  color: var(--charcoal, #3c3c3c);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}

/*==========================================================
# active / not-active
=========================================================== */
/* active：画像は上、contentsは下 */
.p-animation__swiper-slide.swiper-slide-active .p-animation__card {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-animation__swiper-slide.swiper-slide-active .p-animation__card-contents {
  display: block;
}

/* not-active：contentsを非表示、画像を上下中央 */
.p-animation__swiper-slide:not(.swiper-slide-active) .p-animation__card-contents {
  display: none;
}

.p-404__contents {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.p-404__head {
  color: var(--green, #5a8f82);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-404__head-main {
  display: inline-block;
  -ms-flex-item-align: center;
      align-self: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 4.8px;
  -webkit-padding-after: 8px;
          padding-block-end: 8px;
  position: relative;
}
.p-404__head-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: url(../img/Line-404-title.svg) repeat center center/contain;
}

.p-404__head-sub {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  font-size: clamp(28px, 1.5vw + 18.4px, 40px);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 3.2px;
}
@media (max-width: 320px) {
  .p-404__head-sub {
    font-size: 20px;
  }
}
.p-404__head-sub span {
  display: inline;
  font-weight: 700;
}
@media (max-width: 900px) {
  .p-404__head-sub span {
    display: block;
  }
}

.p-404__text {
  text-wrap: pretty;
  color: var(--charcoal, #3c3c3c);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
.p-404__text span {
  font-weight: 700;
}

.p-breadcrumb {
  -webkit-padding-before: var(--header-h);
          padding-block-start: var(--header-h);
}

.p-breadcrumb__inner {
  width: min(1440px, 100%);
  padding-inline: 16px;
  margin-inline: auto;
}

.p-single-work {
  -webkit-padding-after: 96px;
          padding-block-end: 96px;
  background: url("../img/woodgrain-bg.webp") center/contain repeat;
}

.p-single-work__head {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-work__head {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
    gap: 24px;
  }
}

.p-single-work__head-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.p-single-work__head-category span {
  padding: 4px 12px;
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 700;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  border-radius: var(--Radius-S, 4px);
  border: 1px solid var(--green, #5a8f82);
  background: var(--green, #5a8f82);
}
@media screen and (max-width: 767px) {
  .p-single-work__head-category span {
    padding: 4px 12px;
  }
}

.p-single-work__head-title {
  color: var(--charcoal, #3c3c3c);
  /* H2/PC */
  font-family: "Zen Kaku Gothic New";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .p-single-work__head-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 160%; /* 44.8px */
    letter-spacing: 1.68px;
  }
}

@media (max-width: 370px) {
  .p-single-work__head-url-colon {
    display: none;
  }
}

.p-single-work__head-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: var(--charcoal, #3c3c3c);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.64px;
}
.p-single-work__head-url a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 25%; /* 3.5px */
  text-underline-position: from-font;
}
@media screen and (max-width: 767px) {
  .p-single-work__head-url {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
@media (max-width: 370px) {
  .p-single-work__head-url {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-single-work__head-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.p-single-work__article {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  border-radius: var(--Radius-M, 8px);
  background: var(--white, #fff);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.p-single-work__article-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: 40px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-work__article-inner {
    gap: 16px;
    padding: 24px 12px;
  }
}

.p-single-work__article-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 880/495;
  border-radius: var(--Radius-M, 8px);
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.p-single-work__article-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-single-work-meta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-work-meta__list {
    gap: 16px;
  }
}

.p-single-work-meta__title {
  color: var(--orange, #d9ac6b);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.76px;
}
@media screen and (max-width: 767px) {
  .p-single-work-meta__title {
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}

.p-single-work-meta__value {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  color: var(--charcoal, #3c3c3c);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .p-single-work-meta__value {
    -webkit-margin-before: 4px;
            margin-block-start: 4px;
  }
}

.p-single-work-meta__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-single-work-meta__item-row {
    display: contents;
  }
}

.p-single-work-meta__item-row > .p-single-work-meta__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-single-work__bottom {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  grid-template-areas: "prev btn next";
}
@media screen and (max-width: 767px) {
  .p-single-work__bottom {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next" "btn  btn";
    row-gap: 40px;
  }
  .p-single-work__bottom .p-single-work__pagination-btn {
    justify-self: stretch;
  }
}

.p-single-work__pagination-prev a,
.p-single-work__pagination-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-prev a,
  .p-single-work__pagination-next a {
    gap: 12px;
  }
}
@media (max-width: 360px) {
  .p-single-work__pagination-prev a,
  .p-single-work__pagination-next a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-single-work__pagination-prev {
  grid-area: prev;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-prev {
    justify-self: flex-start;
  }
}
@media (max-width: 360px) {
  .p-single-work__pagination-prev a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-single-work__pagination-next {
  grid-area: next;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-next {
    justify-self: end;
  }
}
@media (max-width: 360px) {
  .p-single-work__pagination-next a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-single-work__pagination-btn {
  grid-area: btn;
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-btn {
    justify-self: stretch;
  }
  .p-single-work__pagination-btn a {
    display: block;
    width: 100%;
  }
}

.p-single-work__pagination-icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-icon {
    width: 44px;
  }
}
@media (max-width: 350px) {
  .p-single-work__pagination-icon {
    width: 60px;
  }
}
.p-single-work__pagination-icon::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: var(--Radius-Full, 999px);
  background: var(--light-green, #d9e2dd);
  -webkit-box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
          box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-icon::before {
    width: 44px;
    height: 44px;
  }
}
.p-single-work__pagination-icon svg {
  width: 11.775px;
  height: 20px;
  aspect-ratio: 11.78/20;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single-work__pagination-icon svg {
    width: 7.344px;
    height: 12.474px;
    aspect-ratio: 7.34/12.47;
  }
}

.p-single-work__pagination-text {
  color: var(--charcoal, #3c3c3c);
  text-align: center;
  /* Button */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}

.p-archive-work__fv {
  background: var(--gradation, linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%));
}

.p-archive-work__fv-inner {
  position: relative;
}

.p-archive-work__fv-img1,
.p-archive-work__fv-img2,
.p-archive-work__fv-img3,
.p-archive-work__fv-img4 {
  position: absolute;
  z-index: 0;
}

.p-archive-work__fv-img1 {
  top: -250px;
  right: -40px;
  width: 157.563px;
  height: 174.356px;
}
@media screen and (max-width: 767px) {
  .p-archive-work__fv-img1 {
    top: -209px;
    right: -33px;
  }
}

.p-archive-work__fv-img2 {
  top: -145px;
  right: 133px;
  width: 269.316px;
  height: 241.86px;
}
@media screen and (max-width: 767px) {
  .p-archive-work__fv-img2 {
    top: -104px;
    right: 140px;
  }
}

.p-archive-work__fv-img3 {
  top: 30px;
  right: -81px;
  width: 199.712px;
  height: 200.948px;
}
@media screen and (max-width: 767px) {
  .p-archive-work__fv-img3 {
    top: 66px;
    right: -72px;
  }
}

.p-archive-work__fv-img4 {
  top: 170px;
  right: 121px;
  width: 219.471px;
  height: 239.081px;
}
@media screen and (max-width: 767px) {
  .p-archive-work__fv-img4 {
    top: 205px;
    right: 130px;
  }
}

.p-archive-work-category {
  padding: 24px 40px;
  position: relative;
  border-radius: var(--Radius-M, 8px);
  border: 2px solid var(--green, #5a8f82);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-archive-work-category__title {
  color: #5a8f82;
  text-align: center;
  /* En/Section */
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.88px;
}

.p-archive-work-category__list {
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.p-archive-work-category__item a {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  border-radius: var(--Radius-S, 4px);
  border: 1px solid var(--charcoal, #3c3c3c);
  background: var(--off-white, #f8f7f4);
}
@media (any-hover: hover) {
  .p-archive-work-category__item a:hover {
    color: var(--off-white, #f8f7f4);
    border: 1px solid var(--green, #5a8f82);
    background: var(--green, #5a8f82);
  }
}
.p-archive-work-category__item.is-active a {
  color: var(--off-white, #f8f7f4);
  border: 1px solid var(--green, #5a8f82);
  background: var(--green, #5a8f82);
}

.p-archive-work__current-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-padding-before: 96px;
          padding-block-start: 96px;
}

.p-archive-work__cards {
  -webkit-padding-before: 96px;
          padding-block-start: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 358px));
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  row-gap: 64px;
}
@media (max-width: 1200px) {
  .p-archive-work__cards {
    grid-template-columns: repeat(2, minmax(0, 358px));
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-archive-work__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-archive-work__card {
  border-radius: var(--Radius-M, 8px);
  background: var(--white, #fff);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.c-work-card__link {
  padding: 16px;
}
@media (any-hover: hover) {
  .c-work-card__link:hover {
    opacity: 0.7;
  }
}

.p-archive-work__card-img {
  width: 100%;
  aspect-ratio: 326/244;
}
.p-archive-work__card-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-archive-work__card-category {
  padding: 4px 12px;
  color: var(--charcoal, #3c3c3c);
  font-size: 14px;
  font-weight: 700;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  border-radius: var(--Radius-S, 4px);
  background: var(--off-white, #f8f7f4);
}

.p-archive-work__card-title {
  color: var(--charcoal, #3c3c3c);
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}

.p-archive-work__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-archive-work__card-link span {
  color: var(--green, #5a8f82);
  /* Button */
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
}
.p-archive-work__card-link svg {
  width: 6.869px;
  height: 11.667px;
  aspect-ratio: 6.87/11.67;
}

.p-archive-work__pagination {
  margin-top: 96px;
}
.p-archive-work__pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* =================================
  prev / next 共通
================================= */
.page-numbers svg {
  width: 24px;
  height: 24px;
}

.page-numbers .prev,
.page-numbers .next {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  z-index: 0;
}

.page-numbers .prev {
  margin-right: 40px;
}

.page-numbers .next {
  margin-left: 40px;
}

/* 丸背景 */
.page-numbers .prev::before,
.page-numbers .next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--Radius-Full, 999px);
  background: var(--light-green, #d9e2dd);
  -webkit-box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
          box-shadow: 0 0 20px 0 var(--green, #5a8f82) inset;
  z-index: -1;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

/* hover */
.page-numbers .prev:hover::before,
.page-numbers .next:hover::before {
  background: #5a8f82;
}

/* SVG色変化 */
.page-numbers .prev svg path,
.page-numbers .next svg path {
  -webkit-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
  fill: #3c3c3c;
}

.page-numbers .prev:hover svg path,
.page-numbers .next:hover svg path {
  fill: white;
}

.p-archive-work__pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* 通常ドット */
.page-numbers svg circle {
  -webkit-transition: fill 0.25s ease, -webkit-transform 0.25s ease;
  transition: fill 0.25s ease, -webkit-transform 0.25s ease;
  transition: fill 0.25s ease, transform 0.25s ease;
  transition: fill 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  fill: #d9e2dd;
}

/* ドットだけ15pxにする */
.page-numbers li:not(.prev):not(.next) svg {
  width: 15px;
  height: 15px;
}

/* 現在ページだけ濃色 */
.page-numbers .current svg circle {
  fill: #5a8f82;
}

/* hover時 */
.page-numbers a:hover svg circle {
  fill: #7fb3a8;
}

.p-contact__hero-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(#d9e2dd));
  background: linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%);
}

.p-contact__fv-inner {
  position: relative;
  overflow-x: clip;
}

.p-contact__fv-img1,
.p-contact__fv-img2 {
  position: absolute;
}

.p-contact__fv-img1 {
  right: 167px;
  top: -42px;
  width: 336.494px;
  aspect-ratio: 336/258;
}

.p-contact__fv-img2 {
  top: 119px;
  right: 76px;
  width: 214.984px;
  aspect-ratio: 214/164;
}

.p-contact__fv-illust-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 433.473px;
  aspect-ratio: 433/325;
}
@media screen and (max-width: 767px) {
  .p-contact__fv-illust-wrapper {
    left: calc(50% + 65px);
    translate: -50%;
  }
}

.p-contact__main-bg {
  background: #d9e2dd;
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
}

.p-contact__form {
  max-width: 960px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  border-radius: var(--Radius-M, 8px);
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 20px 6px var(--white, #fff) inset;
          box-shadow: 0 0 20px 6px var(--white, #fff) inset;
  padding: 64px 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding: 40px 12px;
    gap: 28px;
  }
}

.p-contact__row {
  max-width: 768px;
  width: 100%;
  margin-inline: auto;
}

.p-contact__head {
  color: var(--charcoal, #3c3c3c);
  /* Button */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}

.p-contact__head span.--must,
.p-contact__data-checkbox span.--must {
  position: relative;
  display: inline-block;
}
.p-contact__head span.--must::after,
.p-contact__data-checkbox span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 14px);
  display: inline-block;
  color: var(--white, #fff);
  border-radius: var(--Radius-S, 4px);
  background: var(--green, #5a8f82);
  padding: 2px 6px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}
.p-contact__data {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
}

.p-contact__data .wpcf7-form-control-wrap {
  display: block;
}

.p-contact__data input,
.p-contact__data textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
  background: transparent;
  border-radius: var(--Radius-S, 4px);
  border: 1px solid var(--charcoal, #3c3c3c);
}

.p-contact__data textarea {
  height: 180px;
  resize: vertical;
}

.p-contact__data input::-webkit-input-placeholder, .p-contact__data textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-contact__data input::-moz-placeholder, .p-contact__data textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-contact__data input:-ms-input-placeholder, .p-contact__data textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-contact__data input::-ms-input-placeholder, .p-contact__data textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-contact__data input::placeholder,
.p-contact__data textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-contact__data input:focus,
.p-contact__data textarea:focus {
  outline: none;
  border: 1px solid #5a8f82;
}

.p-contact__data:focus {
  outline: none;
  border-color: #5a8f82;
}

.p-contact__data input:focus::-webkit-input-placeholder, .p-contact__data textarea:focus::-webkit-input-placeholder {
  opacity: 0.3;
}

.p-contact__data input:focus::-moz-placeholder, .p-contact__data textarea:focus::-moz-placeholder {
  opacity: 0.3;
}

.p-contact__data input:focus:-ms-input-placeholder, .p-contact__data textarea:focus:-ms-input-placeholder {
  opacity: 0.3;
}

.p-contact__data input:focus::-ms-input-placeholder, .p-contact__data textarea:focus::-ms-input-placeholder {
  opacity: 0.3;
}

.p-contact__data input:focus::placeholder,
.p-contact__data textarea:focus::placeholder {
  opacity: 0.3;
}

.p-contact__acceptance {
  font-size: 14px;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-padding-end: 54px;
          padding-inline-end: 54px;
  position: relative;
}
@media (max-width: 360px) {
  .p-contact__acceptance {
    -webkit-padding-end: 40px;
            padding-inline-end: 40px;
  }
}
.p-contact__acceptance::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  right: 0;
  display: inline-block;
  color: var(--white, #fff);
  border-radius: var(--Radius-S, 4px);
  background: var(--green, #5a8f82);
  padding: 2px 6px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
}
@media (max-width: 360px) {
  .p-contact__acceptance::after {
    font-size: 14px;
    padding: 2px 4px;
  }
}

.wpcf7-list-item-label {
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  position: relative;
}
@media (max-width: 360px) {
  .wpcf7-list-item-label {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 2.5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
}
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 12px;
  rotate: 45deg;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-contact__data-checkbox a {
  color: var(--charcoal, #3c3c3c);
  /* Body/S */
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.56px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 5%; /* 0.7px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.wpcf7-list-item {
  margin: 0;
}

/* ←チェックされたら表示 */
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact__submit {
  margin-inline: auto;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #5a8f82;
}

.wpcf7-list-item-label {
  -webkit-padding-start: 26px;
          padding-inline-start: 26px;
}
@media (max-width: 360px) {
  .wpcf7-list-item-label {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
.wpcf7-list-item-label::before {
  width: 18px;
  height: 18px;
}

.p-privacy__hero-bg {
  background: var(--gradation, linear-gradient(180deg, #f1e8d9 0%, #d9e2dd 100%));
}

@media (max-width: 1130px) {
  .p-privacy .c-page-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.p-privacy__body-bg {
  background: var(--Bg-green, #d9e2dd);
}

.p-privacy__contents {
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
}

.p-privacy__contents-body {
  border-radius: var(--Radius-M, 8px);
  background: rgba(248, 247, 244, 0.3);
  padding: 64px 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: 24px;
}
@media screen and (max-width: 767px) {
  .p-privacy__contents-body {
    padding: 24px 12px;
  }
}
.p-privacy__contents-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-privacy__contents-block h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.76px;
}
@media screen and (max-width: 767px) {
  .p-privacy__contents-block h3 {
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}
.p-privacy__contents-block p {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.p-privacy__contents-block ul {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  list-style: disc;
}
.p-privacy__contents-block ul li {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.p-privacy__contents-block ol {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  list-style: decimal;
}
.p-privacy__contents-block ol li {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.p-privacy__contents-block a {
  font-size: 16px;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 5%; /* 0.8px */
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-about__work-style.l-section--sm {
  -webkit-padding-after: 150px;
          padding-block-end: 150px;
}

.p-about {
  overflow: hidden;
}

.p-about__fv-inner {
  position: relative;
  overflow-x: clip;
}

.p-about__fv-img1 {
  position: absolute;
  top: -260px;
  right: 0;
  width: 529px;
  aspect-ratio: 529/668;
}
@media screen and (max-width: 767px) {
  .p-about__fv-img1 {
    right: 50%;
    translate: 50% 0;
  }
}

.p-about__introduction {
  padding-block: 120px;
}

.p-about-introduction__illust {
  position: relative;
}
.p-about-introduction__illust .illust1 {
  position: absolute;
  top: -350px;
  left: calc(50% - 845px);
  z-index: 0;
  width: 1267px;
  aspect-ratio: 1267/1253;
}
.p-about-introduction__illust .illust1 img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-about-introduction__illust .illust2 {
  position: absolute;
  top: 300px;
  right: calc(50% - 550px);
  z-index: 0;
  width: 598px;
  aspect-ratio: 598/630;
}
.p-about-introduction__illust .illust2 img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-about__introduction-contents {
  width: min(800px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-contents {
    padding-inline: 0;
  }
}

.p-about__introduction-title {
  color: var(--orange, #d9ac6b);
  text-align: left;
  position: relative;
  z-index: 2;
  /* H2/PC */
  font-family: "Zen Kaku Gothic New";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .p-about__introduction-title {
    font-size: 28px;
    letter-spacing: 1.68px;
    text-align: center;
  }
}

.p-about__introduction-text-wrap {
  -webkit-margin-before: 40px;
          margin-block-start: 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: 1.8em;
  position: relative;
  z-index: 2;
}

.p-about__introduction-text {
  word-break: auto-phrase;
  color: var(--charcoal, #3c3c3c);
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}
.p-about__introduction-text span {
  font-weight: 700;
}

.p-about__strength {
  background: url(../img/bg-woodgrain.webp) repeat center center/contain;
}

.p-about__strength-items {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  width: min(696px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__strength-items {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0;
  }
}

.p-about__strength-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__strength-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.p-about__strength-item .text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
  position: relative;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .p-about__strength-item .text {
    font-size: 20px;
    text-align: center;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
  }
}
.p-about__strength-item .text span {
  color: var(--orange, #d9ac6b);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2.56px;
}
@media screen and (max-width: 767px) {
  .p-about__strength-item .text span {
    font-size: 26px;
    letter-spacing: 2.08px;
  }
}
@media (max-width: 340px) {
  .p-about__strength-item .text span {
    font-size: 24px;
  }
}
.p-about__strength-item .icon {
  width: 24px;
  height: 17px;
}
.p-about__strength-item .icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-about__work-style {
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e8d9), to(var(--off-white, #f8f7f4)));
  background: linear-gradient(180deg, #f1e8d9 0%, var(--off-white, #f8f7f4) 100%);
}

.p-about__work-style-contents {
  padding: 56px;
  border-radius: var(--Radius-M, 8px);
  border: 2px solid var(--white, #fff);
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .p-about__work-style-contents {
    padding: 12px;
    gap: 56px;
  }
}

.p-about__work-style-text {
  text-align: center;
  /* Body/M */
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}

.p-about__work-style-img-wrap {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1100px) {
  .p-about__work-style-img-wrap {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about__work-style-img {
  width: 100%;
  aspect-ratio: 516/232;
  border-radius: var(--Radius-S, 4px);
  background: url(<path-to-image>) lightgray -0.226px 0.548px/104.942% 100% no-repeat;
  position: relative;
  border: 8px solid #5a8f82;
  border-radius: 4px;
}
.p-about__work-style-img::after {
  content: "";
  position: absolute;
}
.p-about__work-style-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
}

.p-about__work-style-note {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .p-about__work-style-note {
    -webkit-margin-before: 56px;
            margin-block-start: 56px;
    font-size: 14px;
  }
}
.p-about__work-style-note span {
  color: #5a8f82;
}

.p-about__work-style-note-annotation {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .p-about__work-style-note-annotation {
    font-size: 14px;
  }
}

.p-about__life {
  background: var(--Bg-orange, #f1e8d9);
  position: relative;
}
.p-about__life .c-cta {
  margin-bottom: 0;
}
.p-about__life::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: url(../img/bg-cloud.png) no-repeat center center/cover;
}

.p-about__life-title .c-section-head {
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}

.p-about__life-title-sub {
  text-align: center;
  /* Body/L */
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.08px;
}

.p-about__life-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.96px;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__life-text {
    padding: 0;
  }
}

.p-about__life-item:nth-child(1) .p-about__life-text {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(1) .p-about__life-text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-about__life-item:nth-child(2) .p-about__life-text {
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(2) .p-about__life-text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.p-about__life-item:nth-child(3) .p-about__life-text {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  rotate: 5deg;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(3) .p-about__life-text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    rotate: 0deg;
  }
}

.p-about__life-items {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__life-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.p-about__life-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 372px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about__life-item {
    max-width: 100%;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 370px) {
  .p-about__life-item {
    gap: 36px;
  }
}
.p-about__life-item:nth-of-type(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about__life-img-card {
  padding: 16px;
  background: var(--white, #fff);
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__life-img-card {
    width: 372px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 374px) {
  .p-about__life-img-card {
    width: calc(100% + 10px);
  }
}
.p-about__life-img-card::after {
  content: "";
  position: absolute;
  width: 83px;
  height: 103px;
  aspect-ratio: 83/103;
  left: 0;
  bottom: -5px;
  background: url(../img/about-img_line.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-about__life-img-card::after {
    width: 65px;
    aspect-ratio: 65/80;
  }
}
@media (max-width: 370px) {
  .p-about__life-img-card::after {
    width: 50px;
  }
}
.p-about__life-img-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__life-item:nth-child(1) .p-about__life-img-card {
  rotate: 5deg;
}
.p-about__life-item:nth-child(1) .p-about__life-img-card::after {
  left: 0;
  bottom: -90px;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(1) .p-about__life-img-card::after {
    left: 10px;
    bottom: -50px;
  }
}

.p-about__life-item:nth-child(2) .p-about__life-img-card {
  rotate: -3deg;
}
.p-about__life-item:nth-child(2) .p-about__life-img-card::after {
  left: 17px;
  top: -60px;
  rotate: -18deg;
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(2) .p-about__life-img-card::after {
    top: auto;
    left: 10px;
    bottom: -30px;
  }
}

@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(3) .p-about__life-img-card {
    rotate: -5deg;
  }
}
.p-about__life-item:nth-child(3) .p-about__life-img-card::after {
  scale: -1 1;
  left: auto;
  right: -20px;
  bottom: -70px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (max-width: 767px) {
  .p-about__life-item:nth-child(3) .p-about__life-img-card::after {
    right: 15px;
    bottom: -40px;
  }
}

.p-about__life-img-card-text {
  margin-top: 16px;
  color: var(--orange, #d9ac6b);
  text-align: center;
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}

.p-thanks {
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
}

.p-thanks__contents {
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.p-thanks__head {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-thanks__head-en {
  color: var(--green, #5a8f82);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 4.8px;
  -webkit-padding-after: 4px;
          padding-block-end: 4px;
  position: relative;
}
.p-thanks__head-en::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: url(../img/line1.svg) repeat center center/contain;
  z-index: 2;
}

.p-thanks__head-ja {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  color: var(--green, #5a8f82);
  text-wrap: pretty;
  word-break: auto-phrase;
  /* H2/PC */
  font-size: 40px;
  font-weight: 700;
  line-height: 160%; /* 64px */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .p-thanks__head-ja {
    font-size: 28px;
    letter-spacing: 1.68px;
  }
}

.p-thanks__img {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  margin-inline: auto;
  width: 467px;
  aspect-ratio: 467/360;
}
.p-thanks__img img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-thanks__img {
    width: 100%;
  }
}

.p-tanks__text {
  color: var(--charcoal, #3c3c3c);
  text-align: center;
  text-wrap: pretty;
  word-break: auto-phrase;
  /* H3/PC */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
  .p-tanks__text {
    font-size: 20px;
    letter-spacing: 1.2px;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-font__jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-font__en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br--sp {
    display: block;
  }
}
.u-br--pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-br--pc {
    display: none;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-br {
    display: inline;
  }
}

.u-pc-br {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-pc-br {
    display: none;
  }
}

.u-thanks-br {
  display: none;
}
@media (max-width: 1040px) {
  .u-thanks-br {
    display: inline;
  }
}

.u-890-br {
  display: none;
}
@media (max-width: 890px) {
  .u-890-br {
    display: block;
  }
}

.u-820-br {
  display: none;
}
@media (max-width: 820px) {
  .u-820-br {
    display: block;
  }
}

.u-560-br {
  display: none;
}
@media (max-width: 560px) {
  .u-560-br {
    display: block;
  }
}

.u-500-br {
  display: none;
}
@media (max-width: 500px) {
  .u-500-br {
    display: block;
  }
}

@media (max-width: 660px) {
  .u-660-hide-br {
    display: none;
  }
}

.u-370-br {
  display: none;
}
@media (max-width: 370px) {
  .u-370-br {
    display: block;
  }
}

.u-350-br {
  display: none;
}
@media (max-width: 350px) {
  .u-350-br {
    display: block;
  }
}

@media (max-width: 360px) {
  .u-360-hide-br {
    display: none;
  }
}