:root {
  --content-width: 500px;
  --side-top: #432480;
  --side-bottom: #0057c5;
  --content-top: #b529ff;
  --content-bottom: #0057c5;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--side-bottom);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  font-family: "Avenir Round1", Arial, sans-serif;
  background: transparent;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, var(--side-top) 0%, var(--side-bottom) 100%);
}

.side-background {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.side-background__cloud {
  position: absolute;
  z-index: 1;
  top: var(--cloud-top, 0vh);
  left: 0;
  width: 100%;
  height: var(--cloud-height, 100%);
  background-position: var(--cloud-start, 0px) 0;
  background-repeat: repeat-x;
  background-size: var(--cloud-width, 100vw) var(--cloud-height, 100%);
  animation:
    side-cloud-drift var(--cloud-duration, 135s) linear var(--cloud-delay, 0s) infinite,
    side-cloud-rise var(--cloud-y-duration, 100s) ease-in-out var(--cloud-y-delay, 0s) alternate infinite;
  will-change: background-position, transform;
}

.side-background__stars {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.side-background__constellations {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.side-background__constellation-line {
  display: none;
  fill: none;
  stroke: rgba(191, 224, 255, 0.45);
  stroke-linecap: round;
  stroke-width: 0.4px;
  vector-effect: non-scaling-stroke;
}

.side-background__constellation-star {
  fill: rgba(255, 255, 255, 0.98);
  filter: drop-shadow(0 0 0.7px rgba(206, 237, 255, 1));
  animation: constellation-star-twinkle
    var(--constellation-star-duration, 5s)
    ease-in-out
    var(--constellation-star-delay, 0s)
    infinite;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity;
}

.side-background__star {
  position: absolute;
  top: var(--star-y);
  left: var(--star-x);
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 50%;
  background: #fff;
  opacity: var(--star-opacity);
}

.side-background__star--quiet {
  box-shadow: none;
}

.side-background__star--sparkle {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(255, 255, 255, 0.9),
    0 0 calc(var(--star-size) * 5) rgba(157, 225, 255, 0.7);
  animation: star-twinkle var(--star-duration) ease-in-out var(--star-delay) infinite;
  will-change: opacity;
}

.side-background__star--sparkle.side-background__star--cyan {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(214, 251, 255, 0.95),
    0 0 calc(var(--star-size) * 6) rgba(93, 221, 255, 0.82);
}

.side-background__star--sparkle.side-background__star--pink {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(255, 226, 247, 0.95),
    0 0 calc(var(--star-size) * 6) rgba(255, 119, 216, 0.78);
}

.side-background__star--sparkle.side-background__star--violet {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(238, 225, 255, 0.95),
    0 0 calc(var(--star-size) * 6) rgba(177, 122, 255, 0.8);
}

.side-background__star--sparkle.side-background__star--gold {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(255, 249, 214, 0.95),
    0 0 calc(var(--star-size) * 6) rgba(255, 209, 94, 0.78);
}

.side-background__star--sparkle::before,
.side-background__star--sparkle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 360%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.95) 50%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
}

.side-background__star--sparkle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.side-background__star--bright {
  box-shadow:
    0 0 calc(var(--star-size) * 2) rgba(255, 255, 255, 0.95),
    0 0 calc(var(--star-size) * 5) rgba(157, 225, 255, 0.8);
}

.side-nav,
.side-logo {
  display: none;
}

.lp-section[id] {
  scroll-margin-top: 24px;
}

.side-background__cloud {
  background-image: url("./image/bg_cloud_1.png?120");
}

.side-background__shooting-stars {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.side-background__shooting-star {
  position: absolute;
  top: var(--shooting-y);
  left: var(--shooting-x);
  width: var(--shooting-length);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 42%,
    rgba(255, 255, 255, 0.98) 100%
  );
  filter: drop-shadow(0 0 4px rgba(182, 231, 255, 0.95));
  transform-origin: right center;
  animation: side-shooting-star var(--shooting-duration) ease-out forwards;
  will-change: opacity, transform;
}

@keyframes side-shooting-star {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--shooting-angle)) scaleX(0.2);
  }

  12% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--shooting-angle)) scaleX(1);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--shooting-distance-x), var(--shooting-distance-y), 0)
      rotate(var(--shooting-angle))
      scaleX(0.7);
  }
}

