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

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

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

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

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 63px;
  font-size: 16px;
}

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.81;
}

img {
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  opacity: 0.8; /* ホバー時の透過度を設定 */
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.l-inner {
  padding-inline: 20px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px);
  }
}

.l-header {
  z-index: 997;
  position: fixed;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    position: sticky;
    right: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.5);
  }
}

.l-header__inner {
  position: relative;
  padding-inline: 20px;
  padding-block: 14px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: 50px;
    max-width: 1366px;
    margin-inline: auto;
    display: block;
  }
}

.l-header__nav {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__nav-list {
  margin-left: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 20px + 0.0865384615 * (100vw - 950px), 50px);
}

.menu-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
}

@-webkit-keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}

@keyframes hoverAnimation {
  0% {
    color: black; /* アニメーション開始時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置 */
  }
  50% {
    color: #fff; /* アニメーション中間点の文字色 */
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px); /* 少し上に移動 */
  }
  100% {
    color: #fff; /* アニメーション終了時の文字色 */
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
.l-header__menu-ja {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; /* 色の変化にアニメーションを適用 */
}

.menu-item:hover .c-header__menu-ja {
  -webkit-animation: hoverAnimation 0.6s ease forwards;
          animation: hoverAnimation 0.6s ease forwards; /* キーフレームアニメーションを適用 */
}

.l-footer {
  background-color: #000; /* フッターの背景色 */
  padding-block: 16px 16px;
}
.l-footer-inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    padding-inline: 36px;
    max-width: 1366px;
    margin-inline: auto;
  }
}

.l-footer__copyright-wrap {
  margin-inline: auto;
  text-align: center;
}

.l-footer__copyright {
  font-size: 0.75rem; /* コピーライトのフォントサイズ */
  color: #fff; /* テキストの色 */
  line-height: 1.5;
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    padding-top: 0;
  }
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-button {
  border: solid 1px #fff;
  display: block;
  font-size: 1.125rem;
  width: clamp(345px, 345px + (205) * (100vw - 375px) / (1366 - 375), 550px);
  height: clamp(40px, 40px + (35) * (100vw - 375px) / (1366 - 375), 75px);
  display: grid;
  place-items: center;
  text-align: center;
}
/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.c-title-en {
  font-size: 1.875rem;
  font-family: "Prompt", sans-serif;
  font-style: italic;
  text-align: center;
  padding-bottom: 1px;
  border-bottom: solid 1px #000233;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: clamp(1.875rem, 1.5202447023rem + 1.5136226034vw, 2.8125rem);
    line-height: 1;
    padding-bottom: 12px;
    text-align: left;
  }
}

.c-title-ja {
  padding-top: 15px;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title-ja {
    font-size: clamp(1.125rem, 0.9594475277rem + 0.7063572149vw, 1.5625rem);
    line-height: 1;
    text-align: left;
  }
}

/*----------------------------------
    fv
-----------------------------------*/
.p-fv {
  position: relative;
  width: 100%;
  background: url(../img/mv_bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-fv {
    background: url(../img/mv_bg_pc.webp) no-repeat center center/cover;
  }
}

.p-fv__inner {
  position: relative;
}

.p-fv__title-wrapper {
  padding-top: 56px;
  padding-bottom: 138px;
  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) {
  .p-fv__title-wrapper {
    padding-top: 103px;
    padding-bottom: 123px;
  }
}

.p-fv__fog {
  width: 321px;
}
@media screen and (min-width: 768px) {
  .p-fv__fog {
    width: clamp(321px, 321px + (674) * (100vw - 375px) / (1366 - 375), 995px);
  }
}

.p-fv__sub-title {
  padding-top: 25px;
  width: 261px;
}
@media screen and (min-width: 768px) {
  .p-fv__sub-title {
    padding-top: 18px;
    width: clamp(261px, 261px + (571) * (100vw - 375px) / (1366 - 375), 832px);
  }
}

.p-fv__title {
  padding-top: 33px;
  width: 225px;
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    padding-top: 28px;
    width: clamp(225px, 225px + (439) * (100vw - 375px) / (1366 - 375), 664px);
  }
}

