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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: linear-gradient(to left, #5e0a1b, #9e1230 49.038%, #5e0a1b);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

p {
  margin: 0;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 991px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #5e0a1b;
  z-index: 9999;
  animation: splashOut 8s ease-in-out forwards;
  pointer-events: none;
}
.splash__logos {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .splash__logos {
    flex-direction: column;
  }
}
.splash__logo {
  height: auto;
  opacity: 0;
  animation: splashLogoIn 3s ease-in-out forwards;
}
.splash__logo--1 {
  width: 25vh;
}
.splash__logo--2 {
  width: 3vh;
  animation-delay: 0.3s;
}
.splash__logo--3 {
  width: 100%;
  animation-delay: 0.6s;
}
.splash__chars {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash__char {
  position: absolute;
  height: 70vh;
  width: auto;
  opacity: 0;
  animation: splashCharSolo 0.8s ease-in-out forwards;
}
.splash__char--1 {
  animation-delay: 3s;
}
.splash__char--2 {
  animation-delay: 3.8s;
}
.splash__char--3 {
  animation-delay: 4.6s;
}
.splash__char--4 {
  animation-delay: 5.4s;
}
.splash__char--5 {
  animation-delay: 6.2s;
}
@media (max-width: 991px) {
  .splash__logos {
    gap: 20px;
    padding: 0 20px;
  }
  .splash__logo--1 {
    width: 100%;
  }
  .splash__logo--2 {
    width: 10vw;
  }
  .splash__logo--3 {
    width: 100%;
  }
  .splash__char {
    height: 50vh;
  }
}

@keyframes splashLogoIn {
  0% {
    transform: scale(0.7);
    filter: brightness(0.3);
    opacity: 0;
  }
  25% {
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
  }
  60% {
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes splashCharSolo {
  0% {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  30% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  70% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10px) scale(1.02);
    opacity: 0;
  }
}
@keyframes splashOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.section-label {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to right, #cc0099 0%, #ffff67 100%);
  padding: 13px 62px;
  overflow: hidden;
  position: relative;
  width: fit-content;
  margin-top: 20px;
}
.section-label__inner {
  display: inline-flex;
  align-items: flex-start;
  padding-left: clamp(40px, 15.74vw, 300px);
}
@media (max-width: 991px) {
  .section-label__inner {
    padding-left: clamp(5px, 2.74vw, 300px);
  }
}
.section-label__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.75;
  color: #310b6a;
  margin-top: 4px;
}
.section-label__text {
  margin-left: 73px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75px;
  color: #310b6a;
}
.section-label__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 3px;
}
.section-label__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
}
@media (max-width: 991px) {
  .section-label {
    padding: 10px 20px;
  }
  .section-label__text {
    margin-left: 30px;
    height: auto;
  }
  .section-label__en {
    font-size: 14px;
  }
  .section-label__jp {
    font-size: 22px;
  }
  .section-label__num {
    font-size: 24px;
  }
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 5px 32px;
  color: #ab0000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  flex-shrink: 0;
}
.badge--sm {
  width: 98px;
  padding: 5px 15px;
}
.badge--md {
  width: 164px;
  padding: 5px 32px;
  font-size: 20px;
  line-height: 1.7;
}
.badge--white {
  color: #7030a0;
}
@media (max-width: 991px) {
  .badge--sm {
    width: 90px;
    font-size: 14px;
  }
  .badge--md {
    font-size: 16px;
    width: max-content;
  }
}

.info-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-row--center {
  justify-content: center;
}
.info-row__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  flex: 1;
  min-width: 370px;
}
.info-row__value--auto {
  flex: 0 0 auto;
}
@media (max-width: 991px) {
  .info-row {
    gap: 12px;
    flex-wrap: wrap;
  }
  .info-row__value {
    font-size: 14px;
    min-width: 0;
    letter-spacing: -0.4px;
  }
}

.gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.gallery__frame {
  position: relative;
  overflow: hidden;
}
.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__frame {
  width: 100%;
  max-width: 895px;
  height: auto;
}
.gallery__frame .swiper-wrapper {
  height: 100%;
}
.gallery__frame .swiper-slide {
  width: 100%;
  height: 100%;
}
.gallery__frame .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__frame--tall {
  max-width: 900px;
}
.gallery__arrow {
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.gallery__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.gallery__arrow img {
  width: 100%;
  height: 100%;
}
.gallery__img-wrap {
  position: relative;
  border: 2px solid #14a83c;
  overflow: hidden;
}
.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__frame--captioned {
  border: none;
}
.gallery__frame--captioned .swiper-wrapper {
  height: auto;
  align-items: stretch;
}
.gallery__frame--captioned .swiper-slide {
  height: auto;
}
.gallery__copyright {
  position: absolute;
  right: 5px;
  bottom: 2px;
  font-size: 12px;
  line-height: 1.2;
  color: #fdfdfe;
  text-align: right;
}
@media (max-width: 991px) {
  .gallery__copyright {
    font-size: 9px;
  }
}
.gallery__dots {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.gallery__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background-color 0.3s ease;
}
.gallery__dots .swiper-pagination-bullet-active {
  background-color: #fdfdfe;
}
@media (max-width: 991px) {
  .gallery {
    flex-direction: column;
  }
  .gallery__frame {
    width: 100%;
    height: auto;
    aspect-ratio: 900/506;
  }
  .gallery__frame .swiper-slide {
    width: 100% !important;
  }
  .gallery__frame--captioned {
    aspect-ratio: auto;
  }
  .gallery__img-wrap {
    width: 100%;
  }
  .gallery__arrow {
    position: absolute;
    bottom: -75px;
    max-width: 45px;
  }
  .gallery .gallery__arrow--prev {
    left: 0;
  }
  .gallery .gallery__arrow--next {
    right: 0;
  }
}

.gallery-food .gallery__img-wrap {
  border-color: #14a83c;
}

.novelty {
  position: relative;
  background-color: rgba(51, 23, 77, 0.7);
  border: 3px solid #14a83c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
  margin-top: 16px;
}
.novelty__heading {
  text-align: center;
}
.novelty__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fdfdfe;
  letter-spacing: 3px;
  line-height: 1.7;
  margin-bottom: -8px;
}
.novelty__jp {
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
}
.novelty__divider {
  width: 122px;
  height: 1px;
  margin-top: 8px;
}
.novelty__divider img {
  width: 100%;
  height: inherit;
}
.novelty__content {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
.novelty__decor {
  position: absolute;
  right: -70px;
  bottom: 20px;
}
@media (max-width: 991px) {
  .novelty__decor {
    width: 30vw;
    right: 0;
    bottom: -5vw;
  }
}
.novelty__img {
  flex-shrink: 0;
  width: 424px;
  height: 290px;
}
.novelty__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.novelty__img--wide {
  width: 512px;
}
.novelty__text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
}
.novelty__text .highlight {
  color: #f5c41d;
}
.novelty__item {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
  justify-content: center;
}
.novelty__list {
  font-size: 20px;
}
.novelty__list span {
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .novelty__list {
    font-size: 16px;
  }
}
.novelty__gift {
  margin-top: 16px;
  font-size: 20px;
}
.novelty__gift span {
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .novelty {
    padding: 20px 15px;
  }
  .novelty__content {
    flex-direction: column;
    gap: 20px;
  }
  .novelty__img {
    width: 100%;
    height: auto;
  }
  .novelty__img--wide {
    width: 100%;
  }
}

.novelty--cafe .novelty__decor {
  top: -90px;
  right: 0;
  bottom: auto;
}

.novelty__img,
.novelty__card-img {
  position: relative;
}

.novelty__copyright {
  position: absolute;
  right: 5px;
  bottom: 2px;
  font-size: 8px;
  line-height: 1.2;
  color: #fdfdfe;
  text-align: right;
}
.novelty__copyright--color {
  color: #7030A0;
}

.novelty--menu .novelty__cards {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
.novelty--menu .novelty__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.novelty--menu .novelty__card-img {
  width: 100%;
  aspect-ratio: 336/205;
  overflow: hidden;
}
.novelty--menu .novelty__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.novelty--menu .novelty__card-text {
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
}
.novelty--menu .novelty__card-text .highlight {
  color: #f5c41d;
}
.novelty--menu .novelty__note-sm {
  font-size: 13px;
}
@media (max-width: 991px) {
  .novelty--menu .novelty__cards {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.btn-cta--green {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  border-radius: 110px;
  padding: 16px 48px;
  box-shadow: 0px 4px 2.5px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-cta--green:hover {
  opacity: 0.85;
}
.btn-cta--green span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #333333;
  text-align: center;
}
.btn-cta--yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #ffffa0;
  border-radius: 110px;
  padding: 16px 48px;
  box-shadow: 0px 4px 2.5px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-cta--yellow:hover {
  opacity: 0.85;
}
.btn-cta--yellow span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #333333;
  text-align: center;
}
.btn-cta--res {
  width: 330px;
  max-width: 100%;
}
.btn-cta--res span:first-child {
  font-size: 20px;
}
.btn-cta--outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 3px solid #fdfdfe;
  border-radius: 110px;
  padding: 16px 48px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-cta--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-cta--outline span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #fdfdfe;
  text-align: center;
}
.btn-cta--purple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #8e4bc0;
  border: 3px solid #fdfdfe;
  border-radius: 110px;
  padding: 16px 48px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-cta--purple:hover {
  opacity: 0.85;
}
.btn-cta--purple span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #fdfdfe;
  text-align: center;
}
.btn-cta__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(90deg);
}
.btn-cta__arrow img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .btn-cta--green, .btn-cta--outline, .btn-cta--purple {
    padding: 12px 32px;
  }
  .btn-cta--green span, .btn-cta--outline span, .btn-cta--purple span {
    font-size: 16px;
  }
}

.collab-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.collab-logos__motif {
  width: 123px;
  height: 140px;
  overflow: hidden;
}
.collab-logos__motif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.collab-logos__x {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fdfdfe;
  line-height: 1.7;
}
.collab-logos__hotel {
  width: 200px;
  height: 115px;
}
.collab-logos__hotel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .collab-logos__motif {
    width: 80px;
    height: 90px;
  }
  .collab-logos__hotel {
    width: 140px;
    height: 80px;
  }
  .collab-logos__x {
    font-size: 24px;
  }
}

.day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid #fdfdfe;
  background-color: #8946bb;
  color: #fdfdfe;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