@keyframes side-cloud-drift {
  from {
    background-position: var(--cloud-start, 0px) 0;
  }

  to {
    background-position: calc(var(--cloud-start, 0px) - var(--cloud-shift, 100vw)) 0;
  }
}

@keyframes side-cloud-rise {
  from {
    transform: translate3d(0, var(--cloud-y-start, 0vh), 0);
  }

  to {
    transform: translate3d(0, var(--cloud-y-end, 0vh), 0);
  }
}

@keyframes constellation-star-twinkle {
  0%,
  100% {
    opacity: 0.82;
  }

  42% {
    opacity: 0.92;
  }

  52% {
    opacity: 1;
  }

  64% {
    opacity: 0.9;
  }
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: calc(var(--star-opacity) * 0.4);
  }

  36% {
    opacity: calc(var(--star-opacity) * 0.7);
  }

  50% {
    opacity: 1;
  }

  58% {
    opacity: calc(var(--star-opacity) * 0.8);
  }

  72% {
    opacity: calc(var(--star-opacity) * 0.3);
  }
}

.page-shell {
  width: 100%;
  min-height: 100vh;
}

.lp {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, var(--content-top) 0%, var(--content-bottom) 100%);
  box-shadow: 0 0 40px rgba(2, 21, 77, 0.28);
}

.lp-section,
.lp-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.lp-section--narrow {
  /* 中央500pxに対して420px。スマホでは同じ比率（84%）で縮小する。 */
  width: 84%;
  margin-inline: auto;
}

.lp-title-layer {
  position: relative;
  width: 100%;
  line-height: 0;
}

.lp-special-section {
  position: relative;
  isolation: isolate;
  --lp-special-gap: clamp(18px, 5vw, 24px);
  --lp-special-segment-gap: clamp(8px, 2.8vw, 12px);
  padding-bottom: var(--lp-special-gap);
}

.lp-special-section::before {
  position: absolute;
  z-index: 0;
  top: min(55px, 11vw);
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: clamp(10px, 3.5vw, 16px);
  background: #00d200;
}

.lp-special-section > * {
  position: relative;
  z-index: 1;
}

.lp-special-intro {
  padding-top: 20.2%;
  padding-bottom: clamp(4px, 1vw, 5px);
}

.lp-special-re-title,
.lp-special-re-copy {
  position: relative;
  z-index: 1;
}

.lp-special-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(6px, 3vw, 13px);
  line-height: 0;
}

.lp-special-media__background {
  position: relative;
  z-index: 1;
}

.lp-special-media .lp-special-can {
  z-index: 2;
}

.lp-special-intro .lp-section-title {
  z-index: 3;
}