.p-fv__inst-btn {
  position: absolute;
  bottom: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-fv__inst-btn {
    bottom: auto;
    left: auto;
    top: 27px;
    right: 27px;
    -webkit-transform: none;
            transform: none;
  }
}

.p-fv__inst-icon {
  width: 40px;
}

.p-fv__inst-text p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 2.25;
  color: #add9cc;
  position: relative;
  top: -10px;
}

/*----------------------------------
    about
-----------------------------------*/
.p-about {
  padding-bottom: 58px;
}

.p-about__title-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 0 87%);
          clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 0 87%);
  background: #add9cc;
  padding-block: 43px 59px;
  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;
}
@media screen and (min-width: 768px) {
  .p-about__title-wrapper {
    padding-block: 76px 105px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }
}

.p-about__title {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    width: clamp(335px, 335px + (625) * (100vw - 375px) / (1366 - 375), 960px);
  }
}

.p-about__contents {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    padding-top: 75px;
    gap: 88px;
  }
}

.p-about__content-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: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__content-title {
    gap: 28px;
  }
}

.p-about__content-title-img-1 {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-about__content-title-img-1 {
    width: clamp(335px, 335px + (433) * (100vw - 375px) / (1366 - 375), 768px);
  }
}

.p-about__content-title-img-2 {
  width: 171px;
}
@media screen and (min-width: 768px) {
  .p-about__content-title-img-2 {
    width: clamp(171px, 171px + (171) * (100vw - 375px) / (1366 - 375), 342px);
  }
}

.p-about__content-title-img-3 {
  width: 232px;
}
@media screen and (min-width: 768px) {
  .p-about__content-title-img-3 {
    width: clamp(400px, 400px + (522) * (100vw - 375px) / (1366 - 375), 922px);
  }
}

.p-about__content-title-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #000233;
}
@media screen and (min-width: 768px) {
  .p-about__content-title-text {
    font-size: clamp(1.25rem, 0.8715943491rem + 1.614530777vw, 2.25rem);
    line-height: 0.97;
  }
}

