:root,
:host {
  --font-title-l:2.5rem;
  --font-title-m:2rem;
  --font-title-s:1.5rem;
}

@media screen and (max-width: 767px) {
  :root,
  :host {
    --font-title-l:1.5rem;
    --font-title-m:1.2rem;
    --font-title-s:1rem;
  }
}
html {
  scroll-behavior: smooth;
}
html body {
  position: relative;
}
html body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}
html body .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
html body .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
html body .hover-lift {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.15));
}
html body .hover-lift:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.1));
}
html body .btn-shine {
  position: relative;
  overflow: hidden;
}
html body .btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}
html body .btn-shine:hover::after {
  left: 100%;
}
html body .scroll-down {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes sway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
@keyframes walk-place {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-2px) rotate(1deg);
  }
  75% {
    transform: translateY(-2px) rotate(-1deg);
  }
}
html .animate-float-slow {
  animation: float-slow 4s ease-in-out infinite;
}
html .animate-sway {
  animation: sway 5s ease-in-out infinite;
}
html .animate-walk {
  animation: walk-place 2s ease-in-out infinite;
}
html .delay-0 {
  animation-delay: 0s;
}
html .delay-100 {
  animation-delay: 0.5s;
}
html .delay-200 {
  animation-delay: 1s;
}
html .delay-300 {
  animation-delay: 1.5s;
}
html .delay-500 {
  animation-delay: 2.5s;
}
html {
  /* KV Slideshow */
}
html #kv-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
html .kv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 1;
  z-index: 1;
  transform-origin: center center;
  transition: opacity 0s; /* Reset immediately by default */
}
html .kv-slide.fadeout {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
html .kv-slide.zoom {
  animation: zoomKV 6s linear forwards;
}
@keyframes zoomKV {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

main section {
  padding: 120px 3rem;
}
main section h2.h2-main {
  font-size: var(--font-title-l);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  main section {
    padding: 60px 1.5rem;
  }
}

header {
  position: fixed;
  padding: 0.5rem 4vw;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition-duration: 0.3s;
  display: flex;
  background-color: #fff;
  padding-top: env(safe-area-inset-top);
}
header .logo {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  transition-duration: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  width: 120px;
  transition-duration: 0.3s;
}
header nav {
  flex-wrap: wrap;
  width: 40vw;
}
header.scrolled .logo {
  top: -10px;
  width: 120px;
  background-color: white;
  border-radius: 50%;
}
header.scrolled .logo img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  header .logo {
    top: -10px;
    width: 120px;
  }
  header .logo img {
    width: 80px;
  }
  header.scrolled .logo {
    top: -7px;
    width: 96px;
  }
  header.scrolled .logo img {
    width: 64px;
  }
}

footer .inner {
  width: 100%;
  background-color: white;
  position: relative;
}
footer .inner::after {
  content: "";
  position: absolute;
  top: -399px;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  background: url(../img/footer_kiri.webp) center bottom/contain no-repeat;
}

#hero {
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #hero {
    height: auto;
    aspect-ratio: 750/1334;
  }
  #hero .scrollSP {
    width: 100%;
    height: auto;
    aspect-ratio: 750/1334;
    pointer-events: none;
  }
  #hero .scrollSP .inner {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }
  #hero .scrollSP .inner a {
    pointer-events: all;
  }
}

#about {
  width: 100%;
  background: url("../img/wave_nuri.webp") center top/contain no-repeat;
  padding-top: 200px;
  padding-bottom: 120px;
}
#about h2.h2-main {
  text-align: left;
  max-width: 1028px;
  margin: 120px auto 0;
}
#about .aboutCase {
  max-width: 300px;
}
#about .aboutCase p {
  text-align: left;
}
#about .aboutCase .aboutCard {
  width: 100%;
  height: auto;
  aspect-ratio: 232/160;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
