@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red: #D01212;
  --color-green: #22C635;
  --font-color: #000;
  --font-jp: "M PLUS Rounded 1c", sans-serif;
  --font-en: "M PLUS Rounded 1c", sans-serif;
  --font-mincho: "Zen Old Mincho", serif;
  --hover-opacity: .7;
  --hover-transition: .3s;
  --leading-trim: calc((1em - 1lh) / 2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(html, body) {
  margin: 0;
}
:where(html, body):has(.l-gnavi.js-open) {
  overflow: hidden;
}

:where(html) {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 83px;
}
@media (max-width: 768px) {
  :where(html) {
    scroll-padding-top: 80px;
  }
}

:where(body) {
  position: relative;
  font-family: var(--font-jp);
  color: var(--font-color);
}

:where(h1, h2, h3, h4, h5, h6, p) {
  margin: 0;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:where(iframe) {
  max-width: 100%;
  vertical-align: bottom;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 37px 6px 13px;
}
@media (max-width: 768px) {
  .l-header {
    padding: 18px 28px 12px 14px;
  }
}
.l-header__logo {
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__contents {
  display: flex;
  gap: 31px;
  align-items: center;
}
.l-header__buttons {
  display: flex;
  gap: 9px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .l-header__buttons {
    display: none;
  }
}
.l-header__button {
  padding: 4px 29px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 37.8px;
  color: #FFF;
  letter-spacing: 0.9px;
  background: #06C755;
  border-radius: 54px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.l-header__button:hover {
  background-color: #08E361;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(8px);
}
.l-header.js-scroll {
  background: #fff;
}
.l-header.js-scroll .l-header__logo,
.l-header.js-scroll .l-header__buttons {
  opacity: 1;
}

.l-wrapper {
  min-width: 1358px;
  overflow: clip;
}
@media (max-width: 768px) {
  .l-wrapper {
    min-width: auto;
  }
}

.l-hamburger {
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 34px;
  cursor: pointer;
}
.l-hamburger__item {
  width: 100%;
  height: 3px;
  background: #FFF;
  border-radius: 9999px;
  transition: transform 0.3s;
}
.l-hamburger.js-active .l-hamburger__item {
  background: #ED6D0F;
}
.l-hamburger.js-active .l-hamburger__item:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.l-hamburger.js-active .l-hamburger__item:nth-child(2) {
  opacity: 0;
}
.l-hamburger.js-active .l-hamburger__item:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.l-header.js-scroll .l-hamburger__item {
  background: #ED6D0F;
}

.l-gnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9999;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.l-gnavi.js-open {
  z-index: 9999;
  pointer-events: auto;
  opacity: 1;
}
@media (any-hover: hover) {
  .l-gnavi a {
    transition: opacity 0.3s;
  }
  .l-gnavi a:hover {
    opacity: 0.7;
  }
}
.l-gnavi__inner {
  width: fit-content;
  height: 100dvh;
  padding: 114px 48px 113px 74px;
  margin-right: 0;
  margin-left: auto;
  overflow: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .l-gnavi__inner {
    display: grid;
    align-items: center;
    width: 100%;
    padding: 65px 0;
  }
}
.l-gnavi__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .l-gnavi__list {
    gap: 25px;
    width: fit-content;
    margin-inline: auto;
  }
}
.l-gnavi__link {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #ED6D0F;
}
@media (max-width: 768px) {
  .l-gnavi__link {
    font-size: 18px;
    line-height: 28px;
    color: #ED6D0F;
  }
}
.l-gnavi.js-open .l-gnavi__inner {
  transform: translateX(0);
}

.l-footer {
  padding: 108px 100px 78px;
  background: #0081CC;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 42px 0 25px;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 58px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .l-footer__logo {
    width: 249px;
  }
}
.l-footer__logo a {
  transition: opacity 0.3s;
}
.l-footer__logo a:hover {
  opacity: 0.5;
}
.l-footer__sns {
  display: flex;
  gap: 50px;
  padding: 0;
  margin: 0;
  margin-bottom: 34px;
  list-style: none;
}
@media (max-width: 768px) {
  .l-footer__sns {
    gap: 40px;
    justify-content: center;
    margin-bottom: 92px;
  }
}
.l-footer__sns a {
  transition: opacity 0.3s;
}
.l-footer__sns a:hover {
  opacity: 0.5;
}
.l-footer__sponsor {
  margin-bottom: 33px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
}
@media (max-width: 768px) {
  .l-footer__sponsor {
    font-size: 16px;
    text-align: center;
  }
}
.l-footer__contact {
  margin-bottom: 27px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  color: #FFF;
}
@media (max-width: 768px) {
  .l-footer__contact {
    margin-bottom: 23px;
    font-size: 14px;
    text-align: center;
  }
}
.l-footer__contact a {
  transition: opacity 0.3s;
}
.l-footer__contact a:hover {
  opacity: 0.5;
}
.l-footer__privacy {
  margin-bottom: 50px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  color: #FFF;
}
@media (max-width: 768px) {
  .l-footer__privacy {
    margin-bottom: 46px;
    font-size: 14px;
    text-align: center;
  }
}
.l-footer__privacy a {
  transition: opacity 0.3s;
}
.l-footer__privacy a:hover {
  opacity: 0.5;
}
.l-footer__copyright {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  color: #FFF;
}
@media (max-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
  }
}

.fixed-line {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 100;
  display: none;
}
@media (max-width: 768px) {
  .fixed-line {
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .fixed-line.is-active {
    pointer-events: auto;
    opacity: 1;
  }
}
.fixed-line img {
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.1));
  transition: transform 0.3s, filter 0.3s;
}
.fixed-line:hover img {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  transform: translateY(8px);
}

.c-modal01 {
  position: relative;
  z-index: 9999;
}
.c-modal01__overlay {
  position: fixed;
  inset: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}