.p-about__content-text {
  padding-top: 9px;
}
@media screen and (min-width: 768px) {
  .p-about__content-text {
    padding-top: 25px;
    max-width: 610px;
  }
}
.p-about__content-text p {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__content-text p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

/*----------------------------------
    explanation
-----------------------------------*/
.p-explanation {
  background: #add9cc;
  padding-block: 60px 60px;
}
@media screen and (min-width: 768px) {
  .p-explanation {
    padding-block: 44px 37px;
  }
}

.p-explanation__text-wrap {
  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: 16px;
}
@media screen and (min-width: 768px) {
  .p-explanation__text-wrap {
    gap: 12px;
  }
}

@media screen and (min-width: 768px) {
  .p-explanation__text-title {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.p-explanation__text-title p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.39;
  color: #000233;
  display: inline;
  position: relative;
  padding: 0 5px;
  color: #000233;
  -webkit-box-shadow: 0 -0.4em 0 white inset;
          box-shadow: 0 -0.4em 0 white inset;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .p-explanation__text-title p {
    font-size: clamp(1.25rem, 1.0134964682rem + 1.0090817356vw, 1.875rem);
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-explanation__text {
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 840px;
  }
}
@media screen and (min-width: 768px) {
  .p-explanation__text p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

@media screen and (min-width: 768px) {
  .p-explanation__text-attention {
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-top: 16px;
  }
}
.p-explanation__text-attention p {
  font-size: 0.75rem;
  line-height: 1.5;
}

/*----------------------------------
    how
-----------------------------------*/
.p-how {
  overflow: hidden;
  background: #000;
  padding-block: 56px 0px;
}
@media screen and (min-width: 768px) {
  .p-how {
    padding-block: 110px 0px;
  }
}

.p-how__contents {
  padding-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-how__contents {
    padding-top: 88px;
  }
}

.p-how__content-title {
  width: 335px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-how__content-title {
    width: clamp(440px, 440px + (462) * (100vw - 375px) / (1366 - 375), 902px);
  }
}

.p-how__content-box {
  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;
  padding-inline: 20px;
  max-width: 542px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-how__content-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-top: 20px;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-how__content-box {
    max-width: 1551px;
    padding-inline: clamp(18px, 18px + (0) * (100vw - 768px) / (1366 - 768), 18px) clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px);
  }
}

.p-hou__content-text {
  padding-top: 37px;
}
@media screen and (min-width: 768px) {
  .p-hou__content-text {
    padding-top: 39px;
  }
}
.p-hou__content-text p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-hou__content-text p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}
.p-hou__content-text p + p {
  padding-top: 30px;
}

.p-how__content-img-wrap {
  padding-top: 56px;
}
@media screen and (min-width: 768px) {
  .p-how__content-img-wrap {
    padding-top: 0;
    position: absolute;
    bottom: clamp(-226px, -226px + (186) * (100vw - 768px) / (1366 - 768), -40px);
    left: 50%;
    translate: -50% 0;
  }
}

.p-how__content-img-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: #add9cc;
}
@media screen and (min-width: 768px) {
  .p-how__content-img-title {
    font-size: clamp(1.25rem, 1.0134964682rem + 1.0090817356vw, 1.875rem);
    line-height: 1.5;
  }
}

.p-how__content-img-items {
  padding-top: 26px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "img1 img2" "img3 img4";
  -webkit-column-gap: 54px;
     -moz-column-gap: 54px;
          column-gap: 54px;
  row-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-how__content-img-items {
    padding-top: 36px;
    grid-template-columns: repeat(4, auto);
    grid-template-areas: "img1 img2 img3 img4";
    -webkit-column-gap: clamp(20px, 20px + (33) * (100vw - 768px) / (1366 - 768), 53px);
       -moz-column-gap: clamp(20px, 20px + (33) * (100vw - 768px) / (1366 - 768), 53px);
            column-gap: clamp(20px, 20px + (33) * (100vw - 768px) / (1366 - 768), 53px);
    row-gap: 0;
  }
}

.p-how__content-img-items-arrow-sp {
  width: 37px;
  position: absolute;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .p-how__content-img-items-arrow-sp {
    display: none;
  }
}

.p-how__content-img-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;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-how__content-img-item {
    gap: 20px;
    width: clamp(130px, 130px + (70) * (100vw - 375px) / (1366 - 375), 200px);
  }
  .p-how__content-img-item:not(:last-child) {
    position: relative;
  }
  .p-how__content-img-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35%;
    right: calc(-20px - 24 * (100vw - 798px) / 568);
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    width: 28px;
    width: clamp(20px, 20px + (8) * (100vw - 768px) / (1366 - 768), 28px);
    height: 28px;
    height: clamp(20px, 20px + (8) * (100vw - 768px) / (1366 - 768), 28px);
    background: url("../img/how-arrow-pc.webp") no-repeat center/contain;
  }
}

.p-how__content-item-img-1 {
  grid-area: img1;
  width: 116px;
}
@media screen and (min-width: 768px) {
  .p-how__content-item-img-1 {
    width: clamp(60px, 60px + (85) * (100vw - 375px) / (1366 - 375), 145px);
  }
}

.p-how__content-item-img-2 {
  grid-area: img2;
  width: 119px;
}
@media screen and (min-width: 768px) {
  .p-how__content-item-img-2 {
    width: clamp(60px, 60px + (89) * (100vw - 375px) / (1366 - 375), 149px);
  }
}

.p-how__content-item-img-3 {
  grid-area: img3;
  width: 132px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-how__content-item-img-3 {
    width: clamp(60px, 60px + (105) * (100vw - 375px) / (1366 - 375), 165px);
    padding-bottom: 5px;
    translate: 13px 0;
  }
}

.p-how__content-item-img-4 {
  grid-area: img4;
  padding-bottom: 20px;
  width: 101px;
}
@media screen and (min-width: 768px) {
  .p-how__content-item-img-4 {
    width: clamp(60px, 60px + (66) * (100vw - 375px) / (1366 - 375), 126px);
    padding-bottom: 0;
  }
}

