@charset "UTF-8";
:root {
  --font-base: Noto Sans JP, system-ui, -apple-system, sans-serif;
  --font-gothic: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, sans-serif;
  --font-en: Montserrat, system-ui, -apple-system, sans-serif;
  --color-text: #1D2088;
  --color-main: #1D2088;
  --color-accent: #E94D96;
  --color-green: #82CCD2;
  --color-black: #434343;
  --color-yellow: #FFF9B9;
  --color-pink: #F8DFEC;
  --content-width: 1100px;
  --content-width-sm: 1000px;
  --content-width-l: 1400px;
  --z-header: 1000;
  --z-overlay: 2000;
  --shadow: 10px 10px 0px var(--color-main);
  --shadow-pink: 10px 10px 0px var(--color-accent);
  --shadow-pink--sm: 5px 5px 0px var(--color-accent);
}

.l-wrapper {
  overflow-x: clip;
}

.l-wrapper:before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: url(../../assets/img/fv_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -10;
}
@media screen and (max-width: 845px) {
  .l-wrapper:before {
    background-image: url(../../assets/img/fv_bg_sp.jpg);
  }
}

.p-hero {
  height: clamp(775.5px, 0px + 91.6666666667vw, 1100px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-hero {
    height: 100vh;
  }
}
@media screen and (max-width: 845px) {
  .p-hero {
    max-height: 731px;
  }
}

.p-hero__logo {
  position: absolute;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 845px) {
  .p-hero__logo {
    top: 10px;
    left: 10px;
  }
}
.p-hero__logo img {
  width: clamp(172.725px, 0px + 20.4166666667vw, 245px);
}
@media screen and (max-width: 845px) {
  .p-hero__logo img {
    width: 140px;
  }
}

.p-hero__title-image {
  position: absolute;
  top: 80px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 1024px) {
  .p-hero__title-image--heading {
    display: none;
  }
}
.p-hero__title-image img {
  width: clamp(651.42px, 0px + 77vw, 924px);
  width: clamp(700px, 48.125vw, 924px);
  height: auto;
}

.p-hero__main-image {
  position: absolute;
  top: 154px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 1024px) {
  .p-hero__main-image {
    top: clamp(197.4px, 0px + 23.3333333333vw, 280px);
  }
}
@media screen and (max-width: 845px) {
  .p-hero__main-image {
    top: 44px;
  }
}
.p-hero__main-image img {
  width: clamp(301.2px, 0px + 39.21875vw, 753px);
  width: clamp(600px, 39.21875vw, 753px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-hero__main-image img {
    width: clamp(393px, 91.3953488372vw, 500px);
    margin-inline: 10px;
  }
}
.p-hero__main-image {
  animation: floating-y 3s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.p-hero__range {
  position: absolute;
  top: 90%;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .p-hero__range {
    top: 585px;
  }
}

@media screen and (max-width: 1024px) {
  .p-hero__range-heading {
    margin-left: auto;
  }
}

.p-hero__range-date img {
  width: clamp(400px, 33.8541666667vw, 650px);
}
@media screen and (max-width: 1024px) {
  .p-hero__range-date img {
    width: clamp(246.75px, 0px + 29.1666666667vw, 350px);
  }
}
@media screen and (max-width: 845px) {
  .p-hero__range-date img {
    width: 315px;
  }
}

.p-hero__info-text {
  color: var(--color-text);
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(22.56px, 0px + 2.6666666667vw, 32px);
  line-height: 1.71875;
  letter-spacing: 0.075em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 100px;
  margin-top: clamp(131.835px, 0px + 15.5833333333vw, 187px);
}
@media screen and (max-width: 845px) {
  .p-hero__info-text {
    font-size: 22px;
    line-height: 1.6363636364;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 0;
  }
}

.c-fixed-btn {
  position: fixed;
  bottom: clamp(28.2px, 0px + 3.3333333333vw, 40px);
  right: clamp(28.2px, 0px + 3.3333333333vw, 40px);
  z-index: 100;
}
@media screen and (max-width: 845px) {
  .c-fixed-btn {
    bottom: 10px;
    right: 10px;
  }
}
.c-fixed-btn img {
  width: clamp(129px, 10.6770833333vw, 205px);
}
.c-fixed-btn a {
  -webkit-transition: scale 0.2s ease;
  transition: scale 0.2s ease;
  display: block;
}
.c-fixed-btn a:hover {
  scale: 1.08;
  -webkit-transition: scale 0.2s ease;
  transition: scale 0.2s ease;
}

.p-hero__object {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 845px) {
  .p-hero__object {
    display: none;
  }
}

.p-hero__object--left {
  left: clamp(121.965px, 0px + 14.4166666667vw, 173px);
  bottom: clamp(129.72px, 0px + 15.3333333333vw, 184px);
}
.p-hero__object--left img {
  width: clamp(200px, 20.1041666667vw, 386px);
}

.p-hero__object--left02 {
  bottom: clamp(133.245px, 0px + 15.75vw, 189px);
  left: clamp(-50px, 0px + -4.1666666667vw, -35.25px);
}
.p-hero__object--left02 img {
  width: clamp(130px, 9.0104166667vw, 173px);
}

.p-hero__object--left-top {
  top: clamp(86.715px, 0px + 10.25vw, 123px);
  left: clamp(68.385px, 0px + 8.0833333333vw, 97px);
}
.p-hero__object--left-top img {
  width: clamp(100px, 7.9166666667vw, 152px);
}

.p-hero__object--right {
  top: clamp(234.06px, 0px + 27.6666666667vw, 332px);
  right: clamp(88.125px, 0px + 10.4166666667vw, 125px);
}
.p-hero__object--right img {
  width: clamp(200px, 22.0833333333vw, 424px);
}

.p-hero__object--right02 {
  top: clamp(86.715px, 0px + 10.25vw, 123px);
  right: clamp(68.385px, 0px + 8.0833333333vw, 97px);
}
.p-hero__object--right02 img {
  width: clamp(140px, 9.4270833333vw, 181px);
}

.p-hero__object--right-bottom {
  right: clamp(-40px, 0px + -3.3333333333vw, -28.2px);
  bottom: clamp(155.1px, 0px + 18.3333333333vw, 220px);
}
.p-hero__object--right-bottom img {
  width: clamp(150px, 10.5208333333vw, 202px);
  width: clamp(200px, 15vw, 288px);
}

/* 初期状態（非表示） */
.p-hero__object {
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.8);
          transform: translateY(40px) scale(0.8);
}

/* アニメスタート後は100%の状態で固定される */
.p-hero__object.is-animated {
  -webkit-animation: popup 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
          animation: popup 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ぽよよんアニメ */
@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  55% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
  63% {
    -webkit-transform: translateY(0) scale(0.92, 1.08);
            transform: translateY(0) scale(0.92, 1.08);
  }
  72% {
    -webkit-transform: translateY(0) scale(1.05, 0.95);
            transform: translateY(0) scale(1.05, 0.95);
  }
  81% {
    -webkit-transform: translateY(0) scale(0.98, 1.02);
            transform: translateY(0) scale(0.98, 1.02);
  }
  90% {
    -webkit-transform: translateY(0) scale(1.01, 0.99);
            transform: translateY(0) scale(1.01, 0.99);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    /* ← 最終形をここで固定 */
    opacity: 1;
    /* ← 最終形をここで固定 */
  }
}
@keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  55% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
  63% {
    -webkit-transform: translateY(0) scale(0.92, 1.08);
            transform: translateY(0) scale(0.92, 1.08);
  }
  72% {
    -webkit-transform: translateY(0) scale(1.05, 0.95);
            transform: translateY(0) scale(1.05, 0.95);
  }
  81% {
    -webkit-transform: translateY(0) scale(0.98, 1.02);
            transform: translateY(0) scale(0.98, 1.02);
  }
  90% {
    -webkit-transform: translateY(0) scale(1.01, 0.99);
            transform: translateY(0) scale(1.01, 0.99);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    /* ← 最終形をここで固定 */
    opacity: 1;
    /* ← 最終形をここで固定 */
  }
}
.p-intro {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 6px solid var(--color-main);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  margin-top: clamp(73.32px, 0px + 8.6666666667vw, 104px);
  position: relative;
}
@media screen and (max-width: 845px) {
  .p-intro {
    margin-top: 19.0697674419vw;
  }
}

.p-intro__card {
  padding: clamp(70.5px, 0px + 8.3333333333vw, 100px) clamp(126.9px, 0px + 15vw, 180px) clamp(63.45px, 0px + 7.5vw, 90px);
}
@media screen and (max-width: 845px) {
  .p-intro__card {
    padding: 100px 30px;
  }
}

.p-intro__title {
  color: var(--color-accent);
  font-weight: 900;
  font-size: clamp(22.56px, 0px + 2.6666666667vw, 32px);
  line-height: 1.71875;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 845px) {
  .p-intro__title {
    font-size: 22px;
    line-height: 1.6363636364;
    letter-spacing: 0.05em;
  }
}

.p-intro__text {
  text-align: center;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 2.1111111111;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: clamp(16.92px, 0px + 2vw, 24px);
}
@media screen and (max-width: 845px) {
  .p-intro__text {
    font-size: 15px;
    line-height: 1.9333333333;
    letter-spacing: 0.05em;
  }
}

.p-intro__image {
  position: absolute;
}

.p-intro__image1 {
  top: 50%;
  left: -60px;
  translate: 0 -50%;
}
@media screen and (max-width: 845px) {
  .p-intro__image1 {
    top: 20px;
    left: -40px;
    translate: unset;
  }
  .p-intro__image1 img {
    width: 95px;
  }
}

.p-intro__image2 {
  top: -120px;
  right: -50px;
}
@media screen and (max-width: 845px) {
  .p-intro__image2 {
    top: -50px;
    right: -35px;
  }
  .p-intro__image2 img {
    width: 130px;
  }
}

.p-intro__image3 {
  bottom: -64px;
  right: 50px;
}
@media screen and (max-width: 845px) {
  .p-intro__image3 {
    right: 36px;
    bottom: -38px;
  }
  .p-intro__image3 img {
    width: 110px;
  }
}

.p-anchor-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(38.07px, 0px + 4.5vw, 54px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: clamp(895.35pxpx, 0pxpx + 105.8333333333pxvw, 1270pxpx);
  margin-inline: auto;
  margin-top: clamp(119.85px, 0px + 14.1666666667vw, 170px);
}
@media screen and (max-width: 1280px) {
  .p-anchor-links {
    gap: clamp(29.61px, 0px + 3.5vw, 42px);
  }
}
@media screen and (max-width: 1200px) {
  .p-anchor-links {
    width: 75%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
  }
}
@media screen and (max-width: 845px) {
  .p-anchor-links {
    width: min(100%, 430px);
    gap: 12px 21px;
  }
}

.p-anchor-links__link {
  padding-top: clamp(10.575px, 0px + 1.25vw, 15px);
  position: relative;
  display: block;
  width: clamp(145.23px, 0px + 17.1666666667vw, 206px);
  height: clamp(145.23px, 0px + 17.1666666667vw, 206px);
  background: var(--color-green);
  border-radius: calc(infinity * 1px);
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  color: #fff;
  text-align: center;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link {
    width: 118px;
    height: 118px;
    font-size: 13px;
    line-height: 1.3076923077;
    letter-spacing: 0em;
    padding-top: 8px;
  }
}
.p-anchor-links__link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  border-radius: calc(infinity * 1px);
  background: #fff;
  border: 3px solid var(--color-main);
  width: clamp(162.15px, 0px + 19.1666666667vw, 230px);
  height: clamp(162.15px, 0px + 19.1666666667vw, 230px);
  z-index: -1;
  -webkit-filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:before {
    width: 132px;
    height: 132px;
  }
}
.p-anchor-links__link .p-anchor-btn {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link .p-anchor-btn {
    width: 20px;
  }
}
.p-anchor-links__link:nth-of-type(1) .p-anchor-links__link-icon {
  width: 28.97px;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:nth-of-type(1) .p-anchor-links__link-icon {
    width: 20.68px;
  }
}
.p-anchor-links__link:nth-of-type(2) .p-anchor-links__link-icon {
  width: 32.5px;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:nth-of-type(2) .p-anchor-links__link-icon {
    width: 19.99px;
  }
}
.p-anchor-links__link:nth-of-type(3) .p-anchor-links__link-icon {
  width: 34.13px;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:nth-of-type(3) .p-anchor-links__link-icon {
    width: 22.39px;
  }
}
.p-anchor-links__link:nth-of-type(4) .p-anchor-links__link-icon {
  width: 50.66px;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:nth-of-type(4) .p-anchor-links__link-icon {
    width: 34.39px;
  }
}
.p-anchor-links__link:nth-of-type(5) .p-anchor-links__link-icon {
  width: 37.99px;
}
@media screen and (max-width: 845px) {
  .p-anchor-links__link:nth-of-type(5) .p-anchor-links__link-icon {
    width: 26.35px;
  }
}
@media (any-hover: hover) {
  .p-anchor-links__link:hover .p-anchor-btn {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
}

.p-stamp {
  margin-top: 110px;
}

.p-stamp__title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media screen and (max-width: 845px) {
  .p-stamp__title {
    gap: 10px;
  }
}
.p-stamp__title:before {
  content: "";
  background: url(../../assets/img/icon_stamp.svg) no-repeat;
  background-size: contain;
  --_w: 28.97px;
  --_h: 32.62px;
  width: var(--_w);
  height: var(--_h);
  margin-block: calc((1lh - var(--_w)) / 2);
  aspect-ratio: 1;
}
@media screen and (max-width: 845px) {
  .p-stamp__title:before {
    --_w: 21.86px;
    --_h: 24.62px;
  }
}

.p-stamp__list {
  position: relative;
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(42.3px, 0px + 5vw, 60px) clamp(10.575px, 0px + 1.25vw, 15px);
}
@media screen and (max-width: 845px) {
  .p-stamp__list {
    padding: 30px 22px;
  }
}

.p-stamp__list:before {
  content: "";
  position: absolute;
  top: clamp(-130px, 0px + -10.8333333333vw, -91.65px);
  right: clamp(-100px, 0px + -8.3333333333vw, -70.5px);
  background: url(../../assets/img/milk2.png) no-repeat;
  background-size: contain;
  width: clamp(142.41px, 0px + 16.8333333333vw, 202px);
  height: clamp(203.04px, 0px + 24vw, 288px);
  z-index: 2;
  -webkit-animation: tiltLoop 15s ease-in-out infinite;
          animation: tiltLoop 15s ease-in-out infinite;
  -webkit-transform-origin: top bottom;
          transform-origin: top bottom;
  /* ← 足元を軸にすると自然 */
}
@media screen and (max-width: 845px) {
  .p-stamp__list:before {
    display: none;
  }
}

@-webkit-keyframes tiltLoop {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    /* 左に傾く */
  }
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    /* 右に傾く */
  }
  75% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    /* 左弱め */
  }
  100% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    /* 中央に戻る */
  }
}