.c-modal01__container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 1000px;
  min-width: 1000px;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 148px);
  overflow: hidden;
  cursor: auto;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .c-modal01__container {
    min-width: auto;
  }
}
.c-modal01__container:has(.p-partner__item) {
  width: 756px;
  min-width: 756px;
}
@media (max-width: 768px) {
  .c-modal01__container:has(.p-partner__item) {
    width: 291px;
    min-width: auto;
  }
}
.c-modal01__inner {
  height: 100%;
  padding: 54px 0 0;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .c-modal01__inner:has(.c-modal01__close--character) {
    position: relative;
  }
}
.c-modal01__inner:has(.p-partner__item) {
  position: relative;
}
.c-modal01__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  aspect-ratio: 1;
  padding: 0;
  font-size: 0;
  color: #FFF;
  cursor: pointer;
  outline: none;
  background: url("../img/modal_close.svg") no-repeat center center/contain;
  border: none;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .c-modal01__close--character {
    top: 95px;
    width: 56px;
    background-image: url("../img/modal_close_orange.svg");
  }
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .c-modal01__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .c-modal01__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .c-modal01__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .c-modal01__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* partner marquee (Swiperを使わない無限スライド) */
.p-slider-marquee {
  overflow: hidden;
}
.p-slider-marquee + .p-slider-marquee {
  margin-top: 27px;
}

.p-slider-marquee__track {
  display: flex;
  gap: 23px;
  width: max-content;
  transform: translateZ(0);
  /* JSで --marquee-width / duration を設定 */
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* 右→左（通常） */
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-width, 0px)), 0, 0);
  }
}
/* 逆方向（左→右）は reverse で反転 */
.p-slider-marquee[data-dir=right] .p-slider-marquee__track {
  animation-direction: reverse;
}

/* 途中で潰れないように */
.p-slider-marquee__track > * {
  flex: 0 0 auto;
}

.p-fv {
  position: relative;
}
.p-fv__img {
  display: block;
  width: 100%;
  height: auto;
}
.p-fv__character-wakun {
  position: absolute;
  top: 63%;
  right: 26%;
  width: 11.9293078056%;
  height: auto;
  animation: yurayura 2s;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-wakun {
    top: 73%;
    right: 47%;
    width: 24.1025641026%;
  }
}
.p-fv__character-wakun:hover + .p-fv__bubble {
  opacity: 1;
  animation: bubble 0.3s;
  animation-fill-mode: forwards;
}
.p-fv__character-wakun-bubble {
  position: absolute;
  top: 45%;
  right: 22%;
  z-index: 2;
  width: 16.3475699558%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .p-fv__character-wakun-bubble {
    top: 58%;
    right: 26%;
    width: 45%;
  }
}
.p-fv__character-owl {
  position: absolute;
  top: 52%;
  right: 14%;
  width: 12.1502209131%;
  height: auto;
  animation: yurayura 3s;
  animation-timing-function: steps(2, end);
  animation-delay: 4s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-owl {
    top: 73%;
    right: 23%;
    width: 18.4615384615%;
  }
}
.p-fv__character-squirrel {
  position: absolute;
  top: 32%;
  right: 15%;
  width: 8.9101620029%;
  height: auto;
  animation: yurayura 3.5s;
  animation-timing-function: steps(2, end);
  animation-delay: 2.5s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-squirrel {
    top: 48%;
    right: 3%;
    width: 20.5128205128%;
  }
}
.p-fv__character-squirrel:hover + .p-fv__bubble {
  opacity: 1;
  animation: bubble 0.3s;
  animation-fill-mode: forwards;
}
.p-fv__character-squirrel-bubble {
  position: absolute;
  top: 19%;
  right: 13%;
  z-index: 2;
  width: 11.7820324006%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .p-fv__character-squirrel-bubble {
    top: 34%;
    right: 2%;
    width: 35%;
  }
}
.p-fv__character-koala {
  position: absolute;
  top: 13%;
  right: 23%;
  width: 7.5846833579%;
  height: auto;
  animation: yurayura 3s;
  animation-timing-function: steps(2, end);
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-koala {
    top: 13%;
    right: 2%;
    width: 17.4358974359%;
  }
}
.p-fv__character-rabbit {
  position: absolute;
  top: 71%;
  left: 24%;
  width: 7.4374079529%;
  height: auto;
  animation: yurayura 3s;
  animation-timing-function: steps(2, end);
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-rabbit {
    top: 75%;
    left: 10%;
    width: 16.9230769231%;
  }
}
.p-fv__character-beaver {
  position: absolute;
  top: 55%;
  left: 15%;
  width: 9.8674521355%;
  height: auto;
  animation: yurayura 3s;
  animation-timing-function: steps(2, end);
  animation-delay: 3s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-beaver {
    top: 49%;
    left: 1%;
    width: 22.5641025641%;
  }
}
.p-fv__character-beaver:hover + .p-fv__bubble {
  opacity: 1;
  animation: bubble 0.3s;
  animation-fill-mode: forwards;
}
.p-fv__character-beaver-bubble {
  position: absolute;
  top: 48%;
  left: 21%;
  z-index: 2;
  width: 12.2238586156%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .p-fv__character-beaver-bubble {
    top: 37%;
    left: 13%;
    width: 32%;
  }
}
.p-fv__character-panda {
  position: absolute;
  top: 32%;
  left: 16%;
  width: 9.204712813%;
  height: auto;
  animation: yurayura 3s;
  animation-timing-function: steps(2, end);
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-panda {
    top: 80%;
    left: 70%;
    width: 21.0256410256%;
  }
}
.p-fv__character-panda:hover + .p-fv__bubble {
  opacity: 1;
  animation: bubble 0.3s;
  animation-fill-mode: forwards;
}
@media (max-width: 768px) {
  .p-fv__character-panda:hover + .p-fv__bubble {
    display: none;
  }
}
.p-fv__character-panda-bubble {
  position: absolute;
  top: 15%;
  left: 10%;
  z-index: 2;
  width: 10.530191458%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-fv__character-dog {
  position: absolute;
  top: 15%;
  left: 24%;
  width: 8.6892488954%;
  height: auto;
  animation: yurayura 2s;
  animation-timing-function: steps(2, end);
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .p-fv__character-dog {
    top: 10%;
    left: 3%;
    width: 20%;
  }
}
.p-fv__character-dog:hover + .p-fv__bubble {
  opacity: 1;
  animation: bubble 0.3s;
  animation-fill-mode: forwards;
}
.p-fv__character-dog-bubble {
  position: absolute;
  top: 15%;
  left: 10%;
  z-index: 2;
  display: none;
  width: 10.530191458%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .p-fv__character-dog-bubble {
    top: 0%;
    left: 10%;
    display: block;
    width: 40%;
  }
}
.p-fv__button {
  position: absolute;
  top: 81.5%;
  left: 50%;
  display: block;
  width: 25.3313696613%;
  padding: 0.5154639175%;
  font-size: max(20px, 1.4727540501vw);
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  color: #FFF;
  text-align: center;
  letter-spacing: 1px;
  background: #06C755;
  border-radius: 60px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .p-fv__button {
    top: 59%;
    width: 63.3333333333%;
    padding-block: 3.0769230769% 4.1025641026%;
    font-size: 3.8461538462vw;
    line-height: 1;
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.1);
  }
}
.p-fv__button:hover {
  background-color: #08E361;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translate(-50%, 10px);
}
@media (max-width: 768px) {
  .p-fv__button:hover {
    transform: translate(-50%, 7px);
  }
}
.p-fv__tap-navi {
  display: none;
}
@media (max-width: 768px) {
  .p-fv__tap-navi {
    position: absolute;
    right: 4%;
    bottom: 2%;
    display: block;
    width: 47.4358974359%;
    filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.15));
    animation: tateyure2 2s;
    animation-iteration-count: infinite;
  }
}
.p-fv__tap-navi-yubi {
  display: none;
}
@media (max-width: 768px) {
  .p-fv__tap-navi-yubi {
    position: absolute;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    animation: yubi 2s;
    animation-iteration-count: infinite;
  }
  .p-fv__tap-navi-yubi--wakun {
    top: 84%;
    right: 53%;
  }
  .p-fv__tap-navi-yubi--squirrel {
    top: 55%;
    right: 9%;
  }
  .p-fv__tap-navi-yubi--beaver {
    top: 54%;
    left: 8%;
  }
  .p-fv__tap-navi-yubi--dog {
    top: 14%;
    left: 6%;
  }
}
.p-fv:has(.p-fv__tap-navi:hover) .p-fv__tap-navi-yubi {
  opacity: 1;
}