.menu-btn {
  position: fixed;
  top: 36px;
  right: 40px;
  z-index: 1040;
  width: 9.5vw;
  height: 9.5vw;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.menu-btn:hover {
  transform: scale(1.05);
}
.menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu-btn--inside {
  opacity: 1;
  pointer-events: auto;
}
.menu-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .menu-btn {
    width: 80px;
    height: 80px;
    top: 16px;
    right: 16px;
  }
  .menu-btn--inside {
    right: 16px;
    left: auto;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1030;
  background-color: rgba(252, 252, 252, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-overlay__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.menu-overlay__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.menu-overlay__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #562273;
  text-decoration: none;
  text-align: center;
  line-height: 1.75;
  transition: opacity 0.3s ease;
}
.menu-overlay__link:hover {
  opacity: 0.6;
}
.menu-overlay__note {
  width: 25px;
  height: 28px;
}
.menu-overlay__note img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu-overlay__close {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}
.menu-overlay__close:hover {
  transform: translateX(-50%) scale(1.1);
}
.menu-overlay__close img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .menu-overlay__link {
    font-size: 20px;
  }
  .menu-overlay__note {
    width: 20px;
    height: 22px;
  }
  .menu-overlay__close {
    bottom: 40px;
    width: 56px;
    height: 56px;
  }
}

.pricing {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pricing__detail {
  flex: 1;
  min-width: 0;
}
.pricing__group + .pricing__group {
  margin-top: 24px;
}
.pricing__member-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.7;
  color: #fdfdfe;
}
@media (max-width: 991px) {
  .pricing__member-label {
    font-size: 18px;
  }
}
.pricing__price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #fdfdfe;
}
@media (max-width: 991px) {
  .pricing__price {
    font-size: 16px;
  }
}
.pricing__prices {
  margin-top: 16px;
}
.pricing__price + .pricing__member-label {
  margin-top: 8px;
}
@media (max-width: 991px) {
  .pricing {
    flex-direction: column;
    gap: 16px;
  }
}

.notes {
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  line-height: 1.7;
  margin-top: 16px;
}
.notes p + p {
  margin-top: 0;
}
.notes a {
  color: #F5C41D;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__text {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.7;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(253, 253, 254, 0.6);
  white-space: nowrap;
}
.marquee--rtl .marquee__track {
  animation: marquee-rtl 50s linear infinite;
}
.marquee--rtl--top {
  top: -30px;
}
.marquee--ltr .marquee__track {
  animation: marquee-ltr 50s linear infinite;
}
.marquee--rtl--bottom {
  bottom: -30px;
}

.bat {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.bat img {
  width: 100%;
  height: auto;
  display: block;
  animation: bat-flap 0.6s ease-in-out infinite alternate;
}
.bat--1 {
  top: 15%;
  left: 10%;
}
.bat--2 {
  top: 40%;
  right: 8%;
}
.bat--2 img {
  transform: scaleX(-1);
  animation-delay: 0.15s;
}

.slide-badge {
  position: absolute;
  top: -34px;
  left: 34px;
  width: 10vw;
  height: 10vw;
  z-index: 2;
}
@media (max-width: 991px) {
  .slide-badge {
    width: 25vw;
    max-width: 150px;
    height: 25vw;
    max-height: 150px;
    left: -15px;
    top: -15px;
  }
}
.slide-badge__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--badge-bg, #ACC5E7);
  z-index: 1;
  opacity: 1;
}
.slide-badge__circle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid #F8CB2E;
  z-index: 3;
  pointer-events: none;
}
.slide-badge__clip {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.slide-badge__char {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
}

#gallery-drink .s-cafe__deco-char--iruma {
  top: -200px;
  right: 7vw;
  left: auto;
  bottom: auto;
  width: 12vw;
  max-width: 160px;
  z-index: 0;
  animation: none;
}
@media (max-width: 991px) {
  #gallery-drink .s-cafe__deco-char--iruma {
    top: -19vw;
    right: 1%;
    width: 15vw;
    max-width: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #gallery-drink .s-cafe__deco-char--iruma {
    top: -165px;
    right: 10vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #gallery-drink .s-cafe__deco-char--iruma {
    top: -15vw;
    right: 9vw;
  }
}