@keyframes tiltLoop {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    /* 左に傾く */
  }
  50% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    /* 右に傾く */
  }
  75% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    /* 左弱め */
  }
  100% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    /* 中央に戻る */
  }
}
.p-stamp__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
@media screen and (max-width: 845px) {
  .p-stamp__item {
    gap: 15px;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .p-stamp__item img {
    width: 67px;
    height: 67px;
    position: relative;
    top: -6px;
  }
}
.p-stamp__item + * {
  margin-top: 15px;
}
@media screen and (max-width: 845px) {
  .p-stamp__item + * {
    margin-top: 25px;
  }
}

.p-stamp__item-text {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 900;
}
@media screen and (max-width: 845px) {
  .p-stamp__item-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
}
.p-stamp__item-text span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 845px) {
  .p-stamp__item-text span {
    font-size: 12px;
  }
}

.p-stamp__button-wrap {
  padding-left: clamp(70.5px, 0px + 8.3333333333vw, 100px);
}
@media screen and (max-width: 845px) {
  .p-stamp__button-wrap {
    padding-left: unset;
  }
}

.p-stamp__button {
  background: var(--color-accent);
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0 var(--color-main);
          box-shadow: 5px 5px 0 var(--color-main);
  width: clamp(317.25px, 0px + 37.5vw, 450px);
  margin-inline: auto;
  padding: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  color: #fff;
  font-size: clamp(11.985px, 0px + 1.4166666667vw, 17px);
  line-height: 1.4705882353;
  letter-spacing: 0em;
  font-weight: bold;
  text-align: center;
  display: block;
  -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  border: 3px solid var(--color-main);
}
@media screen and (max-width: 845px) {
  .p-stamp__button {
    border-width: 2px;
    -webkit-box-shadow: 4px 4px 0 var(--color-main);
            box-shadow: 4px 4px 0 var(--color-main);
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    padding-block: 20px;
  }
}
@media (any-hover: hover) {
  .p-stamp__button:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    translate: 5px 5px;
    box-shadow: none;
    -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
}
.p-stamp__button span {
  display: block;
  font-weight: 900;
  font-size: clamp(15.51px, 0px + 1.8333333333vw, 22px);
  line-height: 1.3636363636;
  letter-spacing: 0em;
}
@media screen and (max-width: 845px) {
  .p-stamp__button span {
    font-size: 18px;
    line-height: 1.3888888889;
    letter-spacing: 0em;
  }
}