.p-how__content-item-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-how__content-item-text {
    font-size: clamp(0.875rem, 0.8040489405rem + 0.3027245207vw, 1.0625rem);
    line-height: 1.82;
    text-align: center;
  }
}

.p-how__content-main-img {
  width: 100%;
  min-width: 375px;
  max-width: 500px;
  margin-inline: -20px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-how__content-main-img {
    padding-top: 0;
    width: clamp(180px, 180px + (485) * (100vw - 375px) / (1366 - 375), 665px);
    max-width: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-inline: 0;
  }
}

/*----------------------------------
    how-2
-----------------------------------*/
.p-how__content-2 {
  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;
  padding-inline: 20px;
  max-width: 542px;
  margin-inline: auto;
  margin-top: -36px;
}
@media screen and (min-width: 768px) {
  .p-how__content-2 {
    max-width: 1551px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px) clamp(18px, 18px + (0) * (100vw - 768px) / (1366 - 768), 18px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: calc(250px - 142 * (100vw - 798px) / 568);
    gap: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .p-how__content-2 {
    margin-top: 108px;
  }
}

.p-how__content-2-title-wrapper {
  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) {
  .p-how__content-2-title-wrapper {
    padding-top: 58px;
  }
}

.p-how__content-2-title {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-how__content-2-title {
    width: clamp(250px, 250px + (246) * (100vw - 375px) / (1366 - 375), 496px);
  }
}

.p-how__content-2-text {
  padding-top: 37px;
}
@media screen and (min-width: 768px) {
  .p-how__content-2-text {
    padding-top: 39px;
    padding-right: 20px;
  }
}
.p-how__content-2-text p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-how__content-2-text p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}
.p-how__content-2-text p + p {
  padding-top: 30px;
}

.p-how__content-2-img {
  width: 100%;
  min-width: 375px;
  max-width: 500px;
  margin-inline: -20px;
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-how__content-2-img {
    padding-top: 0px;
    width: clamp(180px, 180px + (448) * (100vw - 375px) / (1366 - 375), 628px);
    max-width: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-inline: 0;
  }
}

