@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -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,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

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

:root {
  --ls: 0.05em;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px; /* 固定ヘッダーの高さ + 余白 */
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #565956;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--ls-default);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.56;
}

body.is-fixed {
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  body.is-fixed {
    -ms-touch-action: none;
        touch-action: none;
  }
}

/* 初期状態：透明で下に30pxずれている */
.js-section-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* 画面に入ったら元の位置で不透明に */
.js-section-fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 576px) {
  .l-inner {
    max-width: 540px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 100%;
    padding-inline: clamp(2.5rem, 2.0196937596rem  +  2.0493066256vw, 3.33125rem);
  }
}
@media screen and (min-width: 1024px) {
  .l-inner {
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .l-inner {
    max-width: clamp(39.3333333333rem, 0rem  +  81.9444444444vw, 73.75rem);
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) {
  .l-inner {
    max-width: clamp(73.75rem, 0rem  +  81.9444444444vw, 98.3333333333rem);
  }
}
@media screen and (min-width: 1440px) {
  .l-inner {
    padding: 0;
  }
}
@media screen and (min-width: 1440px) and (min-width: 768px) {
  .l-inner {
    max-width: clamp(39.3333333333rem, 0rem  +  81.9444444444vw, 73.75rem);
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) {
  .l-inner {
    max-width: clamp(73.75rem, 0rem  +  81.9444444444vw, 98.3333333333rem);
  }
}

.c-btn {
  border-radius: 99999px;
  border: 1px solid #565956;
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 170px;
  text-align: center;
  text-decoration: none;
  padding-inline: 22px;
  padding-block: 8px;
  color: #565956;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035rem;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-heading__ja {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-align: center;
}

.c-heading__line {
  display: block;
  width: 160px;
  height: 1px;
  background: #565956;
}

.c-heading__en {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

.p-header {
  position: fixed;
  z-index: 100;
  background: #fff;
  width: 100%;
}

.p-header__sp {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 10px;
}

.p-header__logo-sp {
  width: 52px;
  aspect-ratio: 52/21;
}

.p-header__nav-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-padding-before: 3px;
          padding-block-start: 3px;
}

.p-header__lists-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  cursor: pointer;
  -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;
}
.p-header__lists-sp:hover {
  opacity: 0.7;
}

.p-header__list-sp {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035rem;
}
.p-header__icons-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-padding-after: 5px;
          padding-block-end: 5px;
}

.p-header__icon-sp {
  width: 24px;
  height: 24px;
}

.p-header__pc {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 12px;
}

.p-header__logo-pc {
  width: 113px;
  aspect-ratio: 113/45.5;
}

.p-header__nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-header__nav-pc {
    gap: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 1440px) {
  .p-header__nav-pc {
    gap: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}

.p-header__nav-menu-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-header__nav-menu-pc {
    gap: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 1440px) {
  .p-header__nav-menu-pc {
    gap: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-header__nav-menu-pc {
  -webkit-padding-before: 11px;
          padding-block-start: 11px;
}

.p-header__lists-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  cursor: pointer;
  -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;
}
.p-header__lists-pc:hover {
  opacity: 0.7;
}

.p-header__list-pc {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

.p-header__list-pc-customer {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

.p-header__button {
  -webkit-padding-before: 3px;
          padding-block-start: 3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-header__button:hover a {
  color: #fff;
  background: #565956;
  opacity: 1;
}

.p-header__icons-pc {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  -webkit-padding-before: 5px;
          padding-block-start: 5px;
}

.p-drawer__furniture-sp,
.p-drawer__electronics-sp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 48px;
  z-index: 2;
  display: none;
}
.p-drawer__furniture-sp.is-checked,
.p-drawer__electronics-sp.is-checked {
  display: block;
}

.p-drawer__bg-sp {
  width: 100%;
  height: 100%;
  background: rgba(86, 89, 86, 0.56);
}

.p-drawer__inner-sp {
  padding-inline: 16px;
  -webkit-padding-before: 8px;
          padding-block-start: 8px;
}

.p-drawer__container-sp {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.p-drawer__title-sp {
  font-weight: 700;
  letter-spacing: 0.04rem;
}

.p-drawer__menu-sp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 29px;
}

.is-active {
  border-bottom: 2px solid #609484;
}

.p-drawer__item-sp {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  -webkit-padding-after: 6px;
          padding-block-end: 6px;
  border-bottom: 2px solid #f2f4f1;
  cursor: pointer;
  position: relative;
  -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;
}
.p-drawer__item-sp::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #609484;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -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;
}
.p-drawer__item-sp.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-drawer__link-sp {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035rem;
}

.p-drawer__furniture-pc,
.p-drawer__electronics-pc {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 69.5px;
  z-index: 2;
  display: none;
}
.p-drawer__furniture-pc.is-checked,
.p-drawer__electronics-pc.is-checked {
  display: block;
}

.p-drawer__bg-pc {
  width: 100%;
  height: 100vh;
  background: rgba(86, 89, 86, 0.56);
}

.p-drawer__inner-pc {
  -webkit-padding-before: 18px;
          padding-block-start: 18px;
  padding-inline: 16px;
}

.p-drawer__container-pc {
  width: 1180px;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 8px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  padding-block: 24px;
  padding-inline: 40px;
}

.p-drawer__title-pc {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.p-drawer__menu-pc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 48px;
}

.p-drawer__item-pc {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  -webkit-padding-after: 6px;
          padding-block-end: 6px;
  border-bottom: 2px solid #f2f4f1;
  cursor: pointer;
  position: relative;
  -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;
}
.p-drawer__item-pc:hover a, .p-drawer__item-pc.is-active a {
  opacity: 0.7;
}
.p-drawer__item-pc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #609484;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -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;
}

.is-active {
  border-bottom: 2px solid #609484;
}

.p-drawer__link-pc {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

.js-drawer-furniture-open.is-active span svg,
.js-drawer-electronics-open.is-active span svg,
.js-drawer-furniture-open-pc.is-active span svg,
.js-drawer-electronics-open-pc.is-active span svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-mv {
  position: relative;
  height: clamp(46.375rem, 0rem  +  197.8666666667vw, 71.1083333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv {
    height: clamp(15.8666666667rem, 0rem  +  33.0555555556vw, 29.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv {
    height: clamp(29.75rem, 0rem  +  33.0555555556vw, 39.6666666667rem);
  }
}
.p-mv {
  width: 100%;
  background: url(../img/mv__img-sp.webp) no-repeat center center/cover;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background: url(../img/mv__img-pc.webp) no-repeat center center/cover;
  }
}

.p-mv__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: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__inner {
    gap: clamp(0.7666666667rem, 0rem  +  1.5972222222vw, 1.4375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__inner {
    gap: clamp(1.4375rem, 0rem  +  1.5972222222vw, 1.9166666667rem);
  }
}

.p-mv__head {
  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: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__head {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__head {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__title {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__title {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-mv__title {
  padding-inline: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__title {
    padding-inline: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__title {
    padding-inline: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-mv__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  font-size: clamp(1.75rem, 0rem  +  7.4666666667vw, 2.6833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__title {
    font-size: clamp(1.3333333333rem, 0rem  +  2.7777777778vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__title {
    font-size: clamp(2.5rem, 0rem  +  2.7777777778vw, 3.3333333333rem);
  }
}
.p-mv__title {
  font-weight: 700;
  letter-spacing: 0.07rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    letter-spacing: 0.1rem;
  }
}

.p-mv__subtitle {
  width: clamp(20.6875rem, 0rem  +  88.2666666667vw, 31.7208333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__subtitle {
    width: clamp(16.3333333333rem, 0rem  +  34.0277777778vw, 30.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__subtitle {
    width: clamp(30.625rem, 0rem  +  34.0277777778vw, 40.8333333333rem);
  }
}
.p-mv__subtitle {
  display: inline-block;
  padding-block: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__subtitle {
    padding-block: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__subtitle {
    padding-block: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-mv__subtitle {
  -webkit-padding-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-inline-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
  -webkit-padding-end: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-inline-end: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__subtitle {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__subtitle {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-mv__subtitle {
  font-weight: 700;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) {
  .p-mv__subtitle {
    letter-spacing: 0.06rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__subtitle {
    -webkit-padding-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
            padding-inline-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__subtitle {
    -webkit-padding-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
            padding-inline-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-mv__subtitle {
    -webkit-padding-end: clamp(0.7666666667rem, 0rem  +  1.5972222222vw, 1.4375rem);
            padding-inline-end: clamp(0.7666666667rem, 0rem  +  1.5972222222vw, 1.4375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-mv__subtitle {
    -webkit-padding-end: clamp(1.4375rem, 0rem  +  1.5972222222vw, 1.9166666667rem);
            padding-inline-end: clamp(1.4375rem, 0rem  +  1.5972222222vw, 1.9166666667rem);
  }
}

.p-cta {
  background: #f2f4f1;
  -webkit-padding-before: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-start: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta {
    -webkit-padding-before: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
            padding-block-start: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta {
    -webkit-padding-before: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
            padding-block-start: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
.p-cta {
  -webkit-padding-after: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-end: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta {
    -webkit-padding-after: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
            padding-block-end: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta {
    -webkit-padding-after: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
            padding-block-end: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
@media screen and (min-width: 768px) {
  .p-cta {
    background: url(../img/cta__bg-pc.webp) no-repeat center center/cover;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta {
    height: clamp(16.6666666667rem, 0rem  +  34.7222222222vw, 31.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta {
    height: clamp(31.25rem, 0rem  +  34.7222222222vw, 41.6666666667rem);
  }
}

@media screen and (min-width: 768px) {
  .p-cta__inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__inner {
    max-width: clamp(33.7333333333rem, 0rem  +  70.2777777778vw, 63.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__inner {
    max-width: clamp(63.25rem, 0rem  +  70.2777777778vw, 84.3333333333rem);
  }
}

.p-cta__container {
  -webkit-padding-before: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
          padding-block-start: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    -webkit-padding-before: clamp(1.8333333333rem, 0rem  +  3.8194444444vw, 3.4375rem);
            padding-block-start: clamp(1.8333333333rem, 0rem  +  3.8194444444vw, 3.4375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    -webkit-padding-before: clamp(3.4375rem, 0rem  +  3.8194444444vw, 4.5833333333rem);
            padding-block-start: clamp(3.4375rem, 0rem  +  3.8194444444vw, 4.5833333333rem);
  }
}
.p-cta__container {
  -webkit-padding-after: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
          padding-block-end: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    -webkit-padding-after: clamp(1.8666666667rem, 0rem  +  3.8888888889vw, 3.5rem);
            padding-block-end: clamp(1.8666666667rem, 0rem  +  3.8888888889vw, 3.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    -webkit-padding-after: clamp(3.5rem, 0rem  +  3.8888888889vw, 4.6666666667rem);
            padding-block-end: clamp(3.5rem, 0rem  +  3.8888888889vw, 4.6666666667rem);
  }
}
.p-cta__container {
  -webkit-padding-start: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
          padding-inline-start: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    -webkit-padding-start: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
            padding-inline-start: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    -webkit-padding-start: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
            padding-inline-start: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}
.p-cta__container {
  -webkit-padding-end: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
          padding-inline-end: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    -webkit-padding-end: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
            padding-inline-end: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    -webkit-padding-end: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
            padding-inline-end: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}
.p-cta__container {
  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: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    gap: clamp(1.8666666667rem, 0rem  +  3.8888888889vw, 3.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    gap: clamp(3.5rem, 0rem  +  3.8888888889vw, 4.6666666667rem);
  }
}
.p-cta__container {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 16px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-cta__container {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__container {
    max-width: clamp(24rem, 0rem  +  50vw, 45rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__container {
    max-width: clamp(45rem, 0rem  +  50vw, 60rem);
  }
}

.p-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__content {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__content {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-cta__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.p-cta__textbox {
  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: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__textbox {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__textbox {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__textbox {
    position: relative;
  }
}

.p-cta__label {
  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;
  background: #565956;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  letter-spacing: 0.04rem;
  width: clamp(5.125rem, 0rem  +  21.8666666667vw, 7.8583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__label {
    width: clamp(2.7333333333rem, 0rem  +  5.6944444444vw, 5.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__label {
    width: clamp(5.125rem, 0rem  +  5.6944444444vw, 6.8333333333rem);
  }
}
@media screen and (min-width: 768px) {
  .p-cta__label {
    position: absolute;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__label {
    left: clamp(-2.5625rem, 0rem  +  -2.8472222222vw, -1.3666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__label {
    left: clamp(-3.4166666667rem, 0rem  +  -2.8472222222vw, -2.5625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__label {
    top: clamp(-0.75rem, 0rem  +  -0.8333333333vw, -0.4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__label {
    top: clamp(-1rem, 0rem  +  -0.8333333333vw, -0.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__label {
    font-size: clamp(0.75rem, 0.4642857143rem  +  0.5952380952vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__label {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-cta__lead {
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) {
  .p-cta__lead {
    letter-spacing: 0.06rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__lead {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__lead {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}

.p-cta__text {
  text-align: center;
  font-size: clamp(1.75rem, 0rem  +  7.4666666667vw, 2.6833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__text {
    font-size: clamp(0.9333333333rem, 0rem  +  1.9444444444vw, 1.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__text {
    font-size: clamp(1.75rem, 0rem  +  1.9444444444vw, 2.3333333333rem);
  }
}
.p-cta__text {
  font-weight: 700;
  letter-spacing: 0.07rem;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    letter-spacing: 0.04rem;
  }
}

.p-cta__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__features {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__features {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-cta__features {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta__features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-cta__features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-block: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__features-item {
    padding-block: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__features-item {
    padding-block: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-cta__features-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  background: #565956;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04rem;
  width: 100%;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__features-item {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__features-item {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-cta__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.875rem, 0rem  +  8vw, 2.875rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__action {
    gap: clamp(1.2333333333rem, 0rem  +  2.5694444444vw, 2.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__action {
    gap: clamp(2.3125rem, 0rem  +  2.5694444444vw, 3.0833333333rem);
  }
}
.p-cta__action {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-cta__action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-cta__note {
  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;
  background: #f2f4f1;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__note {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__note {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-cta__note {
  font-weight: 700;
  letter-spacing: 0.05rem;
  width: clamp(16.25rem, 0rem  +  69.3333333333vw, 24.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__note {
    width: clamp(8.6666666667rem, 0rem  +  18.0555555556vw, 16.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__note {
    width: clamp(16.25rem, 0rem  +  18.0555555556vw, 21.6666666667rem);
  }
}
.p-cta__note {
  padding-block: clamp(0.9375rem, 0rem  +  4vw, 1.4375rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__note {
    padding-block: clamp(0.5rem, 0rem  +  1.0416666667vw, 0.9375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__note {
    padding-block: clamp(0.9375rem, 0rem  +  1.0416666667vw, 1.25rem);
  }
}

.p-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn {
    padding-block: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn {
    padding-block: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-cta__btn {
  padding-inline: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn {
    padding-inline: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn {
    padding-inline: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-cta__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn {
    gap: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn {
    gap: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-cta__btn {
  border-radius: 16px;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    width: auto;
  }
}

.p-cta__btn-text {
  color: #fff;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn-text {
    font-size: clamp(0.75rem, 0.1785714286rem  +  1.1904761905vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn-text {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}

.p-cta__btn-arrow img {
  width: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn-arrow img {
    width: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn-arrow img {
    width: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-cta__btn-arrow img {
  height: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn-arrow img {
    height: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn-arrow img {
    height: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-cta__btn-arrow img {
  -webkit-padding-after: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
          padding-block-end: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-cta__btn-arrow img {
    -webkit-padding-after: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
            padding-block-end: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-cta__btn-arrow img {
    -webkit-padding-after: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
            padding-block-end: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
  }
}

.benefit {
  -webkit-padding-before: clamp(5.375rem, 0rem  +  22.9333333333vw, 8.2416666667rem);
          padding-block-start: clamp(5.375rem, 0rem  +  22.9333333333vw, 8.2416666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .benefit {
    -webkit-padding-before: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
            padding-block-start: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .benefit {
    -webkit-padding-before: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
            padding-block-start: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
  }
}
.benefit {
  -webkit-padding-after: clamp(5.5rem, 0rem  +  23.4666666667vw, 8.4333333333rem);
          padding-block-end: clamp(5.5rem, 0rem  +  23.4666666667vw, 8.4333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .benefit {
    -webkit-padding-after: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
            padding-block-end: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .benefit {
    -webkit-padding-after: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
            padding-block-end: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
  }
}

.p-benefit__container {
  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: clamp(4rem, 0rem  +  17.0666666667vw, 6.1333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__container {
    gap: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__container {
    gap: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}

.p-benefit__line {
  width: clamp(10rem, 0rem  +  42.6666666667vw, 15.3333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__line {
    width: clamp(5.3333333333rem, 0rem  +  11.1111111111vw, 10rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__line {
    width: clamp(10rem, 0rem  +  11.1111111111vw, 13.3333333333rem);
  }
}

.p-benefit__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-benefit__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-benefit__item {
  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-benefit__label {
  text-align: center;
  background: #948260;
  width: clamp(9.125rem, 0rem  +  38.9333333333vw, 13.9916666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__label {
    width: clamp(4.8666666667rem, 0rem  +  10.1388888889vw, 9.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__label {
    width: clamp(9.125rem, 0rem  +  10.1388888889vw, 12.1666666667rem);
  }
}
.p-benefit__label {
  padding-inline: clamp(0.625rem, 0rem  +  2.6666666667vw, 0.9583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__label {
    padding-inline: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__label {
    padding-inline: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
.p-benefit__label {
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__label {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__label {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-benefit__label {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__label {
    font-size: clamp(0.75rem, 0.1785714286rem  +  1.1904761905vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__label {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}

.p-benefit__img {
  width: clamp(10.5rem, 0rem  +  44.8vw, 16.1rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__img {
    width: clamp(5.6rem, 0rem  +  11.6666666667vw, 10.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__img {
    width: clamp(10.5rem, 0rem  +  11.6666666667vw, 14rem);
  }
}
.p-benefit__img {
  aspect-ratio: 168/168;
}

.p-benefit__text {
  width: clamp(10.5rem, 0rem  +  44.8vw, 16.1rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__text {
    width: clamp(5.6rem, 0rem  +  11.6666666667vw, 10.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__text {
    width: clamp(10.5rem, 0rem  +  11.6666666667vw, 14rem);
  }
}
.p-benefit__text {
  text-align: center;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-weight: 500;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-benefit__text {
    font-size: clamp(0.75rem, 0.4642857143rem  +  0.5952380952vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-benefit__text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-ad {
  background: url(../img/ad__bg-sp.webp) no-repeat center center/cover;
  -webkit-padding-before: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
          padding-block-start: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad {
    -webkit-padding-before: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
            padding-block-start: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad {
    -webkit-padding-before: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
            padding-block-start: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
  }
}
.p-ad {
  -webkit-padding-after: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
          padding-block-end: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad {
    -webkit-padding-after: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
            padding-block-end: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad {
    -webkit-padding-after: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
            padding-block-end: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
  }
}
.p-ad {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ad {
    background: url(../img/ad__bg-pc.webp) no-repeat center center/cover;
    width: 100%;
  }
}

.p-ad__container {
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-ad__container {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container {
    max-width: clamp(25.2666666667rem, 0rem  +  52.6388888889vw, 47.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container {
    max-width: clamp(47.375rem, 0rem  +  52.6388888889vw, 63.1666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container {
    height: clamp(6.7666666667rem, 0rem  +  14.0972222222vw, 12.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container {
    height: clamp(12.6875rem, 0rem  +  14.0972222222vw, 16.9166666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container {
    -webkit-padding-before: clamp(1.1833333333rem, 0rem  +  2.4652777778vw, 2.21875rem);
            padding-block-start: clamp(1.1833333333rem, 0rem  +  2.4652777778vw, 2.21875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container {
    -webkit-padding-before: clamp(2.21875rem, 0rem  +  2.4652777778vw, 2.9583333333rem);
            padding-block-start: clamp(2.21875rem, 0rem  +  2.4652777778vw, 2.9583333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container {
    -webkit-padding-after: clamp(1.1833333333rem, 0rem  +  2.4652777778vw, 2.21875rem);
            padding-block-end: clamp(1.1833333333rem, 0rem  +  2.4652777778vw, 2.21875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container {
    -webkit-padding-after: clamp(2.21875rem, 0rem  +  2.4652777778vw, 2.9583333333rem);
            padding-block-end: clamp(2.21875rem, 0rem  +  2.4652777778vw, 2.9583333333rem);
  }
}
.p-ad__container::before {
  content: "";
  position: absolute;
  background: url(../img/ad__img-left-sp.webp) no-repeat center center/contain;
  width: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
  height: clamp(4.5818125rem, 0rem  +  19.5490666667vw, 7.0254458333rem);
  left: clamp(0.125rem, 0rem  +  0.5333333333vw, 0.1916666667rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container::before {
    width: clamp(5.2666666667rem, 0rem  +  10.9722222222vw, 9.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container::before {
    width: clamp(9.875rem, 0rem  +  10.9722222222vw, 13.1666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container::before {
    height: clamp(6.7666666667rem, 0rem  +  14.0972222222vw, 12.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container::before {
    height: clamp(12.6875rem, 0rem  +  14.0972222222vw, 16.9166666667rem);
  }
}
.p-ad__container::after {
  content: "";
  position: absolute;
  background: url(../img/ad__img-right-sp.webp) no-repeat center center/contain;
  width: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
  height: clamp(4.5818125rem, 0rem  +  19.5490666667vw, 7.0254458333rem);
  right: clamp(0.125rem, 0rem  +  0.5333333333vw, 0.1916666667rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container::after {
    width: clamp(5.2666666667rem, 0rem  +  10.9722222222vw, 9.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container::after {
    width: clamp(9.875rem, 0rem  +  10.9722222222vw, 13.1666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__container::after {
    height: clamp(6.7666666667rem, 0rem  +  14.0972222222vw, 12.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__container::after {
    height: clamp(12.6875rem, 0rem  +  14.0972222222vw, 16.9166666667rem);
  }
}

.p-ad__lead {
  text-align: center;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-weight: 700;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) {
  .p-ad__lead {
    letter-spacing: 0.06rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__lead {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__lead {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}

.p-ad__text {
  font-size: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .p-ad__text {
    letter-spacing: 0.16rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-ad__text {
    font-size: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-ad__text {
    font-size: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}

.p-voice {
  -webkit-padding-before: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
          padding-block-start: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice {
    -webkit-padding-before: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
            padding-block-start: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice {
    -webkit-padding-before: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
            padding-block-start: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
  }
}
.p-voice {
  -webkit-padding-after: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-end: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice {
    -webkit-padding-after: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
            padding-block-end: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice {
    -webkit-padding-after: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
            padding-block-end: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
  }
}

@media screen and (min-width: 768px) {
  .p-voice__inner {
    padding-inline: 0;
  }
}

.p-voice__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(4rem, 0rem  +  17.0666666667vw, 6.1333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__container {
    gap: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__container {
    gap: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}

.p-voice__ja {
  -webkit-padding-end: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
          padding-inline-end: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__ja {
    -webkit-padding-end: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
            padding-inline-end: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__ja {
    -webkit-padding-end: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
            padding-inline-end: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
  }
}

.p-voice__line {
  width: clamp(10rem, 0rem  +  42.6666666667vw, 15.3333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__line {
    width: clamp(5.3333333333rem, 0rem  +  11.1111111111vw, 10rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__line {
    width: clamp(10rem, 0rem  +  11.1111111111vw, 13.3333333333rem);
  }
}

.p-voice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-voice__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: auto;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-voice__item {
    max-width: 393px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__item {
    max-width: clamp(13.1rem, 0rem  +  27.2916666667vw, 24.5625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__item {
    max-width: clamp(24.5625rem, 0rem  +  27.2916666667vw, 32.75rem);
  }
}

.p-voice__img-wrapper {
  position: relative;
}

.p-voice__label {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(7.6875rem, 0rem  +  32.8vw, 11.7875rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__label {
    width: clamp(4.1rem, 0rem  +  8.5416666667vw, 7.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__label {
    width: clamp(7.6875rem, 0rem  +  8.5416666667vw, 10.25rem);
  }
}
.p-voice__label {
  padding-inline: clamp(0.625rem, 0rem  +  2.6666666667vw, 0.9583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__label {
    padding-inline: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__label {
    padding-inline: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
.p-voice__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__label {
    padding-block: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__label {
    padding-block: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-voice__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #609484;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-weight: 600;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__label {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__label {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-voice__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #f2f4f1;
  padding-block: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__content {
    padding-block: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__content {
    padding-block: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-voice__content {
  padding-inline: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__content {
    padding-inline: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__content {
    padding-inline: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__content {
    gap: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__content {
    gap: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-voice__content--wh {
  background: #fff;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__content {
    padding-inline: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__content {
    padding-inline: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}

.p-voice__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}

.p-voice__title-main {
  padding-inline: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main {
    padding-inline: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main {
    padding-inline: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
  }
}
.p-voice__title-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-voice__title-main {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #948260;
  color: #fff;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-voice__title-main {
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.p-voice__title-main1 {
  width: clamp(12.9375rem, 0rem  +  55.2vw, 19.8375rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main1 {
    width: clamp(6.9rem, 0rem  +  14.375vw, 12.9375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main1 {
    width: clamp(12.9375rem, 0rem  +  14.375vw, 17.25rem);
  }
}

.p-voice__title-main2 {
  width: clamp(14.25rem, 0rem  +  60.8vw, 21.85rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main2 {
    width: clamp(7.6rem, 0rem  +  15.8333333333vw, 14.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main2 {
    width: clamp(14.25rem, 0rem  +  15.8333333333vw, 19rem);
  }
}

.p-voice__title-main3 {
  width: clamp(18.125rem, 0rem  +  77.3333333333vw, 27.7916666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-main3 {
    width: clamp(9.6666666667rem, 0rem  +  20.1388888889vw, 18.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-main3 {
    width: clamp(18.125rem, 0rem  +  20.1388888889vw, 24.1666666667rem);
  }
}

.p-voice__title-sub {
  padding-inline: clamp(0.3125rem, 0rem  +  1.3333333333vw, 0.4791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub {
    padding-inline: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub {
    padding-inline: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
  }
}
.p-voice__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-voice__title-sub {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #948260;
  color: #fff;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
  font-weight: 700;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub {
    font-size: clamp(0.75rem, 0.1785714286rem  +  1.1904761905vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}

.p-voice__title-sub1 {
  width: clamp(15.5rem, 0rem  +  66.1333333333vw, 23.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub1 {
    width: clamp(8.2666666667rem, 0rem  +  17.2222222222vw, 15.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub1 {
    width: clamp(15.5rem, 0rem  +  17.2222222222vw, 20.6666666667rem);
  }
}

.p-voice__title-sub2 {
  width: clamp(16.8125rem, 0rem  +  71.7333333333vw, 25.7791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub2 {
    width: clamp(8.9666666667rem, 0rem  +  18.6805555556vw, 16.8125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub2 {
    width: clamp(16.8125rem, 0rem  +  18.6805555556vw, 22.4166666667rem);
  }
}

.p-voice__title-sub3 {
  width: clamp(11.625rem, 0rem  +  49.6vw, 17.825rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__title-sub3 {
    width: clamp(6.2rem, 0rem  +  12.9166666667vw, 11.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__title-sub3 {
    width: clamp(11.625rem, 0rem  +  12.9166666667vw, 15.5rem);
  }
}

.p-voice__text {
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-weight: 500;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__text {
    font-size: clamp(0.75rem, 0.4642857143rem  +  0.5952380952vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__text {
    min-height: clamp(7.6666666667rem, 0rem  +  15.9722222222vw, 14.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__text {
    min-height: clamp(14.375rem, 0rem  +  15.9722222222vw, 19.1666666667rem);
  }
}

.p-voice__info {
  margin-top: auto;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-weight: 500;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__info {
    font-size: clamp(0.75rem, 0.4642857143rem  +  0.5952380952vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__info {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-voice__info {
    -webkit-margin-before: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
            margin-block-start: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-voice__info {
    -webkit-margin-before: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
            margin-block-start: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}

.p-solution {
  -webkit-padding-before: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
          padding-block-start: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution {
    -webkit-padding-before: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
            padding-block-start: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution {
    -webkit-padding-before: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
            padding-block-start: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
  }
}
.p-solution {
  -webkit-padding-after: clamp(7rem, 0rem  +  29.8666666667vw, 10.7333333333rem);
          padding-block-end: clamp(7rem, 0rem  +  29.8666666667vw, 10.7333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution {
    -webkit-padding-after: clamp(3.7333333333rem, 0rem  +  7.7777777778vw, 7rem);
            padding-block-end: clamp(3.7333333333rem, 0rem  +  7.7777777778vw, 7rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution {
    -webkit-padding-after: clamp(7rem, 0rem  +  7.7777777778vw, 9.3333333333rem);
            padding-block-end: clamp(7rem, 0rem  +  7.7777777778vw, 9.3333333333rem);
  }
}
.p-solution {
  background: url(../img/solution__bg-sp.webp) no-repeat center center/cover;
  height: clamp(97.75rem, 0rem  +  417.0666666667vw, 149.8833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution {
    height: clamp(30.1333333333rem, 0rem  +  62.7777777778vw, 56.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution {
    height: clamp(56.5rem, 0rem  +  62.7777777778vw, 75.3333333333rem);
  }
}
.p-solution {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution {
    background: url(../img/solution__bg-pc.webp) no-repeat center center/cover;
  }
}
.p-solution::after {
  content: "";
  position: absolute;
  background: url(../img/solution__img-sp.webp) no-repeat center center/contain;
  bottom: clamp(-18.4958333333rem, 0rem  +  -51.4666666667vw, -12.0625rem);
  width: clamp(21.4375rem, 0rem  +  91.4666666667vw, 32.8708333333rem);
  height: clamp(15.625rem, 0rem  +  66.6666666667vw, 23.9583333333rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-solution::after {
    background: url(../img/solution__img-pc.webp) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution::after {
    width: clamp(39.3333333333rem, 0rem  +  81.9444444444vw, 73.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution::after {
    width: clamp(73.75rem, 0rem  +  81.9444444444vw, 98.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution::after {
    height: clamp(4.3333333333rem, 0rem  +  9.0277777778vw, 8.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution::after {
    height: clamp(8.125rem, 0rem  +  9.0277777778vw, 10.8333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution::after {
    bottom: clamp(-6.875rem, 0rem  +  -7.6388888889vw, -3.6666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution::after {
    bottom: clamp(-9.1666666667rem, 0rem  +  -7.6388888889vw, -6.875rem);
  }
}

.p-solution__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__container {
    gap: clamp(2.1666666667rem, 0rem  +  4.5138888889vw, 4.0625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__container {
    gap: clamp(4.0625rem, 0rem  +  4.5138888889vw, 5.4166666667rem);
  }
}
.p-solution__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__items {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__items {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}

.p-solution__item {
  padding-block: clamp(1.75rem, 0rem  +  7.4666666667vw, 2.6833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__item {
    padding-block: clamp(0.9333333333rem, 0rem  +  1.9444444444vw, 1.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__item {
    padding-block: clamp(1.75rem, 0rem  +  1.9444444444vw, 2.3333333333rem);
  }
}
.p-solution__item {
  padding-inline: clamp(3.125rem, 0rem  +  13.3333333333vw, 4.7916666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__item {
    padding-inline: clamp(1.6666666667rem, 0rem  +  3.4722222222vw, 3.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__item {
    padding-inline: clamp(3.125rem, 0rem  +  3.4722222222vw, 4.1666666667rem);
  }
}
.p-solution__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__item {
    gap: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__item {
    gap: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-solution__item {
  border-radius: 32px;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .p-solution__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}

.p-sulution__check {
  width: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-sulution__check {
    width: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-sulution__check {
    width: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-sulution__check {
  height: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-sulution__check {
    height: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-sulution__check {
    height: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}

.p-solution__text {
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
  font-weight: 500;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__text {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__text {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}

.p-solution__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: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-solution__wrapper {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-solution__wrapper {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
@media screen and (min-width: 768px) {
  .p-solution__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-introduction {
  -webkit-padding-before: clamp(14.75rem, 0rem  +  62.9333333333vw, 22.6166666667rem);
          padding-block-start: clamp(14.75rem, 0rem  +  62.9333333333vw, 22.6166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction {
    -webkit-padding-before: clamp(4.6666666667rem, 0rem  +  9.7222222222vw, 8.75rem);
            padding-block-start: clamp(4.6666666667rem, 0rem  +  9.7222222222vw, 8.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction {
    -webkit-padding-before: clamp(8.75rem, 0rem  +  9.7222222222vw, 11.6666666667rem);
            padding-block-start: clamp(8.75rem, 0rem  +  9.7222222222vw, 11.6666666667rem);
  }
}
.p-introduction {
  -webkit-padding-after: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-end: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction {
    -webkit-padding-after: clamp(3.8rem, 0rem  +  7.9166666667vw, 7.125rem);
            padding-block-end: clamp(3.8rem, 0rem  +  7.9166666667vw, 7.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction {
    -webkit-padding-after: clamp(7.125rem, 0rem  +  7.9166666667vw, 9.5rem);
            padding-block-end: clamp(7.125rem, 0rem  +  7.9166666667vw, 9.5rem);
  }
}
.p-introduction {
  position: relative;
}
.p-introduction::before {
  content: "";
  position: absolute;
  background: #f2f4f1;
  width: 100%;
  height: clamp(123.875rem, 0rem  +  528.5333333333vw, 189.9416666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction::before {
    height: clamp(45.6333333333rem, 0rem  +  95.0694444444vw, 85.5625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction::before {
    height: clamp(85.5625rem, 0rem  +  95.0694444444vw, 114.0833333333rem);
  }
}
.p-introduction::before {
  top: clamp(55.1875rem, 0rem  +  235.4666666667vw, 84.6208333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction::before {
    top: clamp(16.1333333333rem, 0rem  +  33.6111111111vw, 30.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction::before {
    top: clamp(30.25rem, 0rem  +  33.6111111111vw, 40.3333333333rem);
  }
}
.p-introduction::before {
  z-index: -1;
}
.p-introduction::after {
  content: "";
  position: absolute;
  background: #f2f4f1;
  width: 100%;
  height: clamp(85.1875rem, 0rem  +  363.4666666667vw, 130.6208333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction::after {
    height: clamp(45.6333333333rem, 0rem  +  95.0694444444vw, 85.5625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction::after {
    height: clamp(85.5625rem, 0rem  +  95.0694444444vw, 114.0833333333rem);
  }
}
.p-introduction::after {
  bottom: clamp(41rem, 0rem  +  174.9333333333vw, 62.8666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction::after {
    bottom: clamp(9.3333333333rem, 0rem  +  19.4444444444vw, 17.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction::after {
    bottom: clamp(17.5rem, 0rem  +  19.4444444444vw, 23.3333333333rem);
  }
}
.p-introduction::after {
  z-index: -1;
}
.p-introduction__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.5625rem, 0rem  +  10.9333333333vw, 3.9291666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__container {
    gap: clamp(3.0333333333rem, 0rem  +  6.3194444444vw, 5.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__container {
    gap: clamp(5.6875rem, 0rem  +  6.3194444444vw, 7.5833333333rem);
  }
}
.p-introduction__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-introduction__scenes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(4.6875rem, 0rem  +  20vw, 7.1875rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scenes {
    gap: clamp(5.4333333333rem, 0rem  +  11.3194444444vw, 10.1875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scenes {
    gap: clamp(10.1875rem, 0rem  +  11.3194444444vw, 13.5833333333rem);
  }
}
.p-introduction__scene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(4.875rem, 0rem  +  20.8vw, 7.475rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scene {
    gap: clamp(2.6rem, 0rem  +  5.4166666667vw, 4.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scene {
    gap: clamp(4.875rem, 0rem  +  5.4166666667vw, 6.5rem);
  }
}

.p-introduction__scene-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scene-top {
    gap: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scene-top {
    gap: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
.p-introduction__scene-img-main {
  position: relative;
}

.p-introduction__scene-label {
  position: absolute;
  top: clamp(-1.0541666667rem, 0rem  +  -2.9333333333vw, -0.6875rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scene-label {
    top: clamp(-1.75rem, 0rem  +  -1.9444444444vw, -0.9333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scene-label {
    top: clamp(-2.3333333333rem, 0rem  +  -1.9444444444vw, -1.75rem);
  }
}
.p-introduction__scene-label {
  left: clamp(0.75rem, 0rem  +  3.2vw, 1.15rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scene-label {
    left: clamp(1.3rem, 0rem  +  2.7083333333vw, 2.4375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scene-label {
    left: clamp(2.4375rem, 0rem  +  2.7083333333vw, 3.25rem);
  }
}
.p-introduction__scene-label {
  font-family: "Jost", sans-serif;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__scene-label {
    font-size: clamp(1.3333333333rem, 0rem  +  2.7777777778vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__scene-label {
    font-size: clamp(2.5rem, 0rem  +  2.7777777778vw, 3.3333333333rem);
  }
}
.p-introduction__scene-label {
  font-weight: 600;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__scene-label {
    letter-spacing: 0.1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-introduction__scene-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .p-introduction__scene-body--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-introduction__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__content {
    padding-inline: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__content {
    padding-inline: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}
.p-introduction__content {
  -webkit-padding-after: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
          padding-block-end: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
  background: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__content {
    padding-block: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__content {
    padding-block: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__content {
    width: clamp(20.6rem, 0rem  +  42.9166666667vw, 38.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__content {
    width: clamp(38.625rem, 0rem  +  42.9166666667vw, 51.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__content--short {
    width: clamp(19.6rem, 0rem  +  40.8333333333vw, 36.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__content--short {
    width: clamp(36.75rem, 0rem  +  40.8333333333vw, 49rem);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__titlebox {
    width: clamp(16.3333333333rem, 0rem  +  34.0277777778vw, 30.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__titlebox {
    width: clamp(30.625rem, 0rem  +  34.0277777778vw, 40.8333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__titlebox--short {
    width: clamp(13.8333333333rem, 0rem  +  28.8194444444vw, 25.9375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__titlebox--short {
    width: clamp(25.9375rem, 0rem  +  28.8194444444vw, 34.5833333333rem);
  }
}

.p-introduction__title1 {
  background: #948260;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1 {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1 {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-introduction__title1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(13.4375rem, 0rem  +  57.3333333333vw, 20.6041666667rem);
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1 {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1 {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__title1 {
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__title1 {
    width: auto;
  }
}

.p-introduction__title1-sp {
  background: #948260;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1-sp {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1-sp {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-introduction__title1-sp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(18.125rem, 0rem  +  77.3333333333vw, 27.7916666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1-sp {
    width: clamp(9.6666666667rem, 0rem  +  20.1388888889vw, 18.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1-sp {
    width: clamp(18.125rem, 0rem  +  20.1388888889vw, 24.1666666667rem);
  }
}
.p-introduction__title1-sp {
  -webkit-margin-before: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
          margin-block-start: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1-sp {
    -webkit-margin-before: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
            margin-block-start: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1-sp {
    -webkit-margin-before: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
            margin-block-start: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-introduction__title1-sp {
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title1-sp {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title1-sp {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__title1-sp {
  font-weight: 700;
  letter-spacing: 0.06rem;
}

.p-introduction__title2 {
  background: #948260;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2 {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2 {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-introduction__title2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(15rem, 0rem  +  64vw, 23rem);
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2 {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2 {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__title2 {
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__title2 {
    width: auto;
  }
}

.p-introduction__title2-sp {
  background: #948260;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2-sp {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2-sp {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-introduction__title2-sp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(11.875rem, 0rem  +  50.6666666667vw, 18.2083333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2-sp {
    width: clamp(6.3333333333rem, 0rem  +  13.1944444444vw, 11.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2-sp {
    width: clamp(11.875rem, 0rem  +  13.1944444444vw, 15.8333333333rem);
  }
}
.p-introduction__title2-sp {
  -webkit-margin-before: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
          margin-block-start: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2-sp {
    -webkit-margin-before: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
            margin-block-start: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2-sp {
    -webkit-margin-before: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
            margin-block-start: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-introduction__title2-sp {
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__title2-sp {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__title2-sp {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__title2-sp {
  font-weight: 700;
  letter-spacing: 0.06rem;
}

.p-introduction__item {
  -webkit-margin-before: clamp(2.25rem, 0rem  +  9.6vw, 3.45rem);
          margin-block-start: clamp(2.25rem, 0rem  +  9.6vw, 3.45rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item {
    -webkit-margin-before: clamp(1.2rem, 0rem  +  2.5vw, 2.25rem);
            margin-block-start: clamp(1.2rem, 0rem  +  2.5vw, 2.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item {
    -webkit-margin-before: clamp(2.25rem, 0rem  +  2.5vw, 3rem);
            margin-block-start: clamp(2.25rem, 0rem  +  2.5vw, 3rem);
  }
}
.p-introduction__item + .p-introduction__item {
  -webkit-margin-before: clamp(3rem, 0rem  +  12.8vw, 4.6rem);
          margin-block-start: clamp(3rem, 0rem  +  12.8vw, 4.6rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item + .p-introduction__item {
    -webkit-margin-before: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
            margin-block-start: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item + .p-introduction__item {
    -webkit-margin-before: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
            margin-block-start: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item {
    -webkit-padding-end: clamp(1rem, 0rem  +  2.0833333333vw, 1.875rem);
            padding-inline-end: clamp(1rem, 0rem  +  2.0833333333vw, 1.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item {
    -webkit-padding-end: clamp(1.875rem, 0rem  +  2.0833333333vw, 2.5rem);
            padding-inline-end: clamp(1.875rem, 0rem  +  2.0833333333vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item--wide {
    -webkit-padding-end: clamp(0rem, 0rem  +  0vw, 0rem);
            padding-inline-end: clamp(0rem, 0rem  +  0vw, 0rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item--wide {
    -webkit-padding-end: clamp(0rem, 0rem  +  0vw, 0rem);
            padding-inline-end: clamp(0rem, 0rem  +  0vw, 0rem);
  }
}

.p-introduction__tagbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__tagbox {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__tagbox {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__tagbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-introduction__tag-style {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__tag-style {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__tag-style {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-introduction__tag-style {
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.p-introduction__line-sytle {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #565956;
}

.p-introduction__text {
  -webkit-margin-before: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
          margin-block-start: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-introduction__text {
  font-weight: 500;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__text {
    -webkit-margin-before: clamp(0.5666666667rem, 0rem  +  1.1805555556vw, 1.0625rem);
            margin-block-start: clamp(0.5666666667rem, 0rem  +  1.1805555556vw, 1.0625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__text {
    -webkit-margin-before: clamp(1.0625rem, 0rem  +  1.1805555556vw, 1.4166666667rem);
            margin-block-start: clamp(1.0625rem, 0rem  +  1.1805555556vw, 1.4166666667rem);
  }
}

.p-introduction__img-style {
  -webkit-margin-before: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
          margin-block-start: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__img-style {
    -webkit-margin-before: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
            margin-block-start: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__img-style {
    -webkit-margin-before: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
            margin-block-start: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-introduction__tag-advice {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__tag-advice {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__tag-advice {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-introduction__tag-advice {
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.p-introduction__line-advice {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #565956;
}

.p-introduction__content-right {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-introduction__content-right {
    top: 7%;
    right: 2%;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .p-introduction__content-right {
    top: 7%;
    right: -6%;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .p-introduction__content-right {
    top: 7%;
    right: 0;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}

.p-introduction__content-left {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-introduction__content-left {
    top: 7%;
    left: 4%;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .p-introduction__content-left {
    top: 7%;
    left: -4%;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .p-introduction__content-left {
    top: 7%;
    left: 0;
    width: 52%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4%;
  }
}

@media screen and (min-width: 768px) {
  .p-introduction__imgbox-left {
    -webkit-padding-before: clamp(2.8333333333rem, 0rem  +  5.9027777778vw, 5.3125rem);
            padding-block-start: clamp(2.8333333333rem, 0rem  +  5.9027777778vw, 5.3125rem);
  }
}
@media screen and (min-width: 1440px) {
  .p-introduction__imgbox-left {
    -webkit-padding-before: clamp(5.3125rem, 0rem  +  5.9027777778vw, 7.0833333333rem);
            padding-block-start: clamp(5.3125rem, 0rem  +  5.9027777778vw, 7.0833333333rem);
  }
}

@media screen and (min-width: 768px) {
  .p-introduction__lineup {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lineup {
    max-width: clamp(33.2666666667rem, 0rem  +  69.3055555556vw, 62.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lineup {
    max-width: clamp(62.375rem, 0rem  +  69.3055555556vw, 83.1666666667rem);
  }
}

.p-introduction__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lead {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lead {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-introduction__lead {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-introduction__leadbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__leadbox {
    gap: clamp(4.6666666667rem, 0rem  +  9.7222222222vw, 8.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__leadbox {
    gap: clamp(8.75rem, 0rem  +  9.7222222222vw, 11.6666666667rem);
  }
}
.p-introduction__leadbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-introduction__line-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #565956;
}

.p-introduction__lead-title {
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lead-title {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lead-title {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-introduction__lead-title {
  font-weight: 600;
  letter-spacing: 0.05rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lead-title {
    -webkit-padding-end: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
            padding-inline-end: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lead-title {
    -webkit-padding-end: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
            padding-inline-end: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}

.p-introduction__line-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #565956;
}

.p-introduction__lead-sub {
  color: #b1b6af;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lead-sub {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lead-sub {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-introduction__lead-sub {
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__lead-sub {
    -webkit-padding-end: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
            padding-inline-end: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__lead-sub {
    -webkit-padding-end: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
            padding-inline-end: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}

.p-introduction__items {
  -webkit-margin-before: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          margin-block-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__items {
    -webkit-margin-before: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
            margin-block-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__items {
    -webkit-margin-before: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
            margin-block-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__items {
  padding-inline: clamp(1.34375rem, 0rem  +  5.7333333333vw, 2.0604166667rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3.0625rem, 0rem  +  13.0666666667vw, 4.6958333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__items {
    gap: clamp(1.6333333333rem, 0rem  +  3.4027777778vw, 3.0625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__items {
    gap: clamp(3.0625rem, 0rem  +  3.4027777778vw, 4.0833333333rem);
  }
}
@media screen and (min-width: 768px) {
  .p-introduction__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 0;
  }
}

.p-introduction__item-textbox {
  width: clamp(18.75rem, 0rem  +  80vw, 28.75rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-textbox {
    width: clamp(10rem, 0rem  +  20.8333333333vw, 18.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-textbox {
    width: clamp(18.75rem, 0rem  +  20.8333333333vw, 25rem);
  }
}
.p-introduction__item-textbox {
  height: clamp(9.375rem, 0rem  +  40vw, 14.375rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-textbox {
    height: clamp(5rem, 0rem  +  10.4166666667vw, 9.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-textbox {
    height: clamp(9.375rem, 0rem  +  10.4166666667vw, 12.5rem);
  }
}
.p-introduction__item-textbox {
  -webkit-padding-before: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-block-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-textbox {
    -webkit-padding-before: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
            padding-block-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-textbox {
    -webkit-padding-before: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
            padding-block-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__item-textbox {
  -webkit-padding-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-inline-start: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-textbox {
    -webkit-padding-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
            padding-inline-start: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-textbox {
    -webkit-padding-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
            padding-inline-start: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-introduction__item-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-textbox {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-textbox {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}
.p-introduction__item-textbox {
  border-radius: 8px;
  background: #f2f4f1;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
}

.p-introduction__item-title {
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-title {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-title {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-introduction__item-title {
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.p-introduction__item-subtitle {
  font-family: "Jost", sans-serif;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-introduction__item-subtitle {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-introduction__item-subtitle {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-introduction__item-subtitle {
  font-weight: 600;
  letter-spacing: 0.04rem;
}

.p-features {
  -webkit-padding-before: clamp(3.3125rem, 0rem  +  14.1333333333vw, 5.0791666667rem);
          padding-block-start: clamp(3.3125rem, 0rem  +  14.1333333333vw, 5.0791666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features {
    -webkit-padding-before: clamp(2.6rem, 0rem  +  5.4166666667vw, 4.875rem);
            padding-block-start: clamp(2.6rem, 0rem  +  5.4166666667vw, 4.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features {
    -webkit-padding-before: clamp(4.875rem, 0rem  +  5.4166666667vw, 6.5rem);
            padding-block-start: clamp(4.875rem, 0rem  +  5.4166666667vw, 6.5rem);
  }
}
.p-features {
  -webkit-padding-after: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-end: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features {
    -webkit-padding-after: clamp(2.6666666667rem, 0rem  +  5.5555555556vw, 5rem);
            padding-block-end: clamp(2.6666666667rem, 0rem  +  5.5555555556vw, 5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features {
    -webkit-padding-after: clamp(5rem, 0rem  +  5.5555555556vw, 6.6666666667rem);
            padding-block-end: clamp(5rem, 0rem  +  5.5555555556vw, 6.6666666667rem);
  }
}
.p-features {
  background: url(../img/features__bg-sp.webp) no-repeat center center/cover;
  width: 100%;
  height: clamp(173.8125rem, 0rem  +  741.6vw, 266.5125rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features {
    height: clamp(58.4rem, 0rem  +  121.6666666667vw, 109.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features {
    height: clamp(109.5rem, 0rem  +  121.6666666667vw, 146rem);
  }
}
@media screen and (min-width: 768px) {
  .p-features {
    background: url(../img/features__bg-pc.webp) no-repeat center center/cover;
    width: 100%;
  }
}

.p-features__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3.25rem, 0rem  +  13.8666666667vw, 4.9833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__container {
    gap: clamp(1.7333333333rem, 0rem  +  3.6111111111vw, 3.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__container {
    gap: clamp(3.25rem, 0rem  +  3.6111111111vw, 4.3333333333rem);
  }
}

.p-features__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__items {
    gap: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__items {
    gap: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
@media screen and (min-width: 768px) {
  .p-features__items {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__item {
    gap: clamp(2.6666666667rem, 0rem  +  5.5555555556vw, 5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__item {
    gap: clamp(5rem, 0rem  +  5.5555555556vw, 6.6666666667rem);
  }
}
.p-features__item {
  padding-block: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__item {
    padding-block: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__item {
    padding-block: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-features__item {
  padding-inline: 16px;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-features__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-features__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__item--reverse {
    -webkit-padding-start: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
            padding-inline-start: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__item--reverse {
    -webkit-padding-start: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
            padding-inline-start: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
@media screen and (min-width: 768px) {
  .p-features__item--reverse2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__item--reverse2 {
    -webkit-padding-start: clamp(0.1rem, 0rem  +  0.2083333333vw, 0.1875rem);
            padding-inline-start: clamp(0.1rem, 0rem  +  0.2083333333vw, 0.1875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__item--reverse2 {
    -webkit-padding-start: clamp(0.1875rem, 0rem  +  0.2083333333vw, 0.25rem);
            padding-inline-start: clamp(0.1875rem, 0rem  +  0.2083333333vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__item--reverse2 {
    -webkit-padding-before: clamp(0.9333333333rem, 0rem  +  1.9444444444vw, 1.75rem);
            padding-block-start: clamp(0.9333333333rem, 0rem  +  1.9444444444vw, 1.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__item--reverse2 {
    -webkit-padding-before: clamp(1.75rem, 0rem  +  1.9444444444vw, 2.3333333333rem);
            padding-block-start: clamp(1.75rem, 0rem  +  1.9444444444vw, 2.3333333333rem);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__img {
    width: clamp(14.8666666667rem, 0rem  +  30.9722222222vw, 27.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__img {
    width: clamp(27.875rem, 0rem  +  30.9722222222vw, 37.1666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__img {
    height: clamp(9.1666666667rem, 0rem  +  19.0972222222vw, 17.1875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__img {
    height: clamp(17.1875rem, 0rem  +  19.0972222222vw, 22.9166666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__img--wide {
    width: clamp(15.0666666667rem, 0rem  +  31.3888888889vw, 28.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__img--wide {
    width: clamp(28.25rem, 0rem  +  31.3888888889vw, 37.6666666667rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__img--wide {
    height: clamp(8.1333333333rem, 0rem  +  16.9444444444vw, 15.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__img--wide {
    height: clamp(15.25rem, 0rem  +  16.9444444444vw, 20.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__img--high {
    -webkit-padding-before: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
            padding-block-start: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__img--high {
    -webkit-padding-before: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
            padding-block-start: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}

.p-features__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.75rem, 0rem  +  3.2vw, 1.15rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__body {
    gap: clamp(0.4rem, 0rem  +  0.8333333333vw, 0.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__body {
    gap: clamp(0.75rem, 0rem  +  0.8333333333vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__body {
    width: clamp(14.8333333333rem, 0rem  +  30.9027777778vw, 27.8125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__body {
    width: clamp(27.8125rem, 0rem  +  30.9027777778vw, 37.0833333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__body--high {
    -webkit-padding-before: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
            padding-block-start: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__body--high {
    -webkit-padding-before: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
            padding-block-start: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__body--wide {
    -webkit-padding-before: clamp(1.2333333333rem, 0rem  +  2.5694444444vw, 2.3125rem);
            padding-block-start: clamp(1.2333333333rem, 0rem  +  2.5694444444vw, 2.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__body--wide {
    -webkit-padding-before: clamp(2.3125rem, 0rem  +  2.5694444444vw, 3.0833333333rem);
            padding-block-start: clamp(2.3125rem, 0rem  +  2.5694444444vw, 3.0833333333rem);
  }
}

.p-features__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(0.25rem, 0rem  +  1.0666666667vw, 0.3833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__label {
    padding-block: clamp(0.1333333333rem, 0rem  +  0.2777777778vw, 0.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__label {
    padding-block: clamp(0.25rem, 0rem  +  0.2777777778vw, 0.3333333333rem);
  }
}
.p-features__label {
  padding-inline: clamp(0.625rem, 0rem  +  2.6666666667vw, 0.9583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__label {
    padding-inline: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__label {
    padding-inline: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
.p-features__label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(7.1875rem, 0rem  +  30.6666666667vw, 11.0208333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__label {
    width: clamp(3.8333333333rem, 0rem  +  7.9861111111vw, 7.1875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__label {
    width: clamp(7.1875rem, 0rem  +  7.9861111111vw, 9.5833333333rem);
  }
}
.p-features__label {
  color: #fff;
  background: #948260;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__label {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__label {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-features__label {
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.p-features__title {
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__title {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__title {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-features__title {
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.p-features__title--accent {
  color: #948260;
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__title--accent {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__title--accent {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-features__title--accent {
  font-weight: 700;
  letter-spacing: 0.06rem;
}

.p-features__text {
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-features__text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-features__text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-features__text {
  font-weight: 500;
  letter-spacing: 0.04rem;
}

.p-use {
  -webkit-padding-before: clamp(3.25rem, 0rem  +  13.8666666667vw, 4.9833333333rem);
          padding-block-start: clamp(3.25rem, 0rem  +  13.8666666667vw, 4.9833333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use {
    -webkit-padding-before: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
            padding-block-start: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use {
    -webkit-padding-before: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
            padding-block-start: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
  }
}
.p-use {
  -webkit-padding-after: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
          padding-block-end: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use {
    -webkit-padding-after: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
            padding-block-end: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use {
    -webkit-padding-after: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
            padding-block-end: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
  }
}
.p-use__container {
  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: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__container {
    gap: clamp(2.1333333333rem, 0rem  +  4.4444444444vw, 4rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__container {
    gap: clamp(4rem, 0rem  +  4.4444444444vw, 5.3333333333rem);
  }
}
.p-use__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__items {
    gap: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__items {
    gap: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-use__items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-use__items {
    gap: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.p-use__item {
  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;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__item {
    width: clamp(8.9rem, 0rem  +  18.5416666667vw, 16.6875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__item {
    width: clamp(16.6875rem, 0rem  +  18.5416666667vw, 22.25rem);
  }
}

.p-use__content {
  -webkit-margin-before: clamp(1.625rem, 0rem  +  6.9333333333vw, 2.4916666667rem);
          margin-block-start: clamp(1.625rem, 0rem  +  6.9333333333vw, 2.4916666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__content {
    -webkit-margin-before: clamp(1rem, 0rem  +  2.0833333333vw, 1.875rem);
            margin-block-start: clamp(1rem, 0rem  +  2.0833333333vw, 1.875rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__content {
    -webkit-margin-before: clamp(1.875rem, 0rem  +  2.0833333333vw, 2.5rem);
            margin-block-start: clamp(1.875rem, 0rem  +  2.0833333333vw, 2.5rem);
  }
}
.p-use__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__content {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__content {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-use__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-use__step {
  color: #609484;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__step {
    font-size: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__step {
    font-size: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-use__step {
  font-weight: 700;
  line-height: normal;
}

.p-use__title {
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__title {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__title {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-use__title {
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.p-use__text {
  -webkit-margin-before: clamp(0.875rem, 0rem  +  3.7333333333vw, 1.3416666667rem);
          margin-block-start: clamp(0.875rem, 0rem  +  3.7333333333vw, 1.3416666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__text {
    -webkit-margin-before: clamp(0.5666666667rem, 0rem  +  1.1805555556vw, 1.0625rem);
            margin-block-start: clamp(0.5666666667rem, 0rem  +  1.1805555556vw, 1.0625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__text {
    -webkit-margin-before: clamp(1.0625rem, 0rem  +  1.1805555556vw, 1.4166666667rem);
            margin-block-start: clamp(1.0625rem, 0rem  +  1.1805555556vw, 1.4166666667rem);
  }
}
.p-use__text {
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-use__text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-use__text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-use__text {
  font-weight: 500;
  letter-spacing: 0.04rem;
}
.p-faq {
  -webkit-padding-before: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
          padding-block-start: clamp(3.375rem, 0rem  +  14.4vw, 5.175rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq {
    -webkit-padding-before: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
            padding-block-start: clamp(2.8666666667rem, 0rem  +  5.9722222222vw, 5.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq {
    -webkit-padding-before: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
            padding-block-start: clamp(5.375rem, 0rem  +  5.9722222222vw, 7.1666666667rem);
  }
}
.p-faq {
  -webkit-padding-after: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
          padding-block-end: clamp(3.5rem, 0rem  +  14.9333333333vw, 5.3666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq {
    -webkit-padding-after: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
            padding-block-end: clamp(2.9333333333rem, 0rem  +  6.1111111111vw, 5.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq {
    -webkit-padding-after: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
            padding-block-end: clamp(5.5rem, 0rem  +  6.1111111111vw, 7.3333333333rem);
  }
}
.p-faq__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__container {
    gap: clamp(2.2rem, 0rem  +  4.5833333333vw, 4.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__container {
    gap: clamp(4.125rem, 0rem  +  4.5833333333vw, 5.5rem);
  }
}
.p-faq__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-faq__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__boxes {
    row-gap: clamp(1.1333333333rem, 0rem  +  2.3611111111vw, 2.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__boxes {
    row-gap: clamp(2.125rem, 0rem  +  2.3611111111vw, 2.8333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__boxes {
    -webkit-column-gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
       -moz-column-gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
            column-gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__boxes {
    -webkit-column-gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
       -moz-column-gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
            column-gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}

.p-faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__box {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__box {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}

.p-faq__head {
  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;
  background: #fff;
  -webkit-padding-after: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-block-end: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head {
    -webkit-padding-after: clamp(0.7rem, 0rem  +  1.4583333333vw, 1.3125rem);
            padding-block-end: clamp(0.7rem, 0rem  +  1.4583333333vw, 1.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head {
    -webkit-padding-after: clamp(1.3125rem, 0rem  +  1.4583333333vw, 1.75rem);
            padding-block-end: clamp(1.3125rem, 0rem  +  1.4583333333vw, 1.75rem);
  }
}
.p-faq__head {
  border-bottom: 1px solid #565956;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head {
    -webkit-padding-start: clamp(0.7rem, 0rem  +  1.4583333333vw, 1.3125rem);
            padding-inline-start: clamp(0.7rem, 0rem  +  1.4583333333vw, 1.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head {
    -webkit-padding-start: clamp(1.3125rem, 0rem  +  1.4583333333vw, 1.75rem);
            padding-inline-start: clamp(1.3125rem, 0rem  +  1.4583333333vw, 1.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head {
    -webkit-padding-end: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
            padding-inline-end: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head {
    -webkit-padding-end: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
            padding-inline-end: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
  }
}

.p-faq__head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-wrap {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-wrap {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-faq__head-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__head-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__head-icon {
  color: #948260;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-icon {
    font-size: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-icon {
    font-size: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
  }
}
.p-faq__head-icon {
  font-weight: 500;
  line-height: normal;
}

.p-faq__head-text {
  color: #565956;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-faq__head-text {
  font-weight: 500;
  letter-spacing: 0.04rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  width: clamp(15.875rem, 0rem  +  67.7333333333vw, 24.3416666667rem);
}
@media screen and (min-width: 768px) {
  .p-faq__head-text {
    width: 100%;
  }
}

.p-faq__head-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-faq__head-open span {
  background: url(../img/faq__plus.png) no-repeat center center/contain;
  width: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-open span {
    width: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-open span {
    width: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-faq__head-open span {
  height: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-open span {
    height: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-open span {
    height: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__head-open {
    -webkit-padding-end: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
            padding-inline-end: clamp(0.1666666667rem, 0rem  +  0.3472222222vw, 0.3125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__head-open {
    -webkit-padding-end: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
            padding-inline-end: clamp(0.3125rem, 0rem  +  0.3472222222vw, 0.4166666667rem);
  }
}

.p-faq__wrapper {
  display: none;
}

.p-faq__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__body {
    gap: clamp(0.8rem, 0rem  +  1.6666666667vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__body {
    gap: clamp(1.5rem, 0rem  +  1.6666666667vw, 2rem);
  }
}
.p-faq__body {
  -webkit-padding-after: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
          padding-block-end: clamp(1.5rem, 0rem  +  6.4vw, 2.3rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__body {
    -webkit-padding-after: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
            padding-block-end: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__body {
    -webkit-padding-after: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
            padding-block-end: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
  }
}
.p-faq__body {
  border-bottom: 1px solid #565956;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__body {
    -webkit-padding-start: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
            padding-inline-start: clamp(0.7333333333rem, 0rem  +  1.5277777778vw, 1.375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__body {
    -webkit-padding-start: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
            padding-inline-start: clamp(1.375rem, 0rem  +  1.5277777778vw, 1.8333333333rem);
  }
}

.p-faq__box.is-open .p-faq__head-open span {
  background-image: url(../img/faq__bar.png);
}

.p-faq__body-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__body-icon {
  color: #948260;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 0rem  +  4.8vw, 1.725rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__body-icon {
    font-size: clamp(0.6rem, 0rem  +  1.25vw, 1.125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__body-icon {
    font-size: clamp(1.125rem, 0rem  +  1.25vw, 1.5rem);
  }
}
.p-faq__body-icon {
  font-weight: 500;
  line-height: normal;
}

.p-faq__answer-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.75rem, 0rem  +  3.2vw, 1.15rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__answer-textbox {
    gap: clamp(0.4rem, 0rem  +  0.8333333333vw, 0.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__answer-textbox {
    gap: clamp(0.75rem, 0rem  +  0.8333333333vw, 1rem);
  }
}

.p-faq__answer-text {
  color: #565956;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__answer-text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__answer-text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-faq__answer-text {
  font-weight: 500;
  letter-spacing: 0.04rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}

.p-faq__btn {
  border-radius: 99999px;
  background: #609484;
  padding-block: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn {
    padding-block: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn {
    padding-block: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-faq__btn {
  padding-inline: clamp(0.625rem, 0rem  +  2.6666666667vw, 0.9583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn {
    padding-inline: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn {
    padding-inline: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
.p-faq__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3rem, 0rem  +  12.8vw, 4.6rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn {
    gap: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn {
    gap: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
.p-faq__btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(19.0625rem, 0rem  +  81.3333333333vw, 29.2291666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn {
    width: clamp(10.1666666667rem, 0rem  +  21.1805555556vw, 19.0625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn {
    width: clamp(19.0625rem, 0rem  +  21.1805555556vw, 25.4166666667rem);
  }
}

.p-faq__btn-text {
  color: #fff;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn-text {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn-text {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-faq__btn-text {
  font-weight: 700;
  letter-spacing: 0.04rem;
  -webkit-padding-start: clamp(0.9375rem, 0rem  +  4vw, 1.4375rem);
          padding-inline-start: clamp(0.9375rem, 0rem  +  4vw, 1.4375rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn-text {
    -webkit-padding-start: clamp(0.5rem, 0rem  +  1.0416666667vw, 0.9375rem);
            padding-inline-start: clamp(0.5rem, 0rem  +  1.0416666667vw, 0.9375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn-text {
    -webkit-padding-start: clamp(0.9375rem, 0rem  +  1.0416666667vw, 1.25rem);
            padding-inline-start: clamp(0.9375rem, 0rem  +  1.0416666667vw, 1.25rem);
  }
}

.p-faq__btn-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-faq__btn-arrow img {
  width: clamp(0.703125rem, 0rem  +  3vw, 1.078125rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn-arrow img {
    width: clamp(0.375rem, 0rem  +  0.78125vw, 0.703125rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn-arrow img {
    width: clamp(0.703125rem, 0rem  +  0.78125vw, 0.9375rem);
  }
}
.p-faq__btn-arrow img {
  height: clamp(0.9374375rem, 0rem  +  3.9997333333vw, 1.4374041667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-faq__btn-arrow img {
    height: clamp(0.4999666667rem, 0rem  +  1.0415972222vw, 0.9374375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-faq__btn-arrow img {
    height: clamp(0.9374375rem, 0rem  +  1.0415972222vw, 1.2499166667rem);
  }
}

.p-footer {
  -webkit-padding-before: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
          padding-block-start: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer {
    -webkit-padding-before: clamp(1.8666666667rem, 0rem  +  3.8888888889vw, 3.5rem);
            padding-block-start: clamp(1.8666666667rem, 0rem  +  3.8888888889vw, 3.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer {
    -webkit-padding-before: clamp(3.5rem, 0rem  +  3.8888888889vw, 4.6666666667rem);
            padding-block-start: clamp(3.5rem, 0rem  +  3.8888888889vw, 4.6666666667rem);
  }
}
.p-footer {
  -webkit-padding-after: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
          padding-block-end: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer {
    -webkit-padding-after: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
            padding-block-end: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer {
    -webkit-padding-after: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
            padding-block-end: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}
.p-footer {
  background: #565956;
}
.p-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(4.5rem, 0rem  +  19.2vw, 6.9rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__container {
    gap: clamp(2.4rem, 0rem  +  5vw, 4.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__container {
    gap: clamp(4.5rem, 0rem  +  5vw, 6rem);
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3rem, 0rem  +  12.8vw, 4.6rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__nav {
    gap: clamp(1.6rem, 0rem  +  3.3333333333vw, 3rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__nav {
    gap: clamp(3rem, 0rem  +  3.3333333333vw, 4rem);
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    gap: auto;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__group {
    gap: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__group {
    gap: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-footer__group-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.4375rem, 0rem  +  1.8666666667vw, 0.6708333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__group-head {
    gap: clamp(0.2333333333rem, 0rem  +  0.4861111111vw, 0.4375rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__group-head {
    gap: clamp(0.4375rem, 0rem  +  0.4861111111vw, 0.5833333333rem);
  }
}

.p-footer__menu-title {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__menu-title {
    font-size: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__menu-title {
    font-size: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-footer__menu-title {
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.p-footer__menu-line {
  width: clamp(4.50175rem, 0rem  +  19.2074666667vw, 6.9026833333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__menu-line {
    width: clamp(2.4009333333rem, 0rem  +  5.0019444444vw, 4.50175rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__menu-line {
    width: clamp(4.50175rem, 0rem  +  5.0019444444vw, 6.0023333333rem);
  }
}
.p-footer__menu-line {
  height: 1px;
  background: #fff;
}

.p-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0rem  +  2.1333333333vw, 0.7666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__items {
    gap: clamp(0.2666666667rem, 0rem  +  0.5555555556vw, 0.5rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__items {
    gap: clamp(0.5rem, 0rem  +  0.5555555556vw, 0.6666666667rem);
  }
}

.p-footer__item {
  color: #fff;
  font-size: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__item {
    font-size: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__item {
    font-size: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}
.p-footer__item {
  font-weight: 500;
  letter-spacing: 0.04rem;
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0rem  +  5.3333333333vw, 1.9166666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__sns {
    gap: clamp(0.6666666667rem, 0rem  +  1.3888888889vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__sns {
    gap: clamp(1.25rem, 0rem  +  1.3888888889vw, 1.6666666667rem);
  }
}
.p-footer__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__sns-item {
  width: clamp(2rem, 0rem  +  8.5333333333vw, 3.0666666667rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__sns-item {
    width: clamp(1.0666666667rem, 0rem  +  2.2222222222vw, 2rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__sns-item {
    width: clamp(2rem, 0rem  +  2.2222222222vw, 2.6666666667rem);
  }
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0rem  +  4.2666666667vw, 1.5333333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__wrap {
    gap: clamp(0.5333333333rem, 0rem  +  1.1111111111vw, 1rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__wrap {
    gap: clamp(1rem, 0rem  +  1.1111111111vw, 1.3333333333rem);
  }
}

.p-footer__caution {
  color: #fff;
  font-size: clamp(0.75rem, 0rem  +  3.2vw, 1.15rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__caution {
    font-size: clamp(0.4rem, 0rem  +  0.8333333333vw, 0.75rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__caution {
    font-size: clamp(0.75rem, 0rem  +  0.8333333333vw, 1rem);
  }
}
.p-footer__caution {
  font-weight: 700;
  letter-spacing: 0.03rem;
}

.p-footer__copyright {
  color: #fff;
  font-size: clamp(0.625rem, 0rem  +  2.6666666667vw, 0.9583333333rem);
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-footer__copyright {
    font-size: clamp(0.3333333333rem, 0rem  +  0.6944444444vw, 0.625rem);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-footer__copyright {
    font-size: clamp(0.625rem, 0rem  +  0.6944444444vw, 0.8333333333rem);
  }
}
.p-footer__copyright {
  font-weight: 500;
  letter-spacing: 0.025rem;
}

@media screen and (max-width: 575px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-visible-sp {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .u-visible-sp {
    display: block !important;
  }
}

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

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

@media screen and (min-width: 768px) {
  .u-hidden-tb {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-tb {
    display: none !important;
  }
}

.u-visible-tb {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-visible-tb {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}

.u-visible-lg {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .u-visible-lg {
    display: block !important;
  }
}

@media screen and (min-width: 1440px) {
  .u-hidden-xl {
    display: none !important;
  }
}

.u-visible-xl {
  display: none !important;
}
@media screen and (min-width: 1440px) {
  .u-visible-xl {
    display: block !important;
  }
}

.u-hidden-sp-md {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp-md {
    display: block !important;
  }
}

.u-hidden-sp-md--flex {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp-md--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.u-hidden-sp-md--inline {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp-md--inline {
    display: inline-block !important;
  }
}

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

.u-visible-md-only {
  display: none !important;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .u-visible-md-only {
    display: block !important;
  }
}

.u-visible-tb-only {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .u-visible-tb-only {
    display: block !important;
  }
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-mt-10 {
  margin-top: 0.625rem !important;
}

.u-mt-20 {
  margin-top: 1.25rem !important;
}

.u-mt-40 {
  margin-top: 2.5rem !important;
}

.u-mb-10 {
  margin-bottom: 0.625rem !important;
}

.u-mb-20 {
  margin-bottom: 1.25rem !important;
}

.u-mb-40 {
  margin-bottom: 2.5rem !important;
}

.u-mb-10 {
  margin-bottom: 0.625rem !important;
}

.u-mb-20 {
  margin-bottom: 1.25rem !important;
}

.u-mb-40 {
  margin-bottom: 2.5rem !important;
}