.p-stamp__button-text {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 20px;
  margin-bottom: clamp(42.3px, 0px + 5vw, 60px);
}
@media screen and (max-width: 845px) {
  .p-stamp__button-text {
    font-size: 11px;
    line-height: 1.5454545455;
  }
}

.p-spot {
  margin-top: 50px;
}

.p-spot__inner {
  padding: 70px 60px 50px;
  padding: clamp(49.35px, 0px + 5.8333333333vw, 70px) clamp(42.3px, 0px + 5vw, 60px) clamp(35.25px, 0px + 4.1666666667vw, 50px);
}
@media screen and (max-width: 845px) {
  .p-spot__inner {
    padding: 47.5px 25px 25px;
  }
}

.p-spot__title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media screen and (max-width: 845px) {
  .p-spot__title {
    gap: 10px;
  }
}
.p-spot__title:before {
  content: "";
  background: url(../../assets/img/icon_spot.svg) no-repeat;
  background-size: contain;
  --_w: 32.5px;
  --_h: 38.01px;
  width: var(--_w);
  height: var(--_h);
  margin-block: calc((1lh - var(--_w)) / 2);
  aspect-ratio: 1;
}
@media screen and (max-width: 845px) {
  .p-spot__title:before {
    --_w: 20.49px;
    --_h: 23.96px;
  }
}

.p-spot__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 845px) {
  .p-spot__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.p-spot__item {
  position: relative;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  background: #F8DFEC;
  padding: 35px;
}
@media screen and (max-width: 845px) {
  .p-spot__item {
    padding: 30px;
  }
}
.p-spot__item:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 51px;
  height: 51px;
}
@media screen and (max-width: 845px) {
  .p-spot__item:before {
    width: 45px;
    height: 45px;
    top: -22px;
  }
}
.p-spot__item.--train:before {
  background-image: url(../../assets/img/icon_train.svg);
}
.p-spot__item.--onsen:before {
  background-image: url(../../assets/img/icon_onsen.svg);
}

.p-spot__item-list {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.3888888889;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 845px) {
  .p-spot__item-list {
    font-size: 16px;
    line-height: 1.5625;
    letter-spacing: 0.05em;
  }
  .p-spot__item-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
.p-spot__item-list span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 1.5625;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 845px) {
  .p-spot__item-list span {
    font-size: 14px;
    line-height: 1.7857142857;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
  }
}
.p-spot__item-list ul > li + * {
  margin-top: 4px;
}
@media screen and (max-width: 845px) {
  .p-spot__item-list ul > li + * {
    margin-top: 0;
  }
}