@keyframes yurayura {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes yubi {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes bubble {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.p-character {
  position: relative;
  z-index: 2;
  padding: 34px 0 0;
}
.p-character__button {
  display: block;
  width: fit-content;
  padding: 12px 46px 13px;
  margin-inline: auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  background: #ED6D0F;
  border-radius: 25px;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.p-character__button:hover {
  background-color: #F58A3C;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .p-character__button {
    max-width: calc(100% - 30px);
    padding-inline: 21px;
    font-size: 16px;
    border-radius: 9999px;
  }
}

.character-modal__title {
  width: fit-content;
  padding: 12px 46px 13px;
  margin-inline: auto;
  margin-top: -49px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
  background: #ED6D0F;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .character-modal__title {
    width: 330px;
    padding: 12px 0;
    font-size: 16px;
  }
}
.character-modal__content {
  padding: 40px;
  margin-top: 17px;
  background: #fff;
  border-radius: 30px;
}
.character-modal__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}
@media (max-width: 768px) {
  .character-modal__list {
    grid-template-columns: repeat(1, 1fr);
    text-align: left;
  }
}
.character-modal__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 768px) {
  .character-modal__item {
    grid-template-rows: auto;
    grid-template-columns: 100px 1fr;
    grid-row: auto;
    gap: 10px;
    align-items: center;
  }
}
.character-modal__image {
  align-self: flex-end;
}
.character-modal__info {
  margin-top: 10px;
}
.character-modal__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 768px) {
  .character-modal__name {
    margin-top: 0;
    font-size: 16px;
  }
}
.character-modal__description {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.p-intro {
  margin-top: -23px;
}
@media (max-width: 768px) {
  .p-intro {
    margin-top: 34px;
  }
}
.p-intro__inner {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.p-intro__content {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-intro__content {
    top: 59px;
    flex-direction: column;
    gap: 62px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .p-intro__deco {
    position: relative;
    top: -6px;
    left: -4px;
  }
}
.p-intro__image {
  margin-top: -36px;
  margin-left: -25px;
}
@media (max-width: 768px) {
  .p-intro__image {
    margin-top: 0;
    margin-left: 6px;
  }
}
.p-intro__text {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 55px;
  color: #000;
  letter-spacing: 1.2px;
}
@media (max-width: 768px) {
  .p-intro__text {
    position: relative;
    left: 23px;
    margin-top: 0;
    font-size: 18px;
    font-size: min(4.6153846154vw, 18px);
    font-weight: 700;
    line-height: 2.56;
    letter-spacing: 0.9px;
  }
}
.p-intro__bottom {
  margin-top: 37px;
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .p-intro__bottom {
    margin-top: 97px;
    margin-bottom: 49px;
  }
}
.p-intro__bottom-text {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-intro__bottom-text {
    font-size: 23px;
    font-size: clamp(10px, 5.8974358974vw, 23px);
    line-height: 40px;
    white-space: nowrap;
  }
}
.p-intro__bottom-text::before, .p-intro__bottom-text::after {
  position: absolute;
}
.p-intro__bottom-text::before {
  top: -10px;
  left: -138px;
  content: url("../img/intro_bottom_deco_left.svg");
}
@media (max-width: 768px) {
  .p-intro__bottom-text::before {
    top: 659px;
    left: 9px;
    z-index: 2;
    display: none;
    content: url("../img/intro_bottom_deco_left_sp.svg");
  }
}
.p-intro__bottom-text::after {
  top: -16px;
  right: -223px;
  content: url("../img/intro_bottom_deco_right.svg");
}
@media (max-width: 768px) {
  .p-intro__bottom-text::after {
    top: 129px;
    right: 12px;
    z-index: 2;
    display: none;
    content: url("../img/intro_bottom_deco_right_sp.svg");
  }
}

.p-partner__gold {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 865px;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 33px;
}
@media (max-width: 768px) {
  .p-partner__gold {
    position: relative;
    grid-template-columns: 1fr;
    width: 291px;
  }
}
.p-partner__gold::before, .p-partner__gold::after {
  position: absolute;
}
.p-partner__gold::before {
  display: none;
}
@media (max-width: 768px) {
  .p-partner__gold::before {
    top: 490px;
    left: -40px;
    z-index: 2;
    display: block;
    content: url("../img/intro_bottom_deco_left_sp.svg");
  }
}
.p-partner__gold::after {
  display: none;
}
@media (max-width: 768px) {
  .p-partner__gold::after {
    top: -46px;
    right: -47px;
    z-index: 2;
    display: block;
    content: url("../img/intro_bottom_deco_right_sp.svg");
  }
}
.p-partner__item {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 13px;
  padding: 22px 35px 33px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 33px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .p-partner__item {
    padding: 28px 23px 25px;
  }
}
.p-partner__item--orange {
  background: #ED6D0F;
}
.p-partner__item--orange:hover {
  background: #F58A3C;
}
.p-partner__item--blue {
  background: #0081CC;
}
.p-partner__item--blue:hover {
  background: #0095EC;
}
.p-partner__item--yellow {
  background: #FDD34E;
}
.p-partner__item--yellow:hover {
  background: #FDE28E;
}
.p-partner__item--slide-item {
  gap: 11px;
  width: 265px;
  padding: 19px 32px 27px;
}
.p-partner__item--modal {
  padding: 30px 54px 53px;
}
@media (max-width: 768px) {
  .p-partner__item--modal {
    padding-inline: 23px;
  }
}
.p-partner__item:not(:has(.p-partner__title)) {
  padding-top: 79px;
}
.p-partner__item:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
.p-partner__title {
  align-self: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #FFF;
  text-align: center;
}
.p-partner__title--gold {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .p-partner__title--gold {
    font-size: 18px;
    line-height: 22px;
  }
}
.p-partner__title--long-text {
  margin-inline: -15px;
}
.p-partner__content--modal {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-partner__content--modal {
    grid-template-columns: 1fr;
  }
}
.p-partner__image img {
  border-radius: 10px;
}
.p-partner__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #FFF;
}
@media (max-width: 768px) {
  .p-partner__text--slide {
    display: none;
  }
}
.p-partner__text--soon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .p-partner__text--sp-center {
    text-align: center;
  }
}

.p-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.p-slider .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-slider .swiper-a {
  margin-bottom: 27px;
}

.c-modal01 .p-partner__item:hover {
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  transform: none;
}
.c-modal01 .p-partner__item--orange:hover {
  background: #ED6D0F;
}
.c-modal01 .p-partner__item--blue:hover {
  background: #0081CC;
}
.c-modal01 .p-partner__item--yellow:hover {
  background: #FDD34E;
}
.c-modal01:has(.p-partner__item--yellow) .p-partner__title,
.c-modal01:has(.p-partner__item--yellow) .p-partner__text {
  color: #000;
}

.p-arrow {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  margin-block: 131px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-arrow {
    margin-block: 113px 120px;
  }
}
.p-arrow__arrow {
  position: absolute;
  inset: 0;
  top: 32px;
  z-index: -1;
  margin: auto;
  animation: tateyure 2s;
  animation-iteration-count: infinite;
}
.p-arrow__text {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-arrow__text {
    font-size: 23px;
    font-size: clamp(10px, 5.8974358974vw, 23px);
    line-height: 40px;
    white-space: nowrap;
  }
}

@keyframes tateyure {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes tateyure2 {
  0% {
    bottom: calc(2% - 2px);
  }
  50% {
    bottom: calc(2% + 2px);
  }
  100% {
    bottom: calc(2% - 2px);
  }
}
.p-reservation {
  position: relative;
  padding: 78px 0 86px;
  background: #06C755;
  transition: background-color 0.3s;
}
.p-reservation:has(.p-reservation__button:hover) {
  background: #08E361;
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-left {
  transform: rotate(-3deg);
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-right {
  transform: rotate(6deg);
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-right-bubble {
  transform: rotate(-5deg);
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-balloon {
  transform: rotate(3deg);
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-dog {
  transform: rotate(-5deg);
}
.p-reservation:has(.p-reservation__button:hover) .p-reservation__deco-tent {
  transform: rotate(5deg);
}
@media (max-width: 768px) {
  .p-reservation {
    padding: 62px 0 0;
  }
}
.p-reservation__deco-left {
  position: absolute;
  top: 82px;
  left: calc(50% - 302px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-left {
    top: 37px;
    left: calc(50% - 169px);
  }
}
.p-reservation__deco-right {
  position: absolute;
  top: 93px;
  right: calc(50% - 581px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-right {
    position: relative;
    top: 40px;
    left: 27px;
    display: block;
    margin: 0 auto;
  }
}
.p-reservation__deco-right-bubble {
  position: absolute;
  top: 73px;
  right: calc(50% - 397px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-right-bubble {
    display: none;
  }
}
.p-reservation__deco-balloon {
  position: absolute;
  top: 82px;
  left: calc(50% - 425px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-balloon {
    top: 39px;
    right: calc(50% - 172px);
    left: auto;
    width: 55px;
  }
}
.p-reservation__deco-dog {
  position: absolute;
  top: 196px;
  left: calc(50% - 547px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-dog {
    display: none;
  }
}
.p-reservation__deco-tent {
  position: absolute;
  top: 295px;
  left: calc(50% - 418px);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__deco-tent {
    display: none;
  }
}
.p-reservation__title {
  margin-bottom: 33px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-reservation__title img {
    width: 170px;
  }
}
.p-reservation__text {
  margin-bottom: 30px;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .p-reservation__text {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 35px;
  }
}
.p-reservation__button {
  display: flex;
  gap: 22px;
  align-items: center;
  width: fit-content;
  padding: 17px 57px;
  margin-inline: auto;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  color: #000;
  letter-spacing: 1.35px;
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 10px 0 #00A845;
  transition: box-shadow 0.3s, transform 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .p-reservation__button {
    gap: 11px;
    padding: 14px 19px;
    margin-bottom: -50px;
    font-size: 20px;
    line-height: 1.4;
  }
}
.p-reservation__button::before {
  display: block;
  width: 68px;
  aspect-ratio: 1;
  content: "";
  background: url("../img/reservation_line.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .p-reservation__button::before {
    width: 45px;
  }
}
.p-reservation__button:hover {
  box-shadow: 0 0 0 #00A845;
  transform: translateY(10px);
}

.p-reservation-line {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.p-reservation-line__deco {
  position: absolute;
}
@media (max-width: 768px) {
  .p-reservation-line__deco {
    display: none;
  }
}
.p-reservation-line__deco--01 {
  top: 124px;
  left: -160px;
}
.p-reservation-line__deco--02 {
  top: 9px;
  right: -173px;
}
.p-reservation-line__lead {
  margin-bottom: 30px;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  color: #06C755;
  text-align: center;
}
@media (max-width: 768px) {
  .p-reservation-line__lead {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 35px;
  }
}
.p-reservation-line__button {
  display: flex;
  gap: 23px;
  align-items: center;
  width: fit-content;
  padding: 18px 53px 16px;
  margin-inline: auto;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  color: #FFF;
  letter-spacing: 1.35px;
  background: #06C755;
  border-radius: 60px;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .p-reservation-line__button {
    gap: 11px;
    padding: 14px 22px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
  }
}
.p-reservation-line__button:hover {
  background-color: #39E780;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .p-reservation-line__button svg {
    width: 45px;
    height: 45px;
  }
}

.p-contents {
  padding: 160px 0 155px;
  background: #F0E7DD;
}
@media (max-width: 768px) {
  .p-contents {
    padding-top: 73px;
    padding-bottom: 47px;
  }
}
.p-contents__title {
  margin-bottom: 47px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-contents__title img {
    width: 239px;
  }
}
.p-contents__navi {
  display: grid;
  grid-template-columns: repeat(3, 358px);
  gap: 42px;
  justify-content: center;
  padding: 0;
  margin: 0 auto 100px;
  list-style: none;
}
@media (max-width: 768px) {
  .p-contents__navi {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 17px;
    width: 330px;
    max-width: calc(100% - 40px);
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .p-contents__navi > li:nth-child(1) {
    grid-area: 1/1/2/3;
  }
}
.p-contents__button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .p-contents__button {
    gap: 0;
    height: 100%;
    padding: 17px 0;
  }
  .p-contents__button svg {
    gap: 0;
    width: 16px;
  }
}
.p-contents__button--orange {
  background: #ED6D0F;
}
.p-contents__button--orange:hover {
  background: #F58A3C;
}
@media (max-width: 768px) {
  .p-contents__button--orange {
    gap: 9px;
    padding-block: 26px;
    font-size: 20px;
  }
}
.p-contents__button--blue {
  background: #0081CC;
}
.p-contents__button--blue:hover {
  background: #0095EC;
}
@media (max-width: 768px) {
  .p-contents__button--blue {
    font-size: 17px;
  }
}
.p-contents__button--yellow {
  color: #3B3B3B;
  background: #FDD34E;
}
.p-contents__button--yellow:hover {
  background: #FDE28E;
}
@media (max-width: 768px) {
  .p-contents__button--yellow {
    font-size: 17px;
    line-height: 22px;
  }
}
.p-contents__button:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}

.p-contents02 {
  position: relative;
  padding: 141px 0 161px;
  background: url("../img/contents02_bg_left.webp"), url("../img/contents02_bg_right.webp");
  background-repeat: repeat-y;
  background-position: left top, right top;
  background-size: 263px auto, 232px auto;
}
@media (max-width: 768px) {
  .p-contents02 {
    padding-top: 29px;
    padding-bottom: 63px;
    background: none;
  }
}
.p-contents02__wakun {
  position: absolute;
  bottom: -17px;
  left: 201px;
}
@media (max-width: 768px) {
  .p-contents02__wakun {
    display: none;
  }
}

.p-experience {
  position: relative;
  width: 1256px;
  max-width: 100%;
  padding: 88px 0 74px;
  margin-inline: auto;
  background: #ED6D0F;
  background-image: url("../img/experience_bg.svg");
  background-repeat: no-repeat;
  background-position: center top 93px;
}
@media (max-width: 768px) {
  .p-experience {
    width: 360px;
    max-width: calc(100% - 30px);
    padding: 47px 15px 29px;
    background-image: none;
  }
}
.p-experience::before {
  display: none;
}
@media (max-width: 768px) {
  .p-experience::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: "";
    background: url("../img/experience_bg_sp.svg") no-repeat center top;
  }
}
.p-experience__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .p-experience__header {
    gap: 13px;
    margin-bottom: 29px;
  }
}
.p-experience__subtitle {
  width: fit-content;
  max-width: 100%;
  padding: 12px 22px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
  border: 2px solid #FFF;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-experience__subtitle {
    width: 228px;
    padding: 4px 4px 6px;
    font-size: 15px;
    line-height: 1.4;
    border-width: 1px;
  }
}
@media (max-width: 768px) {
  .p-experience__title img {
    width: 230px;
  }
}
.p-experience__heading {
  margin-bottom: 35px;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .p-experience__heading {
    margin-bottom: 19px;
    font-size: 26px;
  }
}
.p-experience__heading--02 {
  margin-bottom: 53px;
}
.p-experience__lead {
  margin-bottom: 85px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.48px;
}
@media (max-width: 768px) {
  .p-experience__lead {
    margin-bottom: 69px;
    font-size: 16px;
    line-height: 36px;
    color: #FFF;
    letter-spacing: 0.32px;
  }
}
.p-experience__step-label {
  width: 243px;
  max-width: 100%;
  padding: 16px 0 13px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #ED6D0F;
  text-align: center;
  letter-spacing: 3px;
  background: #FDD34E;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-experience__step-label {
    width: 180px;
    padding: 8px;
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.p-experience__step-text {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .p-experience__step-text {
    font-size: 20px;
  }
}
.p-experience__step-text--02 {
  margin-top: 26px;
  margin-bottom: 23px;
}
.p-experience__step-text--03 {
  line-height: 1.58333;
  letter-spacing: 1.2px;
}
@media (max-width: 768px) {
  .p-experience__step-text--03 {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.8px;
  }
}
.p-experience__arrow {
  margin-bottom: 24px;
  line-height: 1;
  text-align: center;
}
.p-experience__steps-image {
  display: block;
  margin: 26px auto 15px;
}
@media (max-width: 768px) {
  .p-experience__steps-image {
    margin-bottom: 26px;
  }
}
.p-experience__note {
  margin-bottom: 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  color: #FFF;
  text-align: center;
}
.p-experience__level {
  position: relative;
  width: 955px;
  max-width: 100%;
  padding: 61px 0 60px;
  margin-inline: auto;
  margin-top: 67px;
  background: #FFF;
}
@media (max-width: 768px) {
  .p-experience__level {
    padding-top: 47px;
    padding-bottom: 32px;
    margin-top: 74px;
  }
}
.p-experience__level-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 55px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
  background: url("../img/experience_levellabel.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .p-experience__level-title {
    width: 251px;
    height: 43px;
    font-size: 20px;
    font-weight: 700;
    background-image: url("../img/experience_levellabel_sp.svg");
  }
}
.p-experience__level-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-experience__level-text {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
.p-experience__level-image {
  display: block;
  padding-left: 31px;
  margin: -7px auto 0;
}
@media (max-width: 768px) {
  .p-experience__level-image {
    padding-left: 29px;
    margin: 0;
  }
}
.p-experience__last-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
}

.p-maze {
  position: relative;
  width: 1256px;
  max-width: 100%;
  padding: 78px 0 70px;
  margin-inline: auto;
  margin-top: 96px;
  background: #0081CC;
}
@media (max-width: 768px) {
  .p-maze {
    width: 360px;
    max-width: calc(100% - 30px);
    padding: 51px 15px 40px;
    margin-top: 40px;
  }
}
.p-maze__header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-maze__header {
    gap: 13px;
    margin-bottom: 0;
  }
}
.p-maze__subtitle {
  width: fit-content;
  max-width: 100%;
  padding: 12px 22px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #FFF;
  text-align: center;
  border: 2px solid #FFF;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-maze__subtitle {
    width: 228px;
    padding: 4px;
    font-size: 15px;
    line-height: 1.4;
    border-width: 1px;
  }
}
.p-maze__title {
  position: relative;
}
@media (max-width: 768px) {
  .p-maze__title-text {
    width: 182px;
  }
}
.p-maze__title-deco {
  position: absolute;
}
.p-maze__title-deco--01 {
  top: -31px;
  left: -345px;
}
@media (max-width: 768px) {
  .p-maze__title-deco--01 {
    top: -60px;
    left: -66px;
  }
}
.p-maze__title-deco--02 {
  top: -50px;
  right: -344px;
}
@media (max-width: 768px) {
  .p-maze__title-deco--02 {
    top: -90px;
    left: 183px;
  }
}
.p-maze__lead {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.48px;
}
@media (max-width: 768px) {
  .p-maze__lead {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0;
  }
}
.p-maze__tree {
  display: none;
}
@media (max-width: 768px) {
  .p-maze__tree {
    position: absolute;
    display: block;
  }
  .p-maze__tree--01 {
    top: 213px;
    left: 22px;
  }
  .p-maze__tree--02 {
    top: 180px;
    right: 17px;
  }
}

.p-terrace {
  width: 1256px;
  max-width: 100%;
  padding: 82px 0 88px;
  margin-inline: auto;
  margin-top: 96px;
  background: #FDD34E;
}
@media (max-width: 768px) {
  .p-terrace {
    width: 360px;
    max-width: calc(100% - 30px);
    padding: 49px 15px 40px;
    margin-top: 40px;
  }
}
.p-terrace__header {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .p-terrace__header {
    gap: 13px;
    margin-bottom: 27px;
  }
}
.p-terrace__subtitle {
  width: fit-content;
  max-width: 100%;
  padding: 12px 22px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  border: 2px solid currentcolor;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-terrace__subtitle {
    width: 228px;
    padding: 4px;
    padding-bottom: 6px;
    font-size: 15px;
    line-height: 1.4;
    border-width: 1px;
  }
}
.p-terrace__title {
  position: relative;
}
@media (max-width: 768px) {
  .p-terrace__title-text {
    width: 286px;
  }
}
.p-terrace__title-deco {
  position: absolute;
}
.p-terrace__title-deco--01 {
  top: -34px;
  left: -188px;
}
@media (max-width: 768px) {
  .p-terrace__title-deco--01 {
    top: -71px;
    left: -12px;
  }
}
.p-terrace__title-deco--02 {
  top: -40px;
  right: -184px;
}
@media (max-width: 768px) {
  .p-terrace__title-deco--02 {
    top: -73px;
    right: -22px;
  }
}
.p-terrace__title-deco--03 {
  top: 100px;
  left: -286px;
}
@media (max-width: 768px) {
  .p-terrace__title-deco--03 {
    top: 105px;
    left: -26px;
  }
}
.p-terrace__title-deco--04 {
  top: 120px;
  right: -214px;
}
@media (max-width: 768px) {
  .p-terrace__title-deco--04 {
    top: 137px;
    right: -18px;
  }
}
.p-terrace__lead {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  color: #000;
  text-align: center;
}
@media (max-width: 768px) {
  .p-terrace__lead {
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
  }
}
.p-terrace__slider {
  margin-inline: 49px;
}
@media (max-width: 768px) {
  .p-terrace__slider {
    margin: 0;
  }
}
.p-terrace__slider .swiper-pagination {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-terrace__slider .swiper-pagination span {
  display: block;
  width: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  background: #FFF;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.p-terrace__slider .swiper-pagination span:hover {
  opacity: 0.5;
}
.p-terrace__slider .swiper-pagination span.swiper-pagination-bullet-active {
  background: #000;
}
.p-terrace__slider .swiper-button-prev,
.p-terrace__slider .swiper-button-next {
  display: block;
  width: 40px;
  aspect-ratio: 1;
  cursor: pointer;
  background: no-repeat center/contain;
  transition: opacity 0.3s;
}
.p-terrace__slider .swiper-button-prev:hover,
.p-terrace__slider .swiper-button-next:hover {
  opacity: 0.5;
}
.p-terrace__slider .swiper-button-prev {
  background-image: url("../img/slider-prev.svg");
}
.p-terrace__slider .swiper-button-next {
  background-image: url("../img/slider-next.svg");
}
.p-terrace__slider-navigation {
  display: flex;
  gap: 49px;
  align-items: center;
  justify-content: center;
  margin-top: 33px;
}
@media (max-width: 768px) {
  .p-terrace__slider-navigation {
    margin-top: 13px;
  }
}
.p-terrace__slider-card {
  overflow: hidden;
  border-radius: 10px;
}
.p-terrace__slider-card-content {
  padding: 24px 24px 21px;
  background: #fff;
}
.p-terrace__slider-card-content--soon {
  padding-block: 130px;
  text-align: center;
}
.p-terrace__slider-card-title {
  margin-bottom: 13px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #ED6D0F;
}
@media (max-width: 768px) {
  .p-terrace__slider-card-title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 24px;
  }
}
.p-terrace__slider-card-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 768px) {
  .p-terrace__slider-card-text {
    font-size: 15px;
    line-height: 29px;
  }
}
.p-terrace__slider-card-time {
  margin-top: 27px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 768px) {
  .p-terrace__slider-card-time {
    margin-top: 0;
    font-size: 14px;
  }
}

.p-hwv {
  padding-top: 115px;
}
.p-hwv__title {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-hwv__title {
    gap: 0;
    font-size: 20px;
    line-height: 36px;
  }
}
.p-hwv__title::before, .p-hwv__title::after {
  display: block;
  width: 48px;
  height: 89px;
  content: "";
  background: no-repeat center/contain;
}
@media (max-width: 768px) {
  .p-hwv__title::before, .p-hwv__title::after {
    width: 28px;
    height: 63px;
  }
}
.p-hwv__title::before {
  background-image: url("../img/hwv_title-left.svg");
}
@media (max-width: 768px) {
  .p-hwv__title::before {
    background-image: url("../img/hwv_title-left_sp.svg");
  }
}
.p-hwv__title::after {
  background-image: url("../img/hwv_title-right.svg");
}
@media (max-width: 768px) {
  .p-hwv__title::after {
    background-image: url("../img/hwv_title-right_sp.svg");
  }
}
.p-hwv__logo {
  margin-top: 65px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-hwv__logo {
    margin-top: 40px;
  }
}
.p-hwv__logo img {
  width: 409px;
}
@media (max-width: 768px) {
  .p-hwv__logo img {
    width: 260px;
  }
}
.p-hwv__lead {
  margin-top: 44px;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-hwv__lead {
    margin-top: 39px;
    font-size: 16px;
    line-height: 32px;
  }
}
.p-hwv__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 42px;
  width: 758px;
  max-width: 100%;
  padding: 0;
  margin: 47px auto 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-hwv__list {
    display: flex;
    flex-direction: column;
  }
}
.p-hwv__item {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .p-hwv__item {
    width: 358px;
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }
}
.p-hwv__content {
  padding: 24px 17px 24px 24px;
}
.p-hwv__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
  color: #ED6D0F;
}
.p-hwv__kana {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: #ED6D0F;
}
.p-hwv__text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.p-access {
  padding: 71px 0 40px;
}
.p-access__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 78px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-access__title {
    margin-bottom: 53px;
  }
}
@media (max-width: 768px) {
  .p-access__title-text {
    width: 162px;
  }
}
.p-access__title-deco {
  position: absolute;
}
.p-access__title-deco--01 {
  top: -11px;
  left: -173px;
}
@media (max-width: 768px) {
  .p-access__title-deco--01 {
    top: 1px;
    left: -97px;
  }
}
.p-access__title-deco--02 {
  top: -10px;
  right: -193px;
}
@media (max-width: 768px) {
  .p-access__title-deco--02 {
    top: 1px;
    right: -104px;
  }
}
.p-access__contents {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-access__contents {
    flex-direction: column-reverse;
    width: 334px;
    max-width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .p-access__map {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-access__map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 334/188;
  }
}
@media (max-width: 768px) {
  .p-access__info {
    width: 100%;
  }
}
.p-access__place {
  font-size: 30px;
  font-weight: 800;
  line-height: 33px;
  color: #ED6D0F;
}
@media (max-width: 768px) {
  .p-access__place {
    text-align: center;
  }
}
.p-access__note {
  font-size: 18px;
  font-weight: 500;
  line-height: 33px;
  color: #ED6D0F;
}
@media (max-width: 768px) {
  .p-access__note {
    text-align: center;
  }
}
.p-access__address {
  margin-bottom: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 33px;
}
.p-access__transport {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-access__transport {
    gap: 13px;
  }
}
.p-access__dl {
  width: 214px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ED6D0F;
  border-radius: 13px;
}
@media (max-width: 768px) {
  .p-access__dl {
    flex-grow: 1;
    width: auto;
  }
}
.p-access__dt {
  padding: 6px 0;
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-access__dt {
    font-size: 16px;
  }
}
.p-access__dd {
  padding: 11px 0 16px;
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  border-top: 1px solid #ED6D0F;
}
@media (max-width: 768px) {
  .p-access__dd {
    font-size: 16px;
  }
}

.p-map {
  padding: 63px 0 72px;
  margin-top: 86px;
}
@media (max-width: 768px) {
  .p-map {
    margin-top: 11px;
  }
}
.p-map__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-map__title {
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .p-map__title-text {
    width: 176px;
  }
}
.p-map__title-deco {
  position: absolute;
}
.p-map__title-deco--01 {
  top: -36px;
  left: -252px;
}
@media (max-width: 768px) {
  .p-map__title-deco--01 {
    top: -19px;
    left: -72px;
  }
}
.p-map__title-deco--02 {
  top: -18px;
  right: -193px;
}
@media (max-width: 768px) {
  .p-map__title-deco--02 {
    top: -16px;
    right: -85px;
  }
}
.p-map__images {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 700px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-map__images {
    max-width: calc(100% - 46px);
    overflow: auto;
  }
  .p-map__images img {
    width: 700px;
    max-width: 700px;
  }
}

.p-qa {
  padding: 63px 0 131px;
  margin-top: 13px;
}
@media (max-width: 768px) {
  .p-qa {
    padding-top: 45px;
    padding-bottom: 93px;
    margin-top: 0;
  }
}
.p-qa__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 58px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-qa__title {
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  .p-qa__title-text {
    width: 94px;
  }
}
.p-qa__title-deco {
  position: absolute;
}
.p-qa__title-deco--01 {
  top: -34px;
  left: -128px;
  max-width: none;
}
@media (max-width: 768px) {
  .p-qa__title-deco--01 {
    top: -12px;
    left: -87px;
  }
}
.p-qa__title-deco--02 {
  top: -39px;
  right: -177px;
  max-width: none;
}
@media (max-width: 768px) {
  .p-qa__title-deco--02 {
    top: -69px;
    right: -97px;
  }
}
.p-qa__images {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 700px;
  max-width: 100%;
  margin-inline: auto;
}
.p-qa__list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 756px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin-inline: auto;
  list-style: none;
}
@media (max-width: 768px) {
  .p-qa__list {
    gap: 26px;
    width: 338px;
  }
}
.p-qa__question {
  position: relative;
  padding: 22px 0 21px 86px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  background: #FDD34E;
  border-radius: 40px;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 768px) {
  .p-qa__question {
    padding: 13px 30px 12px 52px;
    font-size: 16px;
  }
}
.p-qa__question:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
.p-qa__question::after {
  position: absolute;
  top: 50%;
  right: 31px;
  display: block;
  width: 18px;
  aspect-ratio: 18/11;
  content: "";
  background: url("../img/qa_arrow.svg") no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .p-qa__question::after {
    right: 16px;
    width: 12px;
  }
}
.p-qa__question.js-open {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
}
.p-qa__question.js-open::after {
  transform: translateY(-50%) rotateX(-180deg);
}
.p-qa__question-q {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  aspect-ratio: 1;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #FFF;
  background: #ED6D0F;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-qa__question-q {
    width: 47px;
    font-size: 20px;
  }
}
.p-qa__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.p-qa__answer.js-open {
  grid-template-rows: 1fr;
}
.p-qa__answer-inner {
  overflow: hidden;
}
.p-qa__answer-content {
  position: relative;
  padding: 22px 22px 22px 86px;
  margin-top: 21px;
  margin-bottom: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  background: #FDD34E;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-qa__answer-content {
    padding: 13px 30px 12px 52px;
    font-size: 16px;
    line-height: 22px;
  }
}
.p-qa__answer-a {
  position: absolute;
  top: 17px;
  left: 25px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  color: #ED6D0F;
}
@media (max-width: 768px) {
  .p-qa__answer-a {
    top: 10px;
    left: 18px;
    font-size: 20px;
  }
}