#about .aboutCase .aboutCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .aboutCase:nth-child(1) .aboutCard {
  background-image: url("../img/about_base1.webp");
}
#about .aboutCase:nth-child(2) .aboutCard {
  background-image: url("../img/about_base2.webp");
}
#about .aboutCase:nth-child(3) .aboutCard {
  background-image: url("../img/about_base3.webp");
}
#about .aboutLaurel {
  position: relative;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 164px);
  line-height: 1.8;
}
#about .aboutLaurel::before, #about .aboutLaurel::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: auto;
  aspect-ratio: 111/263;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/about_frame.webp");
}
#about .aboutLaurel::before {
  left: -90px;
}
#about .aboutLaurel::after {
  transform: scaleX(-100%) translateY(-50%);
  right: -90px;
}
@media screen and (max-width: 767px) {
  #about {
    background: url("../img/wave_nuri_sp.webp") center top/contain no-repeat;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  #about h2.h2-main {
    text-align: center;
    margin: 80px auto 0;
  }
  #about .aboutCase {
    max-width: 360px;
    width: 90%;
  }
  #about .aboutCase p {
    text-align: center;
  }
  #about .aboutLaurel {
    width: calc(100vw - 144px);
    max-width: none;
    text-align: center;
  }
  #about .aboutLaurel::before, #about .aboutLaurel::after {
    width: 52px;
  }
  #about .aboutLaurel::before {
    left: -52px;
  }
  #about .aboutLaurel::after {
    right: -52px;
  }
}

#recommended {
  position: relative;
  padding-top: 0;
}
#recommended::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 200px;
  height: auto;
  aspect-ratio: 596/207;
  background: url("../img/binder.webp") center center/contain no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #recommended::before {
    width: 160px;
  }
}

#benefits .ticket {
  position: relative;
  background: url(../img/benefits_coupon.webp) center center/100% no-repeat;
  background-size: 100% 100%;
  padding: 46px 24% 20px 11%;
  height: auto;
  aspect-ratio: 1671/492;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#benefits .ticket .badge {
  position: absolute;
  width: 110px;
  height: auto;
  aspect-ratio: 500/330;
  font-weight: bold;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 38px;
  font-size: 14px;
  top: 0;
  right: 5px;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/stamp.webp);
  background-size: contain;
  transform: rotate(-20deg);
}
#benefits .ticket .icon {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#benefits .ticket p {
  min-height: 60px;
}
#benefits .pay {
  position: absolute;
  bottom: 10px;
  width: 12%;
}
#benefits .pay.pay1 {
  right: 16%;
}
#benefits .pay.pay2 {
  right: 2%;
}
@media screen and (max-width: 959px) {
  #benefits .ticket:nth-child(1) p {
    padding-right: 12%;
  }
  #benefits .ticket:nth-child(1) p br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #benefits .ticket {
    padding: 28px 23% 20px 12%;
  }
  #benefits .ticket .badge {
    width: 110px;
    padding-right: 38px;
    font-size: 14px;
    top: -29px;
    right: 1px;
    z-index: 2;
  }
  #benefits .ticket p {
    min-height: auto;
  }
  #benefits .ticket:nth-child(1) p {
    padding-right: 12%;
  }
}

@media screen and (max-width: 959px) {
  #charms {
    padding: 60px 1.5rem;
  }
}

#flow {
  padding-top: 120px;
  padding-bottom: 40px;
}
#flow .flowNum {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 50px;
  height: 50px;
  z-index: 2;
  transform: translateX(-100px);
}
#flow .flowNum img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#message {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
#message .messageFixBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  z-index: -1;
}
#message .messageFixBg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/img_evening.webp) center bottom/cover no-repeat;
}
#message .inner {
  padding: 100px 0 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#message::before, #message::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 10/1;
  z-index: 1;
}
#message::before {
  top: -2px;
  background: url(../img/message_top.webp) center bottom/cover no-repeat;
}
#message::after {
  bottom: -2px;
  background: url(../img/message_bottom.webp) center bottom/cover no-repeat;
}

#register {
  padding-top: 200px;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  #register {
    padding-bottom: 180px;
  }
}

#fix-menu {
  position: fixed;
  bottom: 12px;
  right: 16px;
  z-index: 10;
}
#fix-menu a {
  display: block;
  position: relative;
}
#fix-menu a .btn-shine {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
#fix-menu img {
  width: 160px;
}
@media screen and (max-width: 767px) {
  #fix-menu img {
    width: 120px;
  }
}

#hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: white;
}
#hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
#hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: white;
}

#mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
#mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}
#mobile-menu.active a:nth-child(2) {
  transition-delay: 0.2s;
}
#mobile-menu.active a:nth-child(3) {
  transition-delay: 0.3s;
}
#mobile-menu.active a:nth-child(4) {
  transition-delay: 0.4s;
}
#mobile-menu.active a:nth-child(5) {
  transition-delay: 0.5s;
}/*# sourceMappingURL=top.css.map */