/*----------------------------------
    movie
-----------------------------------*/
.p-movie {
  margin-top: -1px;
  background-color: #000;
  background-image: url(../img/movie_bg_sp2.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  padding-block: 57px clamp(270px, 270px + (26) * (100vw - 375px) / (768 - 375), 296px);
}
@media screen and (min-width: 768px) {
  .p-movie {
    background-image: url(../img/movie_bg_pc2.webp);
    padding-block: 33px clamp(90px, 90px + (0) * (100vw - 768px) / (1366 - 768), 90px);
  }
}

.p-movie__title-ja {
  padding-top: 20px;
}

.p-movie__video-wrapper {
  width: clamp(375px, 375px + (185) * (100vw - 375px) / (768 - 375), 560px);
  height: auto;
  aspect-ratio: 375/211;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-movie__video-wrapper {
    margin-top: 72px;
    width: clamp(450px, 450px + (200) * (100vw - 768px) / (1366 - 768), 650px);
    aspect-ratio: 650/366;
  }
}

/*----------------------------------
    product
-----------------------------------*/
.p-product {
  padding-block: 55px 60px;
}
@media screen and (min-width: 768px) {
  .p-product {
    padding-block: clamp(100px, 100px + (45) * (100vw - 768px) / (1366 - 768), 145px) 100px;
  }
}

.p-product__title-en {
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-product__title-en {
    padding-bottom: 11px;
  }
}

.p-product__contents {
  padding-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
}
@media screen and (min-width: 768px) {
  .p-product__contents {
    padding-top: 63px;
    gap: 72px;
  }
}

.p-product__content-title-wrap {
  padding-left: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.p-product__content-title-wrap::before {
  z-index: -1;
  position: absolute;
  content: "";
  display: block;
  width: 110%;
  height: 83%;
  top: 28%;
  left: 55%;
  translate: -50%;
  background: #add9cc;
}

.p-product__content-title-en {
  font-family: "Prompt", sans-serif;
  font-style: italic;
  font-size: 3.125rem;
  line-height: 0.9;
  font-weight: 700;
}

.p-product__content-title-ja {
  display: inline-block;
  padding-top: 10px;
}

.p-product__content-text-wrap {
  padding-top: 31px;
}

.p-product__content-text-title {
  font-size: 1.5rem;
  line-height: 1.29;
  font-weight: 700;
  color: #000233;
}

.p-product__content-text-description {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__content-text-description {
    padding-top: 40px;
    max-width: 480px;
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

.p-product__content-img-wrap {
  padding-top: 29px;
  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: 20px;
}
@media screen and (min-width: 768px) {
  .p-product__content-img-wrap {
    padding-top: 39px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}

.p-product__content-img-slant {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-product__content-img-slant {
    width: clamp(230px, 230px + (154) * (100vw - 768px) / (1366 - 768), 384px);
  }
}

.p-product__content-img-front {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-product__content-img-front {
    width: clamp(230px, 230px + (154) * (100vw - 768px) / (1366 - 768), 384px);
  }
}

.p-product__content-img-side {
  width: 192px;
}
@media screen and (min-width: 768px) {
  .p-product__content-img-side {
    width: clamp(118px, 118px + (74) * (100vw - 768px) / (1366 - 768), 192px);
  }
}

.p-product__content-summary {
  padding-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-product__content-summary {
    padding-top: 36px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-product__content-summary-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: 30px;
}

@media screen and (min-width: 768px) {
  .p-product__content-summary-wrap-1 {
    width: clamp(335px, 335px + (15) * (100vw - 768px) / (1366 - 768), 350px);
  }
}

.p-product__content-summary-item-title {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-product__content-summary-item-title {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

@media screen and (min-width: 768px) {
  .p-product__content-summary-item-text {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

/*----------------------------------
    voice
-----------------------------------*/
.p-voice {
  padding-block: 55px 56px;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-block: 112px 94px;
  }
}

.p-voice__boxes {
  padding-top: 45px;
  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: 35px;
}
@media screen and (min-width: 768px) {
  .p-voice__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(26px, 26px + (12) * (100vw - 768px) / (1366 - 768), 38px);
  }
}

.p-voice__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: 15px;
}
@media screen and (min-width: 768px) {
  .p-voice__box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    gap: 23px;
  }
}

.p-voice__box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-voice__box-head {
    gap: clamp(15px, 15px + (5) * (100vw - 768px) / (1366 - 768), 20px);
  }
}

.p-voice__box-img {
  width: 85px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-voice__box-img {
    width: clamp(60px, 60px + (25) * (100vw - 768px) / (1366 - 768), 85px);
  }
}

.p-voice__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-voice__box-title p {
  font-size: 1.0625rem;
  line-height: 1.82;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-voice__box-title p {
    font-size: clamp(0.875rem, 0.6341973244rem + 0.5016722408vw, 1.0625rem);
  }
}

@media screen and (min-width: 768px) {
  .p-voice__box-text p {
    font-size: clamp(0.875rem, 0.6341973244rem + 0.5016722408vw, 1.0625rem);
    line-height: 1.82;
  }
}

/*----------------------------------
    cta
-----------------------------------*/
.p-cta {
  background: url(../img/cta_bg-sp.webp) no-repeat center top/cover;
  padding-block: 68px 44px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-block: 58px 49px;
    background: url(../img/cta_bg-pc.webp) no-repeat center top/cover;
  }
}

.p-cta__title-wrapper {
  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-cta__main-title {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-cta__main-title {
    width: clamp(400px, 400px + (124) * (100vw - 768px) / (1366 - 768), 524px);
  }
}

.p-cta__sub-title {
  width: 234px;
}
@media screen and (min-width: 768px) {
  .p-cta__sub-title {
    width: clamp(250px, 250px + (30) * (100vw - 768px) / (1366 - 768), 280px);
    padding-top: 5px;
  }
}

.p-cta__inst-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-cta__btn {
  margin-top: 23px;
  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-cta__inst-img {
  width: 82px;
}
@media screen and (min-width: 768px) {
  .p-cta__inst-img {
    width: clamp(100px, 100px + (19) * (100vw - 768px) / (1366 - 768), 119px);
  }
}

.p-cta__inst-text p {
  font-size: 1.25rem;
  font-family: "Prompt", sans-serif;
  font-style: italic;
  line-height: 2.25;
  color: #add9cc;
  position: relative;
  top: -30px;
}

/*----------------------------------
    form
-----------------------------------*/
.p-form {
  padding-block: 35px 39px;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding-block: 95px 110px;
  }
}

.p-form__text-sub {
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-form__text-sub p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

.p-form__contents-title {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-form__contents-title {
    padding-top: 55px;
  }
}
.p-form__contents-title p {
  font-weight: 700;
  line-height: 1.81;
}
@media screen and (min-width: 768px) {
  .p-form__contents-title p {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #add9cc;
  border: 1px solid #ddd; /* ボーダーを透明に設定 */
  outline: none;
  padding-inline: 22px;
  padding-block: 13px 13px;
  line-height: 1.56;
  font-size: 1rem;
  -webkit-transition: background 0.4s ease, border 0.4s ease;
  transition: background 0.4s ease, border 0.4s ease;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    max-width: 483px;
  }
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border: 1px solid #add9cc;
  background: #cee8e0;
}

textarea {
  min-height: 336px;
}
@media screen and (min-width: 768px) {
  textarea {
    min-height: 333px;
    max-width: none;
  }
}

.contact-contents__items {
  padding-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
}
@media screen and (min-width: 768px) {
  .contact-contents__items {
    padding-top: 17px;
    gap: 28px;
  }
}

@media screen and (min-width: 768px) {
  .contact-contents__item-title label {
    font-size: 1.0625rem;
    line-height: 1.82;
  }
}

.contact-contents__item-input--text {
  padding-top: 8px;
}

/*----------------------------------
    送信ボタン
-----------------------------------*/
.contact__contents-form {
  -webkit-padding-before: 21px;
          padding-block-start: 21px;
}
@media screen and (min-width: 768px) {
  .contact__contents-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-padding-before: 33px;
            padding-block-start: 33px;
  }
}

.contact__contents-form input[type=submit] {
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000233;
  line-height: 1;
  display: block;
  width: 100%;
  min-height: 60px;
  border: 1px solid transparent;
  position: relative;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease;
  padding: 8px 60px 8px 60px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact__contents-form input[type=submit] {
    min-width: 400px;
    width: 300px;
    min-height: 50px;
  }
}
.contact__contents-form input[type=submit]:hover {
  opacity: 0.6;
}

.contact-contents__btn-wrapper {
  position: relative;
}
.contact-contents__btn-wrapper::after, .contact-contents__btn-wrapper::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, right 0.3s ease;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.contact-contents__btn-wrapper::after {
  content: "";
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-contents__btn-wrapper::before {
  content: "";
  top: 50%;
  right: 28px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #000;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  z-index: 1;
}
.contact-contents__btn-wrapper:hover::after {
  right: 18px;
  opacity: 0.6;
}
.contact-contents__btn-wrapper:hover::before {
  right: 24px;
  opacity: 0.6;
}

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

.u-pt-5 {
  padding-top: 5px;
}

@media screen and (min-width: 768px) {
  .u-pt-63-pc {
    padding-top: 63px;
  }
}

.u-pt-36 {
  padding-top: 31px;
}

.u-mt-n-5 {
  margin-top: -5px;
}

@media screen and (min-width: 768px) {
  .u-mt-n-7-pc {
    margin-top: -7px;
  }
}

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

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

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

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.u-color-white {
  color: #fff;
}

.u-color-main {
  color: #add9cc;
}

.u-b-color-white {
  border-color: #fff;
}

.u-bg-white {
  background-color: #fff;
}

.u-dib {
  display: inline-block;
}