#gallery-food .s-cafe__deco-char--opera {
  top: -200px;
  left: 7vw;
  right: auto;
  bottom: auto;
  width: 12vw;
  max-width: 160px;
  z-index: 0;
  animation: none;
}
@media (max-width: 991px) {
  #gallery-food .s-cafe__deco-char--opera {
    top: -100px;
    left: 1%;
    width: 15vw;
    max-width: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #gallery-food .s-cafe__deco-char--opera {
    top: -155px;
    left: 1vw;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  #gallery-food .s-cafe__deco-char--opera {
    top: -210px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #gallery-food .s-cafe__deco-char--opera {
    top: -210px;
    left: 9vw;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #cc0099;
  color: #fdfdfe;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  border: none;
}
.back-to-top:hover {
  transform: translateY(-3px);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

.s-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg_red, linear-gradient(270deg, #5E0102 0%, #E3576F 49.04%, #5F0102 100%));
}
.s-hero__decorbg {
  position: absolute;
  z-index: 0;
  top: 0;
}
.s-hero__decorbg--left {
  left: 0;
  top: 15vw;
}
@media (max-width: 991px) {
  .s-hero__decorbg--left {
    width: 123vw;
  }
}
.s-hero__decorbg--right {
  right: 0;
  top: 16vw;
}
@media (max-width: 991px) {
  .s-hero__decorbg--right {
    width: 128vw;
  }
}
@media (max-width: 991px) {
  .s-hero__decorbg {
    top: 0;
  }
}
.s-hero__kv {
  position: relative;
  z-index: 2;
  width: 100%;
  line-height: 0;
}
.s-hero__kv img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .s-hero__kv {
    width: 100%;
    padding: 0;
  }
}
.s-hero__deco-piano {
  position: absolute;
  left: 3%;
  bottom: 10%;
  width: 426px;
  max-width: 20vw;
  z-index: 0;
  pointer-events: none;
}
.s-hero__deco-piano img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-hero__deco-piano {
    bottom: 7%;
  }
}
@media (max-width: 991px) {
  .s-hero__deco-piano {
    left: 0;
    max-width: 25vw;
  }
}
.s-hero__deco-fm {
  position: absolute;
  right: 7%;
  bottom: 5%;
  width: 426px;
  max-width: 14vw;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .s-hero__deco-fm {
    right: 10px;
    max-width: 22vw;
    z-index: 0;
  }
}
.s-hero__top {
  overflow: hidden;
  width: 100%;
  max-height: 907px;
}
.s-hero__bg {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}
.s-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s-hero__audio-btn {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.3s ease;
}
.s-hero__audio-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.s-hero__audio-btn.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}
.s-hero__audio-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.s-hero__characters {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 1;
  padding: 0 14.2%;
}
.s-hero__characters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 68px 0 48px;
  z-index: 0;
  overflow: hidden;
}
.s-hero__stars {
  position: absolute;
  background: url(../img/svg/star-bg-decor.svg) repeat;
  background-size: 1780px 890px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  animation: snowfall 40s linear infinite;
}
.s-hero__content-decor {
  position: absolute;
  background: url(../img/svg/header-content-decor.svg) no-repeat;
  background-size: auto;
  width: fit-content;
  height: 100%;
  aspect-ratio: 67/50;
  bottom: -140px;
  left: 50%;
  transform: translateX(-40%);
  z-index: -1;
}
@media (max-width: 991px) {
  .s-hero__content-decor {
    background-size: cover;
    width: 100vw;
    height: 80vw;
    bottom: -9vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.s-hero__title {
  text-align: center;
  width: 950px;
  max-width: 100%;
}
.s-hero__title .title-yellow {
  color: #ffff67;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
}
.s-hero__title .title-white {
  color: #fdfdfe;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.75;
}
.s-hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 25px;
  position: relative;
}
.s-hero__logo-iruma {
  width: 270px;
  height: 162px;
}
.s-hero__logo-iruma img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.s-hero__logo-union {
  width: 33px;
  height: 33px;
}
.s-hero__logo-union img {
  width: 100%;
  height: 100%;
}
.s-hero__logo-hotel {
  height: auto;
}
.s-hero__logo-hotel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.s-hero__description {
  text-align: left;
  width: 780px;
  max-width: 100%;
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
  color: #fdfdfe;
}
.s-hero__date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.s-hero__date-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #622FAE;
  border-radius: 90px;
  padding: 8px 49px;
}
.s-hero__date-badge span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.7;
  color: #ffff67;
}
.s-hero__date-text {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  color: #fdfdfe;
}
@media (max-width: 991px) {
  .s-hero__characters {
    width: 100%;
  }
  .s-hero__title {
    width: 100%;
    padding: 0 20px;
  }
  .s-hero__title .title-yellow, .s-hero__title .title-white {
    font-size: 22px;
  }
  .s-hero__logos {
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .s-hero__description {
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    max-width: fit-content;
  }
  .s-hero__date {
    flex-direction: column;
  }
  .s-hero__date-badge span {
    font-size: 16px;
  }
  .s-hero__date-text {
    font-size: 16px;
  }
  .s-hero__motif-bg {
    display: none;
  }
}

.s-about {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.s-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.s-about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(36, 28, 40, 0.86) 0%, rgba(36, 28, 40, 0.86) 100%);
  z-index: -2;
}
.s-about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 46px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 40px;
}
.s-about__logo {
  width: 407px;
  height: 243px;
  flex-shrink: 0;
}
.s-about__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-about__text {
  flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
}
.s-about__btn {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 20px;
  width: fit-content;
}
@media (max-width: 991px) {
  .s-about {
    height: auto;
  }
  .s-about__inner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }
  .s-about__logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
  }
  .s-about__text {
    font-size: 14px;
  }
  .s-about__btn {
    margin: 20px auto 0;
  }
}

.s-nav {
  position: relative;
  top: 0;
  z-index: 1010;
  background-color: #fcfcfc;
  height: 78px;
}
@media (max-width: 991px) {
  .s-nav {
    height: auto;
  }
}
.s-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 100%;
}
.s-nav__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #562273;
  line-height: 1.75;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.s-nav__link:hover {
  opacity: 0.7;
}
.s-nav__link.is-active {
  opacity: 1;
}
.s-nav__divider {
  width: 62px;
  height: 28px;
  flex-shrink: 0;
}
.s-nav__divider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .s-nav__inner {
    gap: 10px;
    overflow-x: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .s-nav__inner::-webkit-scrollbar {
    display: none;
  }
  .s-nav__link {
    font-size: 14px;
    white-space: nowrap;
  }
  .s-nav__divider {
    width: 30px;
    height: 14px;
  }
}

.main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.bg-shape--upper {
  top: 0;
}
.bg-shape--lower {
  top: 50%;
}
.bg-shape img {
  width: 100%;
  height: auto;
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .deco {
    display: none;
  }
}