.p-spot__item-link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-main);
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0px var(--color-accent);
          box-shadow: 5px 5px 0px var(--color-accent);
  color: #fff;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 2.1428571429;
  letter-spacing: 0em;
  padding: clamp(14.805px, 0px + 1.75vw, 21px) clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.1;
  margin-top: 20px;
  -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-spot__item-link {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2.1428571429;
    letter-spacing: 0em;
    -webkit-box-shadow: 4px 4px 0 var(--color-accent);
            box-shadow: 4px 4px 0 var(--color-accent);
    margin-top: 10px;
    width: 210px;
    margin-inline: auto;
  }
}
@media (any-hover: hover) {
  .p-spot__item-link:hover {
    translate: 5px 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
}
.p-spot__item-link:after {
  content: "";
  background: url(../../assets/img/btn_chevron.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 845px) {
  .p-spot__item-link:after {
    width: 18px;
    height: 18px;
  }
}

.p-spot__item-text {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-spot__item-text {
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.05em;
  }
}
.p-spot__item-text span {
  display: inline-block;
  font-size: clamp(22.56px, 0px + 2.6666666667vw, 32px);
  line-height: 1.21875;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: var(--font-en);
  margin-inline: 4px;
}
@media screen and (max-width: 845px) {
  .p-spot__item-text span {
    font-size: 27px;
    line-height: 1.2222222222;
    letter-spacing: 0.05em;
  }
}

.p-spot__sum {
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.44;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 900;
  margin-top: 20px;
}
@media screen and (max-width: 845px) {
  .p-spot__sum {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin-top: 15px;
  }
}
.p-spot__sum span {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: clamp(35.25px, 0px + 4.1666666667vw, 50px);
  line-height: 1.22;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-inline: 5px;
}
@media screen and (max-width: 845px) {
  .p-spot__sum span {
    font-size: 40px;
    line-height: 1.225;
    letter-spacing: 0.05em;
    position: relative;
    top: 3px;
  }
}

.p-goods {
  margin-top: 154px;
}
@media screen and (max-width: 845px) {
  .p-goods {
    margin-top: 129px;
  }
}

.p-goods__profile {
  position: relative;
  margin-inline: auto;
  width: clamp(712.05px, 0px + 84.1666666667vw, 1010px);
  margin-top: clamp(47.94px, 0px + 5.6666666667vw, 68px);
  border-radius: 30px;
  border: 6px solid var(--color-main);
  background: var(--color-yellow);
  padding: clamp(35.25px, 0px + 4.1666666667vw, 50px) clamp(49.35px, 0px + 5.8333333333vw, 70px) clamp(35.25px, 0px + 4.1666666667vw, 50px) clamp(56.4px, 0px + 6.6666666667vw, 80px);
  display: grid;
  grid-template-areas: "name image" "text image";
}
@media screen and (max-width: 845px) {
  .p-goods__profile {
    width: 100%;
    grid-template-areas: "image" "name" "text";
    padding: 45px 30px;
    margin-top: 73px;
  }
}
.p-goods__profile:before {
  content: "PROFILE";
  position: absolute;
  top: -25px;
  left: 40px;
  color: #fff;
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 2.375;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: var(--color-accent);
  border-radius: 10px;
  border: 3px solid var(--color-main);
  padding: 2px 20px;
}
@media screen and (max-width: 845px) {
  .p-goods__profile:before {
    left: 50%;
    translate: -50% 0;
    font-size: 16px;
    line-height: 2.375;
    letter-spacing: 0.05em;
  }
}

.p-goods__profile h4 {
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 2.12;
  letter-spacing: 0.05em;
  grid-area: name;
  align-self: flex-end;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-goods__profile h4 {
    font-size: 21px;
    line-height: 2.5238095238;
    letter-spacing: 0.05em;
    text-box-trim: trim-both;
    border: none;
    padding-bottom: unset;
    text-align: center;
    margin-top: 25px;
  }
}

.p-goods__profile p {
  grid-area: text;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.6428571429;
  letter-spacing: 0.025em;
  margin-top: 26.5px;
  padding-right: clamp(28.2px, 0px + 3.3333333333vw, 40px);
}
@media screen and (max-width: 845px) {
  .p-goods__profile p {
    font-size: 13px;
    line-height: 1.7692307692;
    letter-spacing: 0.025em;
    margin-top: 11px;
    padding-right: 0;
  }
}

.p-goods__profile img {
  grid-area: image;
  width: clamp(148.05px, 0px + 17.5vw, 210px);
}
@media screen and (max-width: 845px) {
  .p-goods__profile img {
    width: 172px;
    margin-inline: auto;
  }
}

.p-goods__container {
  position: relative;
  max-width: 1090px;
}

.p-goods__bg-image {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .p-goods__bg-image {
    display: none;
  }
}

.p-goods__bg-image01 {
  width: clamp(219.96px, 0px + 26vw, 312px);
  height: auto;
  top: clamp(231.24px, 0px + 27.3333333333vw, 328px);
  left: clamp(-195px, 0px + -16.25vw, -137.475px);
}

.p-goods__bg-image02 {
  width: clamp(369.42px, 0px + 43.6666666667vw, 524px);
  height: auto;
  top: clamp(352.5px, 0px + 41.6666666667vw, 500px);
  right: clamp(-240px, 0px + -20vw, -169.2px);
}

.p-goods__bg-image03 {
  width: clamp(369.42px, 0px + 43.6666666667vw, 524px);
  height: auto;
  top: clamp(1011.675px, 0px + 119.5833333333vw, 1435px);
  left: clamp(-240px, 0px + -20vw, -169.2px);
  scale: -1 1;
}

.p-goods__bg-image04 {
  width: clamp(219.96px, 0px + 26vw, 312px);
  height: auto;
  top: clamp(1392.375px, 0px + 164.5833333333vw, 1975px);
  right: clamp(-150px, 0px + -12.5vw, -105.75px);
  scale: -1 1;
}

.p-goods__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  color: #fff;
  -webkit-text-stroke: 8px var(--color-main);
  paint-order: stroke fill;
  font-weight: 900;
  font-size: clamp(42.3px, 0px + 5vw, 60px);
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 845px) {
  .p-goods__title {
    font-size: 35px;
    line-height: 1.4571428571;
    letter-spacing: 0.05em;
    text-align: center;
    -webkit-text-stroke: 6px var(--color-main);
  }
}
.p-goods__title:before {
  content: "";
  position: absolute;
  top: clamp(-48px, 0px + -4vw, -33.84px);
  left: 50%;
  translate: -50% 0;
  background: url(../../assets/img/icon_present.svg) no-repeat;
  background-size: contain;
  width: clamp(30.60405px, 0px + 3.6175vw, 43.41px);
  height: clamp(31.50645px, 0px + 3.7241666667vw, 44.69px);
}
@media screen and (max-width: 845px) {
  .p-goods__title:before {
    width: 33.01px;
    height: 33.98px;
    top: -45px;
  }
}

.p-goods__text {
  text-align: center;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 2.1111111111;
  letter-spacing: 0.05em;
  margin-top: 25px;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-goods__text {
    font-size: 15px;
    line-height: 1.9333333333;
    letter-spacing: 0.05em;
    margin-top: 20px;
  }
}

.p-goods__details {
  background: #fff;
  border-radius: calc(infinity * 1px);
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 2.375;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: clamp(7.05px, 0px + 0.8333333333vw, 10px) clamp(21.15px, 0px + 2.5vw, 30px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 25px;
}
@media screen and (max-width: 845px) {
  .p-goods__details {
    font-size: 14px;
    line-height: 2.7142857143;
    letter-spacing: 0.05em;
    gap: 7px;
  }
}
.p-goods__details:before {
  content: "";
  background: url(../../assets/img/icon_stamp_onsen.svg) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: inline-block;
}
@media screen and (max-width: 845px) {
  .p-goods__details:before {
    width: 27px;
    height: 26px;
  }
}

.p-goods__list {
  margin-top: clamp(56.4px, 0px + 6.6666666667vw, 80px);
}
@media screen and (max-width: 845px) {
  .p-goods__list {
    margin-top: 80px;
  }
}

.p-goods__item {
  border-radius: 30px;
  border: 6px solid var(--color-main);
  -webkit-box-shadow: 10px 10px 0px var(--color-main);
          box-shadow: 10px 10px 0px var(--color-main);
  position: relative;
  top: -6px;
  z-index: 10;
  background: #fff;
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(42.3px, 0px + 5vw, 60px) clamp(42.3px, 0px + 5vw, 60px) clamp(63.45px, 0px + 7.5vw, 90px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(39.48px, 0px + 4.6666666667vw, 56px);
}
.p-goods__item:first-of-type {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 845px) {
  .p-goods__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 107px 20px 20px 25px;
    gap: 40px;
    border-width: 4px;
    -webkit-box-shadow: 7px 7px 0 var(--color-main);
            box-shadow: 7px 7px 0 var(--color-main);
  }
  .p-goods__item:nth-of-type(3), .p-goods__item:nth-of-type(4) {
    padding-top: 129px;
  }
}
.p-goods__item--complete {
  display: grid;
  grid-template-columns: 366fr 510fr;
  gap: clamp(31.02px, 0px + 3.6666666667vw, 44px);
  padding: clamp(28.2px, 0px + 3.3333333333vw, 40px) clamp(28.2px, 0px + 3.3333333333vw, 40px) clamp(35.955px, 0px + 4.25vw, 51px) clamp(63.45px, 0px + 7.5vw, 90px);
}
@media screen and (max-width: 845px) {
  .p-goods__item--complete {
    padding: 90px 20px 20px 25px;
    grid-template-columns: 1fr;
  }
}
.p-goods__item + * {
  margin-top: clamp(56.4px, 0px + 6.6666666667vw, 80px);
}
.p-goods__item:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(110.05755px, 0px + 13.0091666667vw, 156.11px);
  height: clamp(109.0212px, 0px + 12.8866666667vw, 154.64px);
  position: absolute;
  top: clamp(-55px, 0px + -4.5833333333vw, -38.775px);
  left: clamp(-58px, 0px + -4.8333333333vw, -40.89px);
}
@media screen and (max-width: 845px) {
  .p-goods__item:before {
    top: -30px;
    left: -20px;
  }
}
.p-goods__item:nth-of-type(1):before {
  background-image: url(../../assets/img/medal01.png);
}
.p-goods__item:nth-of-type(2):before {
  background-image: url(../../assets/img/medal02.png);
}
.p-goods__item:nth-of-type(3):before {
  background-image: url(../../assets/img/medal03.png);
}
.p-goods__item:nth-of-type(4):before {
  background-image: url(../../assets/img/medal04.png);
}
.p-goods__item:nth-of-type(5):before {
  background-image: url(../../assets/img/medal05.png);
}

.p-goods__item-text-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 380px;
      -ms-flex: 1 1 380px;
          flex: 1 1 380px;
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-wrapper {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

@media screen and (max-width: 845px) {
  .p-goods__item-text-inner {
    padding-inline: 20px;
  }
}

.p-goods__item-text-wrapper:not(:has(.p-goods__item-text-sub)) .p-goods__item-text-sub--sm {
  margin-top: 10px;
}

.p-goods__item-text {
  font-size: clamp(21.855px, 0px + 2.5833333333vw, 31px);
  line-height: 1.2258064516;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.p-goods__item--complete .p-goods__item-text {
  margin-top: 30px;
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.52;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 845px) {
  .p-goods__item--complete .p-goods__item-text {
    margin-top: 10px;
  }
}
.p-goods__item--complete .p-goods__item-text:not(:first-of-type) {
  margin-top: 15px;
}
@media screen and (max-width: 845px) {
  .p-goods__item--complete .p-goods__item-text:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 845px) {
  .p-goods__item-text {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.7272727273;
    letter-spacing: 0.05em;
  }
  .p-goods__item-text.u-mt {
    margin-top: 4px;
  }
}

.p-goods__item-text .slash {
  width: 1px;
  height: 29px;
  display: inline-block;
  background: var(--color-main);
  position: relative;
  top: 3px;
  left: -2px;
  margin-inline: 10px;
  rotate: 20deg;
}

.p-goods__item-title {
  font-weight: 900;
  font-size: clamp(32.43px, 0px + 3.8333333333vw, 46px);
  line-height: 1.4347826087;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 845px) {
  .p-goods__item-title {
    font-size: 31px;
    line-height: 1.4516129032;
    letter-spacing: 0.05em;
  }
}
.p-goods__item-title.onsen-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 845px) {
  .p-goods__item-title.onsen-icon {
    gap: 8px;
  }
}
.p-goods__item-title.onsen-icon:after {
  content: "";
  background: url(../../assets/img/icon_stamp_onsen.svg) no-repeat;
  background-size: contain;
  width: clamp(40.89px, 0px + 4.8333333333vw, 58px);
  height: clamp(40.89px, 0px + 4.8333333333vw, 58px);
  display: inline-block;
}
@media screen and (max-width: 845px) {
  .p-goods__item-title.onsen-icon:after {
    width: 38px;
    height: 38px;
  }
}
.p-goods__item-title span {
  font-weight: 500;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 2.7142857143;
  letter-spacing: 0.05em;
  color: var(--color-black);
  vertical-align: middle;
  display: inline-block;
  margin-left: 18.5px;
  margin-left: clamp(13.0425px, 0px + 1.5416666667vw, 18.5px);
}
@media screen and (max-width: 845px) {
  .p-goods__item-title span {
    font-size: 11px;
    line-height: 2.7272727273;
    letter-spacing: 0.05em;
    position: relative;
    top: -2px;
  }
}

.p-goods__item-text-sub {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 2.1111111111;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub {
    font-size: 15px;
    line-height: 2.5333333333;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 8px;
  }
}
.p-goods__item-text-sub--sm {
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 2.375;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub--sm {
    font-size: 12px;
    line-height: 3.1666666667;
    letter-spacing: 0.05em;
    margin-top: -8px;
    display: inline-block;
  }
}

.p-goods__item-text-sub--sm {
  font-size: clamp(9.165px, 0px + 1.0833333333vw, 13px);
  line-height: 1.3846153846;
  letter-spacing: 0.025em;
  margin-top: 5px;
  display: inline-block;
}
.p-goods__item-text-sub--sm.u-mt {
  margin-top: 0;
  display: block;
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub--sm.u-mt {
    margin-top: 4px;
  }
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub--sm {
    font-size: 11px;
    line-height: 1.7272727273;
    letter-spacing: 0.05em;
  }
}

.p-goods__item-text-sub--md {
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 2.375;
  letter-spacing: 0.05em;
  margin-top: 5px;
  display: inline-block;
  line-height: 1.8;
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub--md {
    font-size: 12px;
    line-height: 3.1666666667;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

.p-goods__item-text-sub--color {
  color: var(--color-accent);
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin-top: 20px;
}
.p-goods__item--complete .p-goods__item-text-sub--color {
  margin-top: 10px;
}
@media screen and (max-width: 845px) {
  .p-goods__item--complete .p-goods__item-text-sub--color {
    margin-top: 5px;
  }
}
@media screen and (max-width: 845px) {
  .p-goods__item-text-sub--color {
    font-size: 12px;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
  }
}

.p-goods__item-image {
  margin-top: clamp(21.15px, 0px + 2.5vw, 30px);
}
@media screen and (max-width: 845px) {
  .p-goods__item-image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 845px) {
  .p-goods__item-image img {
    width: 100%;
  }
}

.p-goods__image {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 450px;
      -ms-flex: 0 1 450px;
          flex: 0 1 450px;
}
@media screen and (max-width: 845px) {
  .p-goods__image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.p-goods__image img {
  width: 100%;
}

.p-goods__label {
  border: 3px solid var(--color-main);
  border-radius: 10px;
  padding: 8px 22px;
  background: var(--color-accent);
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
@media screen and (max-width: 845px) {
  .p-goods__label {
    top: 20px;
    right: 20px;
    padding: 5px 10px;
  }
  .p-goods__label:not(:has(:nth-child(2 of p))) {
    padding-block: 11px;
  }
  .p-goods__label:has(.u-fz-sm) {
    padding-block: 10px;
  }
}
.p-goods__label.sp-only {
  display: none;
}
@media screen and (max-width: 845px) {
  .p-goods__label.sp-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-goods__label-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 845px) {
  .p-goods__label-row {
    gap: 10px;
  }
}

.p-goods__label p {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 2.1111111111;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 845px) {
  .p-goods__label p {
    font-size: 14px;
    line-height: 1.9285714286;
    letter-spacing: 0.05em;
  }
}

.p-goods__label p span {
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.52;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 845px) {
  .p-goods__label p span {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-goods__label .u-fz-sm {
  font-size: clamp(8.46px, 0px + 1vw, 12px);
  line-height: 2.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: block;
  margin-top: -10px;
  color: #fff;
}
@media screen and (max-width: 845px) {
  .p-goods__label .u-fz-sm {
    margin-top: unset;
    font-size: 12px;
    line-height: 2.25;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1;
    margin-top: 8px;
  }
}

.p-goods__label p:nth-child(2 of p) {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  color: var(--color-main);
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
  padding: 10px 14px;
}
@media screen and (max-width: 845px) {
  .p-goods__label p:nth-child(2 of p) {
    font-size: 14px;
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
    padding: 6px 9px;
  }
}

.p-goods__exchange {
  margin-top: 130px;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange {
    margin-top: 80px;
  }
}

.p-goods__exchange-heading {
  background: var(--color-yellow);
  border: 3px solid var(--color-main);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 20px;
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.44;
  letter-spacing: 0.05em;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: clamp(21.15px, 0px + 2.5vw, 30px) clamp(56.4px, 0px + 6.6666666667vw, 80px);
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-heading {
    border-radius: 10px;
    border-width: 4px;
    -webkit-box-shadow: 7px 7px 0 var(--color-main);
            box-shadow: 7px 7px 0 var(--color-main);
    font-size: 18px;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
    padding: 14px 44px;
  }
}

.p-goods__exchange-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(56.4px, 0px + 6.6666666667vw, 80px);
  margin-top: 40px;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-row {
    gap: 10px;
    white-space: nowrap;
  }
}

.p-goods__exchange-date-item {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-date-item {
    gap: 13px;
  }
}

.p-goods__exchange-circle {
  background: var(--color-main);
  border-radius: calc(infinity * 1px);
  color: #fff;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  font-size: clamp(14.1px, 0px + 1.6666666667vw, 20px);
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 900;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-circle {
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}

.p-goods__exchange-date {
  font-size: clamp(30.315px, 0px + 3.5833333333vw, 43px);
  line-height: 1.2325581395;
  letter-spacing: 0.025em;
  font-family: var(--font-en);
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-date {
    font-size: 23px;
    line-height: 1.2173913043;
    letter-spacing: 0.025em;
  }
}
.p-goods__exchange-date .u-fz-lg {
  font-size: clamp(59.22px, 0px + 7vw, 84px);
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-date .u-fz-lg {
    font-size: 40px;
    line-height: 1.225;
    letter-spacing: 0.05em;
  }
}
.p-goods__exchange-date .u-fz-sm {
  font-size: clamp(23.97px, 0px + 2.8333333333vw, 34px);
  line-height: 1.4411764706;
  letter-spacing: 0.05em;
  position: relative;
  top: -6px;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-date .u-fz-sm {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.05em;
    top: -4px;
  }
}
.p-goods__exchange-date .slash {
  width: 2px;
  height: clamp(42.3px, 0px + 5vw, 60px);
  background-color: #1D2088;
  display: inline-block;
  rotate: 22deg;
  margin-inline: 10px 15px;
}
@media screen and (max-width: 845px) {
  .p-goods__exchange-date .slash {
    height: 34px;
    margin-inline: 6px 10px;
  }
}

.p-goods__bottom-text {
  text-align: center;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  margin-top: 25px;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-goods__bottom-text {
    font-size: 11px;
    line-height: 1.7272727273;
    letter-spacing: 0.05em;
  }
}

.p-goods__retry {
  background: var(--color-pink);
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: clamp(50.76px, 0px + 6vw, 72px) clamp(76.845px, 0px + 9.0833333333vw, 109px) clamp(24.675px, 0px + 2.9166666667vw, 35px);
  border: 6px solid var(--color-main);
  position: relative;
  margin-top: clamp(119.85px, 0px + 14.1666666667vw, 170px);
}
@media screen and (max-width: 845px) {
  .p-goods__retry {
    margin-top: 108px;
    padding: 65px 20px;
    border-width: 4px;
    -webkit-box-shadow: 7px 7px 0 var(--color-main);
            box-shadow: 7px 7px 0 var(--color-main);
  }
}

.p-goods__retry-top-text {
  font-size: clamp(15.51px, 0px + 1.8333333333vw, 22px);
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  position: absolute;
  top: -36px;
  left: 50%;
  translate: -50% 0;
  border-radius: calc(infinity * 1px);
  font-weight: 900;
  background: #fff;
  text-align: center;
  padding: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  border: 4px solid var(--color-main);
  width: clamp(324.3px, 0px + 38.3333333333vw, 460px);
}
@media screen and (max-width: 845px) {
  .p-goods__retry-top-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 14px 18px;
    width: 296px;
    border-width: 3px;
    top: -30px;
  }
}
.p-goods__retry-top-text:before, .p-goods__retry-top-text:after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.p-goods__retry-top-text:before {
  bottom: -15px;
  right: 28px;
  width: 30px;
  height: 30px;
  border-radius: calc(infinity * 1px);
  border: 4px solid var(--color-main);
}
@media screen and (max-width: 845px) {
  .p-goods__retry-top-text:before {
    width: 20px;
    height: 20px;
    bottom: -12px;
    right: 20px;
    border-width: 3px;
  }
}
.p-goods__retry-top-text:after {
  bottom: -28px;
  right: 53px;
  width: 18px;
  height: 18px;
  border-radius: calc(infinity * 1px);
  border: 4px solid var(--color-main);
}
@media screen and (max-width: 845px) {
  .p-goods__retry-top-text:after {
    width: 10px;
    height: 10px;
    bottom: -18px;
    right: 40px;
    border-width: 3px;
  }
}

.p-goods__retry-title {
  width: min(294px, 100%);
  margin-inline: auto;
  height: auto;
}
@media screen and (max-width: 845px) {
  .p-goods__retry-title {
    width: min(218px, 100%);
  }
}
.p-goods__retry-title img {
  width: 100%;
}

.p-goods__retry-text {
  font-size: clamp(14.1px, 0px + 1.6666666667vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-top: clamp(14.1px, 0px + 1.6666666667vw, 20px);
}
@media screen and (max-width: 845px) {
  .p-goods__retry-text {
    font-size: 16px;
    line-height: 1.8125;
    letter-spacing: 0.025em;
    line-height: 2.5;
  }
}
.p-goods__retry-text span {
  background: var(--color-green);
  font-size: clamp(11.985px, 0px + 1.4166666667vw, 17px);
  line-height: 2;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-main);
  padding: clamp(5.64px, 0px + 0.6666666667vw, 8px) clamp(10.575px, 0px + 1.25vw, 15px);
  border-radius: 5px;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width: 845px) {
  .p-goods__retry-text span {
    padding: 8px 10px;
    font-size: 15px;
    line-height: 2.2666666667;
    letter-spacing: 0.05em;
  }
}
.p-goods__retry-text + * {
  margin-top: 5px;
}

.p-goods__retry-bottom-text {
  font-size: clamp(9.165px, 0px + 1.0833333333vw, 13px);
  line-height: 1.3846153846;
  letter-spacing: 0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(35.25px, 0px + 4.1666666667vw, 50px);
  font-weight: 500;
}
@media screen and (max-width: 845px) {
  .p-goods__retry-bottom-text {
    font-size: 11px;
    line-height: 1.7272727273;
    letter-spacing: 0.05em;
    margin-top: 35px;
    text-align: center;
  }
}

.p-exchange {
  margin-top: 110px;
}

.p-exchange__title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.p-exchange__title:before {
  content: "";
  background: url(../../assets/img/icon_exchange.svg) no-repeat;
  background-size: contain;
  width: 41.78px;
  height: 23.11px;
  margin-block: calc((1lh - 41.78px) / 2);
  aspect-ratio: 1;
}
@media screen and (max-width: 845px) {
  .p-exchange__title:before {
    width: 29.43px;
    height: 16.28px;
  }
}

.p-exchange__container {
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(31.725px, 0px + 3.75vw, 45px) clamp(31.725px, 0px + 3.75vw, 45px);
}
@media screen and (max-width: 845px) {
  .p-exchange__container {
    padding: 45px 25px;
  }
}

.p-exchange__text {
  text-align: center;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 845px) {
  .p-exchange__text {
    font-size: 16px;
    line-height: 1.6875;
    letter-spacing: 0em;
  }
}

.p-exchange__list {
  margin-top: clamp(52.875px, 0px + 6.25vw, 75px);
}

.p-exchange__item {
  position: relative;
  border: 3px solid var(--color-main);
  border-radius: 10px;
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(21.15px, 0px + 2.5vw, 30px) clamp(21.15px, 0px + 2.5vw, 30px);
}
@media screen and (max-width: 845px) {
  .p-exchange__item {
    padding: 40px 15px 15px;
  }
}
.p-exchange__item + * {
  margin-top: clamp(39.48px, 0px + 4.6666666667vw, 56px);
}
@media screen and (max-width: 845px) {
  .p-exchange__item + * {
    margin-top: 45px;
  }
}

.p-exchange__item-title {
  color: #fff;
  background: var(--color-main);
  border-radius: 10px;
  padding: clamp(14.1px, 0px + 1.6666666667vw, 20px) clamp(24.675px, 0px + 2.9166666667vw, 35px);
  position: absolute;
  top: -35px;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-title {
    top: -27px;
    padding: 15px 27px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}

.p-exchange__item-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-cards {
    grid-template-columns: 1fr;
  }
}

.p-exchange__item-card {
  background: #F7F7F7;
  border-radius: 10px;
  padding: clamp(21.15px, 0px + 2.5vw, 30px) clamp(17.625px, 0px + 2.0833333333vw, 25px);
}
@media screen and (max-width: 845px) {
  .p-exchange__item-card {
    padding: 24px 17px;
  }
}

.p-exchange__item-card-title {
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-card-title {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}

.p-exchange__item-address {
  margin-top: 20px;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-address {
    margin-top: 15px;
  }
}

.p-exchange__item-address-row {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 60px 1fr;
  gap: clamp(14.1px, 0px + 1.6666666667vw, 20px);
}
@media screen and (max-width: 845px) {
  .p-exchange__item-address-row {
    grid-template-columns: 53px 1fr;
    gap: 15px;
  }
}
.p-exchange__item-address-row + * {
  margin-top: 10px;
}

.p-exchange__item-address-row dt {
  font-weight: bold;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-address-row dt {
    font-size: 13px;
    line-height: 1.4615384615;
    letter-spacing: 0em;
  }
}

.p-exchange__item-address-row dd {
  font-weight: normal;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-address-row dd {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0em;
  }
}

.p-exchange__item-wrapper {
  background: #f7f7f7;
  padding: clamp(21.15px, 0px + 2.5vw, 30px) clamp(56.4px, 0px + 6.6666666667vw, 80px);
}
@media screen and (max-width: 845px) {
  .p-exchange__item-wrapper {
    padding: 24px 19px;
  }
}

.p-exchange__item-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-links {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
  }
}

.p-exchange__item-link {
  background: var(--color-accent);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 2.1428571429;
  letter-spacing: 0em;
  padding: clamp(15.51px, 0px + 1.8333333333vw, 22px) clamp(17.625px, 0px + 2.0833333333vw, 25px);
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-link {
    font-size: 13px;
    line-height: 2.3076923077;
    letter-spacing: 0em;
    padding: 15.5px 20px;
  }
}
.p-exchange__item-link:after {
  content: "";
  background: url(../../assets/img/btn_chevron--pink.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 845px) {
  .p-exchange__item-link:after {
    width: 18px;
    height: 18px;
  }
}

.p-exchange__item:not(:has(.p-exchange__item-cards, .p-exchange__item-wrapper)) {
  padding: clamp(46.53px, 0px + 5.5vw, 66px) clamp(17.625px, 0px + 2.0833333333vw, 25px) clamp(33.135px, 0px + 3.9166666667vw, 47px);
}

.p-faq {
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(0px, 0px + 0vw, 0px) clamp(91.65px, 0px + 10.8333333333vw, 130px);
}

.p-faq__title {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.p-faq__title:before {
  content: "";
  background: url(../../assets/img/icon_faq.svg) no-repeat;
  background-size: contain;
  width: 37.99px;
  height: 32.57px;
  margin-block: calc((1lh - 32.57px) / 2);
  aspect-ratio: 1;
}
@media screen and (max-width: 845px) {
  .p-faq__title:before {
    width: 29.51px;
    height: 25.3px;
  }
}

.p-faq__container {
  padding: clamp(42.3px, 0px + 5vw, 60px);
}
@media screen and (max-width: 845px) {
  .p-faq__container {
    padding: 45px 25px;
  }
}

.p-faq__item {
  border-radius: 20px;
  background-color: var(--color-pink);
  overflow: hidden;
  border: 3px solid var(--color-main);
}
.p-faq__item + * {
  margin-top: 10px;
}

.p-faq__a-wrapper {
  display: grid;
  -webkit-transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s;
  transition: grid-template-rows 0.3s, -ms-grid-rows 0.3s;
}

.p-faq__q {
  font-weight: bold;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
}

.p-faq__q::-webkit-details-marker {
  display: none;
}

.summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(22.56px, 0px + 2.6666666667vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: bold;
}
@media screen and (max-width: 845px) {
  .summary {
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    padding: 20px 24px 20px 20px;
  }
}

.summary::-webkit-details-marker {
  display: none !important;
}

.inner {
  overflow: hidden;
  padding-inline: 30px;
}
@media screen and (max-width: 845px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner p {
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.4285714286;
  letter-spacing: 0em;
  border-radius: 10px;
  background: #fff;
  margin-bottom: clamp(14.1px, 0px + 1.6666666667vw, 20px);
  padding: clamp(21.15px, 0px + 2.5vw, 30px);
}
@media screen and (max-width: 845px) {
  .inner p {
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    padding: 20px;
  }
}

.icon {
  position: relative;
  display: inline-block;
  inline-size: 1em;
  aspect-ratio: 1;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 845px) {
  .icon {
    width: 13px;
    height: 13px;
  }
}
.icon::before, .icon::after {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  width: 17px;
  margin: auto;
  content: "";
  background-color: var(--color-main);
  block-size: 2px;
}
@media screen and (max-width: 845px) {
  .icon::before, .icon::after {
    width: 13px;
    block-size: 1px;
  }
}
.icon::after {
  rotate: 90deg;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}

details.is-opened .icon::after {
  rotate: 0deg;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}

.p-caution {
  padding: clamp(105.75px, 0px + 12.5vw, 150px) clamp(0px, 0px + 0vw, 0px) clamp(133.95px, 0px + 15.8333333333vw, 190px);
  position: relative;
}
@media screen and (max-width: 845px) {
  .p-caution {
    padding-bottom: 110px;
  }
}
.p-caution:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}

.p-caution__inner {
  padding-block: clamp(49.35px, 0px + 5.8333333333vw, 70px);
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  position: relative;
}
@media screen and (max-width: 845px) {
  .p-caution__inner {
    padding-block: 60px;
  }
}

.p-caution__title {
  position: absolute;
  top: -36px;
  left: 50%;
  translate: -50% 0;
  font-size: clamp(15.51px, 0px + 1.8333333333vw, 22px);
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 900;
  background: var(--color-accent);
  color: #fff;
  border-radius: calc(infinity * 1px);
  padding: clamp(14.1px, 0px + 1.6666666667vw, 20px) clamp(28.2px, 0px + 3.3333333333vw, 40px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 845px) {
  .p-caution__title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 15px 30px;
    top: -28px;
  }
}

.p-caution__text {
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 845px) {
  .p-caution__text {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.025em;
  }
}

.p-leaflet {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(28.2px, 0px + 3.3333333333vw, 40px);
}

.p-leaflet a {
  min-width: 350px;
  width: clamp(246.75px, 0px + 29.1666666667vw, 350px);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background: var(--color-yellow);
  border: 3px solid var(--color-main);
  padding: clamp(19.035px, 0px + 2.25vw, 27px) clamp(28.2px, 0px + 3.3333333333vw, 40px);
  border-radius: 10px;
  -webkit-box-shadow: var(--shadow-pink--sm);
          box-shadow: var(--shadow-pink--sm);
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: bold;
  -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
  transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
@media screen and (max-width: 845px) {
  .p-leaflet a {
    min-width: 290px;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0em;
    padding: 23px;
  }
}
.p-leaflet a:before {
  content: "";
  background: url(../../assets/img/icon_download.svg) no-repeat;
  background-size: contain;
  width: 18.71px;
  height: 21.79px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 845px) {
  .p-leaflet a:before {
    width: 16.61px;
    height: 19.35px;
  }
}
@media (any-hover: hover) {
  .p-leaflet a:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    translate: 5px 5px;
    box-shadow: none;
    -webkit-transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease;
    transition: translate 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
}

.p-footer__inner {
  padding: clamp(95.88px, 0px + 11.3333333333vw, 136px) clamp(0px, 0px + 0vw, 0px) clamp(61.335px, 0px + 7.25vw, 87px);
  margin-top: -104px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 845px) {
  .p-footer__inner {
    margin-top: -25px;
    padding: 83px 30px 30px;
  }
}
.p-footer__inner:before {
  content: "";
  background: url(../../assets/img/footer_bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (max-width: 845px) {
  .p-footer__inner:before {
    background-image: url(../../assets/img/footer_bg_sp.png);
  }
}

.p-footer__illust {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 845px) {
  .p-footer__illust img {
    width: 125px;
  }
}

.p-footer__info {
  width: min(900px, 100% - 20px);
  margin-inline: auto;
  border-radius: 15px;
  background: #fff;
  padding: clamp(42.3px, 0px + 5vw, 60px) clamp(93.765px, 0px + 11.0833333333vw, 133px);
  margin-top: clamp(28.2px, 0px + 3.3333333333vw, 40px);
}
@media screen and (max-width: 845px) {
  .p-footer__info {
    padding: 45px 40px;
    margin-top: 53px;
    width: 100%;
  }
}

.p-footer__info-heading {
  font-size: clamp(14.1px, 0px + 1.6666666667vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 845px) {
  .p-footer__info-heading {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.p-footer__info-tel {
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-family: var(--font-en);
  font-size: clamp(21.15px, 0px + 2.5vw, 30px);
  line-height: 1.2333333333;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: clamp(21.15px, 0px + 2.5vw, 30px);
}
@media screen and (max-width: 845px) {
  .p-footer__info-tel {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}
.p-footer__info-tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-footer__info-tel a:before {
  content: "";
  background: url(../../assets/img/icon_tel.svg);
  background-size: contain;
  width: 35px;
  height: 35px;
  display: inline-block;
}
@media screen and (max-width: 845px) {
  .p-footer__info-tel a:before {
    width: 40px;
    height: 40px;
  }
}
.p-footer__info-tel span {
  font-family: var(--font-base);
  font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}

.p-footer__info-time {
  font-family: var(--font-en);
  font-size: clamp(17.625px, 0px + 2.0833333333vw, 25px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.p-footer__info-time span {
  background: var(--color-green);
  border-radius: calc(infinity * 1px);
  color: #fff;
  font-size: clamp(9.165px, 0px + 1.0833333333vw, 13px);
  line-height: 1.6153846154;
  letter-spacing: 0.05em;
  padding: clamp(4.23px, 0px + 0.5vw, 6px) clamp(10.575px, 0px + 1.25vw, 15px);
}

.p-footer__bottom-text {
  font-size: clamp(11.28px, 0px + 1.3333333333vw, 16px);
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: bold;
  margin-top: clamp(17.625px, 0px + 2.0833333333vw, 25px);
}
@media screen and (max-width: 845px) {
  .p-footer__bottom-text {
    font-size: 14px;
    line-height: 2.1428571429;
    letter-spacing: 0.05em;
  }
}
.p-footer__bottom-text span {
  font-size: clamp(9.87px, 0px + 1.1666666667vw, 14px);
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  margin-top: 5px;
  display: block;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 845px) {
  .p-footer__bottom-text span {
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
}

.p-footer__logo {
  text-align: center;
  background: #fff;
  padding-block: clamp(49.35px, 0px + 5.8333333333vw, 70px);
}
@media screen and (max-width: 845px) {
  .p-footer__logo {
    padding-block: 45px 160px;
  }
  .p-footer__logo img {
    width: 340px;
  }
}

.ahiru {
  position: absolute;
}

.ahiru1 {
  top: -50px;
  left: clamp(136.77px, 0px + 16.1666666667vw, 194px);
}
@media screen and (max-width: 845px) {
  .ahiru1 {
    top: -20px;
    left: 10px;
    width: 84px;
  }
}

.ahiru2 {
  right: clamp(205.155px, 0px + 24.25vw, 291px);
  top: clamp(-60px, 0px + -5vw, -42.3px);
  z-index: -2;
}
@media screen and (max-width: 845px) {
  .ahiru2 {
    width: 116px;
    right: 95px;
  }
}

.ahiru3 {
  top: -30px;
  right: clamp(-34px, 0px + -2.8333333333vw, -23.97px);
}
@media screen and (max-width: 845px) {
  .ahiru3 {
    width: 97px;
  }
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.js-fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.finish_txt p{
font-size: clamp(12.69px, 0px + 1.5vw, 18px);
  color: #E94D96;
}
@media screen and (max-width: 845px) {
.finish_txt p{
font-size: 15px;
}