.lp-special-mega-link {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.lp-medal-section {
  position: relative;
  isolation: isolate;
  --lp-medal-gap: clamp(18px, 5vw, 24px);
  --lp-medal-segment-gap: clamp(6px, 2.2vw, 8px);
  padding-bottom: var(--lp-medal-gap);
}

.lp-medal-section::before {
  position: absolute;
  z-index: 0;
  top: min(55px, 11vw);
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: clamp(10px, 3.5vw, 16px);
  background: #ff2bff;
}

.lp-medal-section > * {
  position: relative;
  z-index: 1;
}

.lp-medal-intro {
  padding-top: 22.7%;
}

.lp-medal-intro .lp-content-image {
  position: relative;
  z-index: 1;
}

.lp-medal-intro .lp-section-title {
  z-index: 2;
}

.lp-medal-transition {
  display: block;
  width: 100%;
  height: auto;
}

.lp-zoom-image-frame {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.lp-zoom-image-frame--overflow-visible {
  overflow: visible;
}

.lp-medal-section > .lp-zoom-image-frame {
  margin-top: var(--lp-medal-segment-gap);
}

.lp-bowling-section > .lp-zoom-image-frame {
  margin-top: var(--lp-bowling-segment-gap);
}

.lp-karaoke-section > .lp-zoom-image-frame {
  margin-top: var(--lp-karaoke-segment-gap);
}

.js .lp-zoom-image-frame img {
  transform: scale(1.15);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.js .lp-zoom-image-frame.is-visible img {
  transform: scale(1);
}

.lp-bowling-section {
  position: relative;
  isolation: isolate;
  --lp-bowling-gap: clamp(18px, 5vw, 24px);
  --lp-bowling-segment-gap: clamp(12px, 3.8vw, 16px);
  padding-bottom: var(--lp-bowling-gap);
}

.lp-bowling-section::before {
  position: absolute;
  z-index: 0;
  top: min(55px, 11vw);
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: clamp(10px, 3.5vw, 16px);
  background: #ff9d00;
}

.lp-bowling-section > * {
  position: relative;
  z-index: 1;
}

.lp-bowling-intro {
  padding-top: 23.3%;
}

.lp-bowling-intro .lp-content-image {
  position: relative;
  z-index: 1;
}

.lp-bowling-intro .lp-section-title {
  z-index: 2;
}

.lp-bowling-transition {
  display: block;
  width: 100%;
  height: auto;
}

.lp-karaoke-section {
  position: relative;
  isolation: isolate;
  --lp-karaoke-gap: clamp(18px, 5vw, 24px);
  --lp-karaoke-segment-gap: clamp(10px, 2.8vw, 13px);
  padding-bottom: var(--lp-karaoke-gap);
}

.lp-karaoke-section::before {
  position: absolute;
  z-index: 0;
  top: min(55px, 11vw);
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  /* 縦長セクションでも縦方向だけ大きくならない丸み。 */
  border-radius: clamp(10px, 3.5vw, 16px);
  background: #a152ff;
}

.lp-karaoke-section > * {
  position: relative;
  z-index: 1;
}

.lp-karaoke-intro {
  padding-top: 21.9%;
}

.lp-karaoke-intro .lp-content-image {
  position: relative;
  z-index: 1;
}

.lp-karaoke-intro .lp-section-title {
  z-index: 2;
}

.lp-karaoke-transition {
  display: block;
  width: 100%;
  height: auto;
}

.lp-spocha-section {
  position: relative;
  isolation: isolate;
  --lp-spocha-gap: clamp(8px, 2.4vw, 12px);
  padding-bottom: var(--lp-spocha-gap);
}

.lp-spocha-section::before {
  position: absolute;
  z-index: 0;
  top: min(59px, 11.8vw);
  right: 0;
  bottom: var(--lp-spocha-gap);
  left: 0;
  content: "";
  border-radius: clamp(10px, 3.5vw, 16px);
  background: #00c6ff;
}

.lp-spocha-section > * {
  position: relative;
  z-index: 1;
}

.lp-spocha-intro {
  aspect-ratio: 841 / 568;
}

.lp-spocha-intro .lp-content-image {
  position: absolute;
  z-index: 1;
  top: 33.1%;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

.lp-spocha-intro .lp-section-title {
  z-index: 2;
}

.lp-spocha-schedule {
  position: relative;
  width: 100%;
  aspect-ratio: 840 / 159;
  line-height: 0;
}

.lp-spocha-schedule__copy {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

.lp-spocha-second {
  width: 100%;
  margin-top: clamp(18px, 4.5vw, 22px);
  line-height: 0;
}

#night-campaign-lp .lp-link-box {
  --lp-link-box-background: #00c6ff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 5.24% 3.81% 5.71% !important;
  border-radius: 0 !important;
  background: transparent !important;
  line-height: 1.2 !important;
}

#night-campaign-lp .lp-link-button {
  --lp-link-button-text: #00a9e0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 360px) !important;
  min-height: clamp(46px, 13.8vw, 58px) !important;
  padding: 0.55em 1em 0.55em 1.25em !important;
  border: 3px solid #fff !important;
  border-radius: 999px !important;
  color: var(--lp-link-button-text) !important;
  background: #fff !important;
  box-shadow: 0 4px 0 rgba(0, 87, 197, 0.25) !important;
  font-size: clamp(16px, 4vw, 21px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#night-campaign-lp .lp-link-button__label {
  display: block !important;
  color: inherit !important;
  font: inherit !important;
  line-height: inherit !important;
}

#night-campaign-lp .lp-link-button:hover,
#night-campaign-lp .lp-link-button:focus-visible {
  color: var(--lp-link-button-text) !important;
  background: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 87, 197, 0.25) !important;
}

#night-campaign-lp .lp-link-button:active {
  color: var(--lp-link-button-text) !important;
  background: #fff !important;
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 87, 197, 0.25) !important;
}