.section {
  position: relative;
  z-index: 2;
  width: 100%;
}
.section__inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
.section__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.section__tea {
  gap: 120px;
}
.section__cafe {
  padding-top: 60px;
}
@media (max-width: 991px) {
  .section__cafe .section__intro {
    margin-top: 80px;
  }
}
.section__intro-deco {
  flex-shrink: 0;
  overflow: hidden;
}
.section__intro-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section__intro-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.section__intro-content--decor1 {
  position: absolute;
  left: 0;
  top: 75px;
}
.section__intro-content--decor2 {
  position: absolute;
  right: 0;
}
.section__intro-content--decor3 {
  position: absolute;
  right: -120px;
  top: -150px;
}
.section__intro-content--decor4 {
  position: absolute;
  left: -160px;
  bottom: 120px;
}
.section__heading {
  text-align: center;
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.7;
}
.section__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  text-align: left;
}
.section__desc--title {
  font-size: 24px;
}
.section .intro__row--set {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section__sub-heading {
  text-align: center;
}
.section__sub-heading .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fdfdfe;
  letter-spacing: 3px;
  line-height: 1.7;
  margin-bottom: -8px;
}
.section__sub-heading .jp {
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
}
@media (max-width: 991px) {
  .section__inner {
    padding: 0 20px;
  }
  .section__intro {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 120px;
  }
  .section__intro-content--decor1 {
    display: none;
  }
  .section__intro-content--decor2 {
    display: none;
  }
  .section__intro-deco {
    max-width: 120px;
  }
  .section__heading {
    font-size: 22px;
  }
  .section__desc {
    font-size: 14px;
  }
}