.p-supporters {
  padding-top: 180px;
}
@media (max-width: 768px) {
  .p-supporters {
    padding-top: 92px;
  }
}
.p-supporters__title {
  margin-bottom: 47px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-supporters__title {
    margin-bottom: 29px;
  }
}
@media (max-width: 768px) {
  .p-supporters__title-text {
    width: 69px;
  }
}
.p-supporters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 84px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-supporters__list {
    gap: 38px;
  }
}
.p-supporters__list-item {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  color: #0081CC;
  text-align: center;
}
@media (max-width: 768px) {
  .p-supporters__list-item {
    font-size: 16px;
  }
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
}

@media (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}

.u-visibility-hidden {
  visibility: hidden;
}

.u-flex-column {
  display: flex;
  flex-direction: column;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.u-mg0 {
  margin: 0;
}

@media (max-width: 768px) {
  .u-mg0sp {
    margin: 0;
  }
}
@media (min-width: 769px) {
  .u-mg0pc {
    margin: 0;
  }
}
.u-pb0 {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .u-pd0sp {
    padding: 0;
  }
}
@media (min-width: 769px) {
  .u-pd0pc {
    padding: 0;
  }
}
.u-gap0 {
  gap: 0;
}

@media (max-width: 768px) {
  .u-gap0sp {
    gap: 0;
  }
}
@media (min-width: 769px) {
  .u-gap0pc {
    gap: 0;
  }
}