.lp-section-title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  pointer-events: none;
}

.lp-special-can {
  position: absolute !important;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100% !important;
  height: auto;
  margin: 0;
  border: 0;
  pointer-events: none;
}

.js .lp-special-can {
  opacity: 0;
  transform: scale(0.18) rotate(-20deg);
  transform-origin: 50% 58%;
  transition:
    transform 0.22s ease-in,
    opacity 0.2s ease-out;
  will-change: transform, opacity;
}

.js .lp-title-layer.is-visible .lp-special-can {
  opacity: 1;
  animation: special-can-pop 0.62s both;
  animation-delay: 0.22s;
}

@keyframes special-can-pop {
  0% {
    transform: scale(0.18) rotate(-20deg);
  }

  42% {
    transform: scale(1.32) rotate(5deg);
  }

  68% {
    transform: scale(0.9) rotate(-2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.js .lp-section-title {
  opacity: 0;
  transform: translateX(-120px);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease-out;
  will-change: transform, opacity;
}

.js .lp-title-layer.is-visible .lp-section-title {
  opacity: 1;
  transform: translateX(0);
}

.lp-section img,
.lp-footer img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

/* 透過素材化で抜けた、元画像のセクション内余白を補う。 */
.lp-bowling-section > img {
  margin-top: var(--lp-bowling-segment-gap);
}

.lp-special-section > img + img {
  margin-top: var(--lp-special-segment-gap);
}

.lp-medal-section > img {
  margin-top: var(--lp-medal-segment-gap);
}

.lp-karaoke-section > img {
  margin-top: var(--lp-karaoke-segment-gap);
}

.lp-karaoke-food-stage {
  position: relative;
  width: 100%;
  margin-top: var(--lp-karaoke-segment-gap);
  line-height: 0;
}

.lp-karaoke-food-stage > .lp-karaoke-food-sequence {
  margin-top: 0;
}

.lp-karaoke-food-stage > .lp-karaoke-food-sequence + .lp-karaoke-food-sequence {
  margin-top: 0;
}

.lp-karaoke-section .lp-karaoke-devil {
  position: absolute;
  z-index: 2;
  top: clamp(-42px, -7vw, -24px);
  left: clamp(-38px, -6vw, -20px);
  width: clamp(118px, 33vw, 180px);
  height: auto;
  margin: 0;
  pointer-events: none;
}

.js .lp-karaoke-devil {
  opacity: 0;
  transform: scale(0.2) rotate(-12deg);
  transform-origin: 50% 75%;
  will-change: transform, opacity;
}

.js .lp-karaoke-devil.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.js .lp-karaoke-devil.is-visible.is-popping-in {
  opacity: 1;
  animation: lp-karaoke-devil-pop 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .lp-karaoke-devil.is-popping-out {
  opacity: 0;
  animation: lp-karaoke-devil-pop-out 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lp-karaoke-devil-pop {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-12deg);
  }

  68% {
    opacity: 1;
    transform: scale(1.12) rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes lp-karaoke-devil-pop-out {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  32% {
    opacity: 1;
    transform: scale(1.1) rotate(-4deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.2) rotate(12deg);
  }
}

.lp-karaoke-section > .lp-karaoke-food-sequence + .lp-karaoke-food-sequence {
  margin-top: 0;
}

.lp-karaoke-section > .lp-karaoke-food-note + .lp-karaoke-transition {
  margin-top: 0;
}

.lp-karaoke-food-note {
  margin: clamp(10px, 2.5vw, 14px) 0 clamp(5px, 1.5vw, 8px);
  color: #fff;
  font-size: clamp(11px, 2.8vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.lp-karaoke-food-note--keep-bottom {
  margin-bottom: clamp(10px, 2.5vw, 14px);
}

.lp-spocha-second img + img {
  margin-top: var(--lp-spocha-segment-gap);
}

.lp-spocha-second .lp-spocha-second__location-second {
  margin-top: clamp(12px, 3vw, 16px);
}

.lp-spocha-second .lp-spocha-divider {
  margin-top: clamp(18px, 4.5vw, 22px);
}

.lp-spocha-second .lp-spocha-second__title {
  margin-top: clamp(16px, 4vw, 20px);
  margin-bottom: clamp(14px, 3.5vw, 18px);
}

.lp-spocha-second .lp-spocha-second__copy,
.lp-spocha-second .lp-spocha-second__price {
  margin-bottom: clamp(12px, 3vw, 16px);
}

.lp-spocha-mystery-link {
  margin-top: clamp(4px, 1.5vw, 8px);
}

.lp-spocha-mystery-link--after-followup {
  margin-top: 0;
}

.lp-spocha-second .lp-spocha-second__price {
  margin-bottom: clamp(6px, 1.5vw, 8px);
}

.lp-spocha-second .lp-spocha-second__mystery-followup {
  margin-top: clamp(8px, 2.5vw, 12px);
  margin-bottom: clamp(8px, 2.5vw, 12px);
}

#night-campaign-lp .lp-spocha-mystery-link .lp-link-button {
  padding: 0.55em 0.85em !important;
  font-size: clamp(14px, 3.6vw, 18px) !important;
}

.lp-hero__visual {
  position: relative;
  width: 100%;
}

.lp-hero__title {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 240;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}

.lp-hero__coins {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-hero__coin {
  position: absolute;
  top: -16%;
  left: var(--coin-x);
  display: block;
  width: 32px;
  height: auto;
  margin: 0;
  opacity: 0;
  filter: brightness(1.08) saturate(1.08)
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
  transform-origin: center;
  transform-style: preserve-3d;
  animation: lp-hero-coin-fall var(--coin-duration) linear var(--coin-delay)
    infinite;
  will-change: top, transform, opacity;
}

@keyframes lp-hero-coin-fall {
  0% {
    top: -16%;
    opacity: 0;
    transform: translate3d(var(--coin-drift-start), 0, 0)
      rotateZ(var(--coin-rotate-start)) rotateY(0deg);
  }

  8% {
    opacity: var(--coin-opacity);
  }

  78% {
    opacity: var(--coin-opacity);
  }

  100% {
    top: 108%;
    opacity: 0;
    transform: translate3d(var(--coin-drift-end), 0, 0)
      rotateZ(var(--coin-rotate-end)) rotateY(var(--coin-flip-turns));
  }
}

.lp-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}

.lp-hero__title-shine {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: brightness(1.85) saturate(1.15) contrast(1.08);
  clip-path: polygon(-38% 0, -24% 0, -12% 100%, -26% 100%);
  animation: lp-hero-title-shine 5s linear infinite;
}

@keyframes lp-hero-title-shine {
  0%,
  56% {
    opacity: 0;
    clip-path: polygon(-38% 0, -24% 0, -12% 100%, -26% 100%);
  }

  62% {
    opacity: 1;
  }

  78% {
    opacity: 1;
    clip-path: polygon(112% 0, 126% 0, 138% 100%, 124% 100%);
  }

  86%,
  100% {
    opacity: 0;
    clip-path: polygon(112% 0, 126% 0, 138% 100%, 124% 100%);
  }
}

.lp-footer {
  background: #fff;
}

#night-campaign-lp .lp-app-download {
  width: 100%;
  margin: 0;
  padding: clamp(22px, 5vw, 30px) clamp(10px, 3vw, 16px)
    clamp(34px, 7vw, 46px);
  background: #fff;
  line-height: 0;
}

#night-campaign-lp .lp-app-download__heading {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto clamp(14px, 3vw, 20px);
}

#night-campaign-lp .lp-app-download__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4px, 1.2vw, 7px);
  width: 100%;
}

#night-campaign-lp .lp-app-download__link {
  display: block;
  min-width: 0;
  margin: 0;
  line-height: 0;
}

#night-campaign-lp .lp-app-download__link img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

#night-campaign-lp .lp-app-download__note {
  margin: clamp(10px, 2.5vw, 14px) 0 0;
  color: #333;
  font-size: clamp(10px, 2.6vw, 13px);
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

@media (min-width: 1001px) {
  .side-nav {
    position: fixed;
    z-index: 4;
    top: 50%;
    left: 0;
    display: flex;
    width: calc(50% - 250px);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transform: translateY(-50%);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0s;
    visibility: visible;
  }

  .side-nav.is-footer-visible {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 20px));
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
    visibility: hidden;
  }

  .side-nav__brand {
    display: block;
    width: min(78%, 240px);
    height: auto;
    margin: 0 0 18px;
  }

  .side-nav__link {
    display: block;
    width: min(78%, 240px);
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  .side-nav__link img {
    display: block;
    width: 100%;
    height: auto;
  }

  .side-nav__link:hover,
  .side-nav__link:focus-visible {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
    transform: translateX(5px);
  }

  .side-logo {
    position: fixed;
    z-index: 4;
    top: 0;
    left: calc(50% + 250px);
    display: flex;
    width: calc(50% - 250px);
    height: 100vh;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0s;
    visibility: visible;
  }

  .side-logo.is-footer-visible {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
    visibility: hidden;
  }

  .side-logo img {
    display: block;
    width: min(76%, 240px);
    height: auto;
    opacity: 0.36;
    animation: side-logo-breathe 12s ease-in-out infinite;
    will-change: opacity;
  }
}

@keyframes side-logo-breathe {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

@media (max-width: 500px) {
  html {
    background: #fff;
  }

  body {
    background: #fff;
  }

  body::before {
    display: none;
  }

  .side-background {
    display: none;
  }

  .page-shell {
    padding-top: 55px;
  }

  .lp {
    box-shadow: none;
  }
}

@media (min-width: 501px) {
  .lp {
    min-height: 100vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .lp-section-title,
  .js .lp-title-layer.is-visible .lp-section-title {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .lp-zoom-image-frame img,
  .js .lp-zoom-image-frame.is-visible img {
    transform: none;
    transition: none;
  }

  .js .lp-karaoke-devil {
    opacity: 0;
    transform: none;
    animation: none;
  }

  .js .lp-karaoke-devil.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js .lp-karaoke-devil.is-popping-out {
    opacity: 0;
    transform: none;
    animation: none;
  }

  .js .lp-special-can,
  .js .lp-title-layer.is-visible .lp-special-can {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .side-background__cloud {
    animation: none;
  }

  .side-background__star--sparkle {
    animation: none;
    opacity: var(--star-opacity);
    filter: none;
    transform: none;
  }

  .side-background__constellation-star {
    animation: none;
    opacity: 1;
    filter: drop-shadow(0 0 0.8px rgba(206, 237, 255, 0.95));
    transform: none;
  }

  .side-background__shooting-star {
    display: none;
    animation: none;
  }

  .side-logo img {
    animation: none;
    opacity: 0.6;
  }
}