.s-stay {
  padding-top: 87px;
  padding-bottom: 120px;
}
.s-stay__notes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.s-stay__note {
  position: absolute;
  width: 80px;
  height: auto;
  opacity: 0.9;
  transform: rotate(var(--rot, 0deg)) scaleX(var(--flip, 1));
  animation: note-float var(--dur, 5s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform;
}
.s-stay__note--1 {
  top: 6%;
  left: 3%;
  width: 78px;
  --rot: -12deg;
  --dur: 5s;
  --delay: 0s;
}
.s-stay__note--2 {
  top: 13%;
  right: 4%;
  width: 110px;
  --rot: 10deg;
  --dur: 6s;
  --delay: .8s;
}
.s-stay__note--3 {
  top: 28%;
  left: 5%;
  width: 58px;
  --rot: 6deg;
  --dur: 4.5s;
  --delay: 1.5s;
}
.s-stay__note--4 {
  top: 41%;
  right: 3%;
  width: 92px;
  --rot: -8deg;
  --dur: 5.5s;
  --delay: .4s;
}
.s-stay__note--5 {
  top: 55%;
  left: 4%;
  width: 100px;
  --rot: 14deg;
  --dur: 6.5s;
  --delay: 1.2s;
}
.s-stay__note--6 {
  top: 56%;
  right: 11%;
  width: 64px;
  --rot: -10deg;
  --dur: 5s;
  --delay: 2s;
}
.s-stay__note--7 {
  top: 80%;
  left: 6%;
  width: 84px;
  --rot: 9deg;
  --dur: 5.8s;
  --delay: .6s;
}
.s-stay__note--8 {
  top: 90%;
  right: 4%;
  width: 70px;
  --rot: -14deg;
  --dur: 4.8s;
  --delay: 1.8s;
}
.s-stay__staff {
  position: absolute;
  bottom: 13%;
  right: -2%;
  width: 38%;
  max-width: 350px;
  aspect-ratio: 463/679;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
  animation: staff-sway 9s ease-in-out infinite;
  will-change: transform;
}
.s-stay__staff-lines, .s-stay__staff-clef {
  position: absolute;
  display: block;
}
.s-stay__staff-lines {
  top: 12.34%;
  left: 2.76%;
  width: 97.25%;
  height: 87.66%;
}
.s-stay__staff-clef {
  top: 2.09%;
  left: 1.79%;
  width: 91.39%;
  height: 95.3%;
  animation: staff-clef 7s ease-in-out infinite;
  will-change: transform;
}
.s-stay__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.s-stay__deco-char {
  position: absolute;
  height: auto;
  animation: info-float var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform;
}
.s-stay__deco-char--clara {
  left: -12vw;
  bottom: 25vw;
  width: 135px;
  --rot: -2deg;
  --dur: 6.5s;
  --delay: .2s;
}
.s-stay__deco-char--kerori {
  left: -3vw;
  bottom: 25vw;
  width: 118px;
  --rot: 3deg;
  --dur: 7s;
  --delay: .9s;
}
@media (max-width: 991px) {
  .s-stay__notes, .s-stay__staff {
    display: none;
  }
  .s-stay__deco-char--clara {
    left: -5vw;
    bottom: auto;
    top: -10vw;
    width: 64px;
  }
  .s-stay__deco-char--kerori {
    bottom: auto;
    top: -10vw;
    left: 12vw;
    right: auto;
    width: 64px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-stay__deco-char--clara {
    left: 12vw;
    top: -5vw;
    width: 80px;
  }
  .s-stay__deco-char--kerori {
    left: 0vw;
    top: -5vw;
    width: 70px;
  }
}
.s-stay .section__inner {
  max-width: 1260px;
}
.s-stay .section__inner--top {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .s-stay .section__inner--top {
    margin-top: 60px;
  }
}
.s-stay .section__inner--top .section__intro-content {
  margin-left: 240px;
}
@media (max-width: 991px) {
  .s-stay .section__inner--top .section__intro-content {
    margin: 0;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .s-stay .section__inner--bottom {
    margin-top: 0;
  }
}
.s-stay .section__inner--bottom .section__intro-content {
  justify-content: center;
  margin-top: 88px;
}
.s-stay .section__inner .section__intro-content {
  flex-direction: row;
  gap: 0;
  justify-content: left;
  padding: 0 24px;
}
@media (max-width: 991px) {
  .s-stay .section__inner .section__intro-content .section__heading {
    margin-bottom: 20vw;
  }
}
@media (max-width: 991px) {
  .s-stay .section__inner .section__intro-content {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .s-stay .section__inner .intro-content-decor {
    position: absolute;
    max-width: 25vw;
  }
  .s-stay .section__inner .intro-content-decor--left {
    left: 0;
    top: -30px;
  }
  .s-stay .section__inner .intro-content-decor--right {
    right: 0;
    top: -50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-stay .section__inner .intro-content-decor {
    position: relative;
  }
}
.s-stay .section__inner .intro-content-decor-ab {
  position: absolute !important;
  left: -285px;
}
@media (max-width: 991px) {
  .s-stay .section__inner .intro-content-decor-ab {
    width: 35vw;
    max-width: 200px;
    left: -25px;
    bottom: -50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-stay .section__inner .intro-content-decor-ab {
    left: -45px;
    max-width: 25vw;
  }
}
.s-stay .section__inner .gallery .gallery__arrow {
  position: absolute;
  top: 24%;
}
@media (max-width: 991px) {
  .s-stay .section__inner .gallery .gallery__arrow {
    bottom: auto;
    top: 51.5vw;
    z-index: 7;
  }
}
.s-stay .section__inner .gallery .gallery__arrow--prev {
  left: -9%;
}
@media (max-width: 991px) {
  .s-stay .section__inner .gallery .gallery__arrow--prev {
    left: 0;
  }
}
.s-stay .section__inner .gallery .gallery__arrow--next {
  right: -9%;
}
@media (max-width: 991px) {
  .s-stay .section__inner .gallery .gallery__arrow--next {
    right: 0;
  }
}
.s-stay .section__inner .gallery .gallery__frame {
  max-width: 1080px;
}
.s-stay .section__inner .gallery .gallery__frame .pricing {
  margin-top: 42px;
  justify-content: left;
  padding: 0 24px;
}
@media (max-width: 991px) {
  .s-stay .section__inner .gallery .gallery__frame .pricing {
    padding: 0;
  }
}
.s-stay .section__inner .gallery .gallery__frame .pricing .pricing__detail {
  flex: none;
}
.s-stay .section__inner .gallery .gallery__frame .gallery__dots {
  position: absolute;
  bottom: 41%;
  transform: translateY(-100%);
  top: auto;
}
@media (max-width: 991px) {
  .s-stay .section__inner .gallery .gallery__frame .gallery__dots {
    top: 55.5vw;
    bottom: auto;
    transform: unset;
  }
}
.s-stay .section__inner .novelty {
  max-width: 1080px;
}
.s-stay::before {
  position: absolute;
  content: "";
  background: url(../img/svg/hightlight-bg.svg) no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100vw;
  height: stretch;
  z-index: -1;
  top: 0;
}
@media (max-width: 991px) {
  .s-stay::before {
    clip-path: polygon(40% 4.8%, 51% 5%, 65% 4.9%, 80% 4.1%, 100% 3.6%, 100% 100%, 0 100%, 0 3.5%, 9% 3.9%, 21% 3.9%);
  }
}
.s-stay .s-stay__decor--1 {
  top: calc(3% + 125px);
  transform: translateY(-50%);
}
.s-stay .s-stay__decor--2 {
  top: calc(3.2% + 125px);
  transform: translateY(-50%);
}
.s-stay__decor {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.s-stay__decor img {
  width: 100vw;
  height: auto;
  display: block;
}
.s-stay__decor--1 {
  top: 3%;
  z-index: -2;
}
.s-stay__decor--1 img {
  transform: translateX(0);
}
.s-stay__decor--2 {
  top: 2.5%;
}
.s-stay__decor--2 img {
  transform: translateX(0);
}
.s-stay .section__intro-deco {
  width: 188px;
  height: 452px;
}
.s-stay__room-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.s-stay__extra-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 542px;
  margin: 16px 0 0;
}
.s-stay__extra-plan p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #fdfdfe;
  text-align: center;
}
.s-stay__extra-img {
  position: relative;
}
.s-stay__extra-img--decor {
  position: absolute;
  left: -223px;
  bottom: 0;
}
@media (max-width: 991px) {
  .s-stay__extra-img--decor {
    display: none;
  }
}
.s-stay__extra-img--decor img {
  height: 306px;
}
.s-stay__extra-img--main {
  width: 100%;
  max-width: 542px;
  border: 3px solid #ee9416;
}
@media (max-width: 991px) {
  .s-stay .section__intro-deco {
    width: 100px;
    height: auto;
  }
}

.s-afternoon {
  padding-top: 60px;
  padding-bottom: 95px;
  overflow: hidden;
}
.s-afternoon .section__intro-deco {
  width: 209px;
  height: 454px;
}
@media (max-width: 991px) {
  .s-afternoon .section__intro-deco {
    width: 100px;
    height: auto;
  }
}

.s-cafe {
  padding-top: 125px;
  padding-bottom: 120px;
  margin-top: 0;
  background: var(--bg_red, linear-gradient(270deg, #5E0102 0%, #E3576F 49.04%, #5F0102 100%));
}
@media (max-width: 991px) {
  .s-cafe {
    padding-top: 75px;
  }
}
.s-cafe .s-stay__staff {
  right: auto;
  left: -70px;
  bottom: auto;
  top: 12%;
}
.s-cafe__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.s-cafe__deco--jump {
  z-index: 0;
}
@media (max-width: 991px) {
  .s-cafe__deco--jump {
    z-index: 1;
  }
}
.s-cafe__deco-char {
  position: absolute;
  height: auto;
  animation: info-float var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform;
}
.s-cafe__deco-char--opera {
  left: 24vw;
  top: 15.5%;
  width: 150px !important;
  object-fit: cover;
  animation: none;
  --rot: 3deg;
  --dur: 6.5s;
  --delay: 0s;
}
.s-cafe__deco-char--iruma {
  right: 27vw;
  top: 41.5%;
  width: 135px;
  animation: none;
  --rot: -3deg;
  --dur: 7s;
  --delay: .6s;
}
.s-cafe__deco-char--jump {
  right: calc(14vw - 100px);
  bottom: 29%;
  width: 155px;
  --rot: 4deg;
  --dur: 5.5s;
  --delay: 1.1s;
}
@media (max-width: 991px) {
  .s-cafe__deco-char--opera {
    top: 16%;
    left: 10px;
    bottom: auto;
    width: 72px !important;
  }
  .s-cafe__deco-char--iruma {
    top: 1462px;
    right: 37px;
    width: 16vw;
  }
  .s-cafe__deco-char--jump {
    top: 53%;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 84px;
  }
}
@media (max-width: 424px) {
  .s-cafe__deco-char--iruma {
    top: 1462px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-cafe__deco-char--opera {
    top: 12.5%;
    left: 25px;
    width: 110px !important;
  }
  .s-cafe__deco-char--iruma {
    top: 32%;
    width: 110px;
  }
  .s-cafe__deco-char--jump {
    top: 51%;
    width: 100px;
    right: 10px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .s-cafe__deco-char--jump {
    top: 63%;
    width: 10vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .s-cafe__deco-char--jump {
    top: 63%;
    width: 10vw;
  }
  .s-cafe__deco-char--iruma {
    right: 20vw;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .s-cafe__deco-char--iruma {
    right: 27%;
  }
}
.s-cafe .s-cafe__decor--1 {
  top: calc(3% + 125px);
  transform: translateY(-50%);
  z-index: -2;
}
.s-cafe .s-cafe__decor--2 {
  top: calc(3% + 125px);
  transform: translateY(-50%);
}
.s-cafe .section__intro-deco {
  width: 271px;
  height: 504px;
}
.s-cafe__menu-title {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffff67;
  text-align: center;
  line-height: 1.75;
}
.s-cafe__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.s-cafe__item .gallery__img-wrap {
  width: 100%;
  aspect-ratio: 900/506;
}
.s-cafe__item .gallery__arrow {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .s-cafe__item .gallery__arrow {
    bottom: -200px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  .s-cafe__item .gallery__arrow {
    position: absolute;
  }
}
.s-cafe__item .info-row--center {
  justify-content: left;
  margin-top: 16px;
  max-width: 896px;
}
@media (max-width: 991px) {
  .s-cafe__item .info-row--center {
    flex-direction: column;
  }
}
.s-cafe__item-name {
  background: linear-gradient(to bottom, #14a83c, #cad900 50%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  padding: 16px 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.s-cafe__item-name--textbox {
  padding: 5px 34px;
  color: #333333;
  background: var(--iruma_gra, linear-gradient(180deg, #14A83C 0%, #CAD900 50%, #FFF 100%));
  -webkit-text-fill-color: initial;
}
.s-cafe__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  font-size: 20px;
  padding: 0;
  width: 100%;
}
.s-cafe__char-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  padding: 16px 0;
  background: var(--iruma_gra, linear-gradient(180deg, #14A83C 0%, #CAD900 50%, #FFF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s-cafe__char-info {
  max-width: 900px;
  width: 100%;
  padding-left: 0;
}
.s-cafe__char-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
  font-size: 20px;
}
@media (max-width: 991px) {
  .s-cafe .section__intro-deco {
    width: 100px;
    height: auto;
  }
  .s-cafe__item-name, .s-cafe__item-desc {
    font-size: 16px;
  }
  .s-cafe__item-name {
    flex-wrap: wrap;
  }
  .s-cafe__char-desc {
    font-size: 14px;
  }
}

.s-info {
  padding-top: 60px;
  padding-bottom: 11px;
  margin-top: 0;
}
.s-info__deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.s-info__deco-char {
  position: absolute;
  height: auto;
  animation: info-float var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform;
}
.s-info__deco-char--schneider {
  left: 20px;
  bottom: 1vw;
  width: 6vw;
  --rot: -3deg;
  --dur: 6.5s;
  --delay: .3s;
}
.s-info__deco-char--goemon {
  left: 6%;
  bottom: 1vw;
  width: 14vw;
  --rot: 2deg;
  --dur: 7s;
  --delay: 0s;
}
.s-info__deco-char--kamui {
  left: 17%;
  bottom: 1vw;
  width: 9vw;
  --rot: 4deg;
  --dur: 5.5s;
  --delay: .8s;
}
@media (max-width: 991px) {
  .s-info__deco-char--kamui {
    left: 110px;
    bottom: 7vw;
    width: 11vw;
  }
  .s-info__deco-char--goemon {
    bottom: 6vw;
    left: 34px;
    top: auto;
    width: 20vw;
  }
  .s-info__deco-char--schneider {
    bottom: 3vw;
    left: 0;
    top: auto;
    width: 10vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-info__deco-char--kamui {
    left: 175px;
    width: 10vw;
    bottom: 0;
  }
  .s-info__deco-char--goemon {
    left: 45px;
    width: 18vw;
    bottom: 0;
  }
  .s-info__deco-char--schneider {
    width: 7vw;
    bottom: 0;
  }
}
.s-info .section__inner {
  align-items: flex-start;
  margin-top: 40px;
}
.s-info__hotel-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffff67;
  line-height: 1.75;
  margin-bottom: 24px;
}
.s-info__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}
.s-info__image {
  position: relative;
  flex-shrink: 0;
  max-width: 531px;
  width: 100%;
}
.s-info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-info__image--copyright {
  position: absolute;
  font-size: 8px;
  bottom: 0;
  right: 5px;
}
.s-info__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 280px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #fdfdfe;
}
.s-info__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}
.s-info__cta .gallery__dots {
  margin-top: 24px;
}
.s-info__cta-wrap {
  margin-top: 48px;
}
.s-info__gallery-frame {
  position: relative;
  overflow: hidden;
}
.s-info__gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-info__gallery-frame {
  width: 882px;
  max-width: 100%;
  height: 602px;
  border: 3px solid #14a83c;
}
.s-info__gallery-frame .swiper-wrapper {
  height: 100%;
}
.s-info__gallery-frame .swiper-slide {
  width: 100% !important;
  height: 100%;
}
.s-info__gallery-frame .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-info__copyright {
  font-size: 8px;
  color: #fdfdfe;
  text-align: center;
  margin-top: 90px;
}
@media (max-width: 991px) {
  .s-info__content {
    flex-direction: column;
    gap: 24px;
  }
  .s-info__image {
    width: 100%;
    height: auto;
  }
  .s-info__text {
    height: auto;
  }
  .s-info__gallery-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 882/602;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .s-info {
    padding-bottom: 50px;
  }
}

.s-reservation {
  position: relative;
  background: linear-gradient(to left, #cc0099, #ffffd8 48.077%, #cc0099);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  width: 100%;
}
.s-reservation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.s-reservation__inner .s-stay__notes {
  z-index: 0;
}
.s-reservation__inner .s-stay__notes .s-stay__note--1 {
  top: 23%;
  left: 16%;
}
.s-reservation__inner .s-stay__notes .s-stay__note--8 {
  top: 78%;
  right: 10%;
}
.s-reservation__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.s-reservation__heading {
  text-align: center;
  color: #7030a0;
}
.s-reservation__heading .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.7;
  margin-bottom: -8px;
}
.s-reservation__heading .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
}
.s-reservation__startdate {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .s-reservation__startdate {
    flex-direction: column;
    gap: 12px;
  }
}
.s-reservation__startdate-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #7030a0;
}
@media (max-width: 991px) {
  .s-reservation__startdate-text {
    font-size: 16px;
  }
}
.s-reservation__divider {
  width: 270px;
  height: 1px;
  margin-top: 8px;
}
.s-reservation__divider img {
  width: 100%;
  height: inherit;
}
.s-reservation__phone {
  display: flex;
  gap: 24px;
  align-items: center;
}
.s-reservation__phone-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  text-align: center;
  width: 164px;
}
.s-reservation__phone-detail {
  color: #333333;
}
.s-reservation__phone-detail .tel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}
.s-reservation__phone-detail .hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .s-reservation {
    padding: 40px 20px;
  }
  .s-reservation__phone {
    flex-direction: column;
    gap: 12px;
  }
  .s-reservation__phone-label {
    width: auto;
  }
}

.res-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.res-plan__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #ab0000;
  text-align: center;
  letter-spacing: 1.2px;
}
.res-plan__row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
}
.res-plan__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.res-plan__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: #7030a0;
  text-align: center;
  min-height: 68px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 991px) {
  .res-plan__row {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .res-plan__col {
    width: 100%;
  }
  .res-plan__label {
    min-height: 0;
    font-size: 16px;
  }
}

.s-faq {
  background: linear-gradient(to left, #cc0099, #ffffd8 48.077%, #cc0099);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  width: 100%;
  padding: 60px 20px;
}
.s-faq__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #7030a0;
  text-align: center;
}
.s-faq__text a {
  text-decoration: none;
  color: #CC0199;
}
.s-faq__text a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .s-faq__text {
    font-size: 20px;
  }
}

.footer {
  background-color: #24192c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__logo-iruma {
  max-width: 160px;
}
.footer__name {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fdfdfe;
  text-align: center;
  letter-spacing: 1px;
}
.footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fdfdfe;
  text-align: center;
  letter-spacing: 1px;
  line-height: 30px;
}
.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.footer__social-link {
  width: 50px;
  height: 51px;
}
.footer__social-link img {
  width: 100%;
  height: 100%;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fdfdfe;
  text-align: center;
  letter-spacing: 1px;
  padding: 0 24px;
  border-left: 0.5px solid #fdfdfe;
  border-right: 0.5px solid #fdfdfe;
  line-height: 30px;
}
.footer__nav-link + .footer__nav-link {
  border-left: none;
}
.footer__copyright {
  background-color: #ffffff;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
}
.footer__copyright p {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  letter-spacing: 1.6px;
  line-height: 18px;
}
@media (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
  .footer__logo {
    flex-direction: column;
  }
  .footer__name {
    font-size: 16px;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 12px;
  }
  .footer__nav-link {
    border: none;
    padding: 0;
  }
  .footer__copyright p {
    font-size: 10px;
  }
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: #fdfdfe;
}

.text-yellow {
  color: #ffff67;
}

.mt-0 {
  margin-top: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-64 {
  margin-top: 64px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes snowfall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 890px;
  }
}
@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes bat-flap {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0.85);
  }
}
@keyframes note-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg)) scaleX(var(--flip, 1));
  }
  50% {
    transform: translateY(-22px) rotate(calc(var(--rot, 0deg) + 6deg)) scaleX(var(--flip, 1));
  }
}
@keyframes staff-sway {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
}
@keyframes staff-clef {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
}
@keyframes info-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--rot, 0deg) + 2deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .s-stay__note,
  .s-stay__staff,
  .s-stay__staff-clef,
  .s-stay__deco-char,
  .s-cafe__deco-char,
  .s-info__deco-char {
    animation: none;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .s-nav, .menu-btn, .deco {
    display: none;
  }
}