:root {
  --paper: #f5f0e8;
  --paper-2: #ede6d9;
  --paper-3: #e7dfd1;
  --line: #d8d0c0;
  --line-dark: #bdb3a4;
  --ink: #4a4540;
  --muted: #6b635a;
  --faint: #958c82;
  --teal: #4f7f8b;
  --teal-dark: #345f69;
  --teal-soft: #c8dbe3;
  --white-soft: #f9f5ed;
  --serif: "Cormorant Garamond", "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic Antique", "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --inner: 1000px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.54), rgba(245, 240, 232, 0.42)),
    url("./assets/watercolor-paper.png"),
    radial-gradient(circle at 18% 34%, rgba(92, 136, 152, 0.12) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 84% 62%, rgba(157, 120, 93, 0.09) 0 1px, transparent 1px 100%),
    var(--paper);
  background-position: center top, center top, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: auto, cover, 34px 34px, 43px 43px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "kern" 1;
  overflow-wrap: break-word;
  word-break: keep-all;
  line-break: strict;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(74, 69, 64, 0.025), transparent 14%, rgba(92, 136, 152, 0.025) 72%, transparent),
    repeating-linear-gradient(0deg, rgba(74, 69, 64, 0.018) 0, rgba(74, 69, 64, 0.018) 1px, transparent 1px, transparent 6px);
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.18), rgba(245, 240, 232, 0.08));
}

main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 5% 15%, rgba(82, 126, 137, 0.16), transparent 28%),
    radial-gradient(ellipse at 95% 32%, rgba(176, 153, 119, 0.16), transparent 30%),
    radial-gradient(ellipse at 8% 64%, rgba(197, 211, 210, 0.22), transparent 25%),
    radial-gradient(ellipse at 92% 88%, rgba(72, 119, 132, 0.14), transparent 30%);
  mix-blend-mode: multiply;
}

.section,
.closing-cta {
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  overflow: clip;
  color: var(--white-soft);
  background: #25231f;
  isolation: isolate;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.5) sepia(0.18) contrast(0.88) brightness(0.78);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 18, 16, 0.56) 0%, rgba(33, 31, 28, 0.32) 36%, rgba(33, 31, 28, 0.1) 62%, rgba(18, 17, 16, 0.42) 100%),
    linear-gradient(180deg, rgba(12, 11, 10, 0.1) 0%, transparent 46%, rgba(12, 11, 10, 0.22) 100%),
    radial-gradient(ellipse at 16% 31%, rgba(92, 58, 51, 0.25), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0, rgba(255, 255, 255, 0.022) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: multiply;
}

.hero__copy {
  position: absolute;
  bottom: clamp(82px, 9.2vh, 118px);
  left: clamp(54px, 6.7vw, 138px);
  z-index: 2;
  width: clamp(420px, 30vw, 560px);
  display: grid;
  align-content: end;
  text-shadow: 0 1px 12px rgba(14, 12, 10, 0.35);
}

.hero__event,
.hero__actions {
  min-width: 0;
}

.hero__actions {
  display: block;
}

.hero__lead {
  margin: 0 0 clamp(16px, 1.9vh, 24px);
  font-family: var(--serif);
  font-size: clamp(31px, 3.1vh, 44px);
  line-height: 1.18;
  letter-spacing: 0.12em;
}

.hero__lead span {
  display: block;
  white-space: nowrap;
}

.hero h1 {
  position: relative;
  margin: 0 0 clamp(24px, 2.8vh, 36px);
  font-family: var(--serif);
  font-size: clamp(58px, 5.8vh, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.22em;
}

.hero h1::before,
.hero h1::after {
  content: "-";
  letter-spacing: 0;
}

.hero__date {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vh, 30px);
  letter-spacing: 0.08em;
}

.hero__time,
.hero__place {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.42vh, 18px);
  line-height: 1.7;
  letter-spacing: 0.07em;
}

.hero__tagline {
  display: none;
}

.hero__vertical-wrap {
  position: absolute;
  right: 168px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 22px;
  align-items: center;
  z-index: 2;
}

.hero__vertical-line {
  width: 0.5px;
  height: 188px;
  background: rgba(245, 240, 232, 0.5);
}

.hero__vertical {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 28px;
  color: #e4ddcf;
  line-height: 1.95;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 12px rgba(14, 12, 10, 0.5);
}

.hero__credit {
  position: absolute;
  right: max(8vw, 56px);
  bottom: 26px;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(249, 245, 237, 0.64);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 40px;
  padding: 10px 22px;
  border: 1px solid rgba(58, 96, 112, 0.18);
  border-radius: 1px;
  background: linear-gradient(180deg, rgba(95, 143, 155, 0.96), rgba(68, 116, 127, 0.96));
  color: var(--white-soft);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--teal-dark);
}

.hero-countdown {
  position: relative;
  width: min(100%, clamp(380px, 31vw, 600px));
  margin-top: clamp(24px, 2.8vh, 36px);
  padding: clamp(15px, 1.8vh, 22px) clamp(17px, 1.9vh, 24px) clamp(15px, 1.9vh, 23px);
  border: 1px solid rgba(249, 245, 237, 0.24);
  background:
    linear-gradient(180deg, rgba(46, 86, 96, 0.5), rgba(22, 31, 31, 0.36)),
    radial-gradient(ellipse at 8% 12%, rgba(156, 199, 205, 0.28), transparent 52%);
  color: rgba(249, 245, 237, 0.94);
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.hero-countdown::before {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(147, 211, 218, 0.92), transparent);
  animation: countdownGlow 2.8s ease-in-out infinite;
}

.hero-countdown > * {
  position: relative;
  z-index: 1;
}

.hero-countdown__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(10px, 1.2vh, 14px);
  font-family: var(--serif);
  font-size: clamp(12px, 1.15vh, 15px);
  line-height: 1;
  letter-spacing: 0.15em;
  color: rgba(249, 245, 237, 0.72);
  white-space: nowrap;
}

.hero-countdown__units {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(8px, 0.9vh, 12px);
}

.hero-countdown__unit {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: clamp(8px, 1vh, 13px) clamp(8px, 1vh, 12px) clamp(7px, 1vh, 12px);
  border: 1px solid rgba(249, 245, 237, 0.14);
  background:
    linear-gradient(180deg, rgba(249, 245, 237, 0.11), rgba(249, 245, 237, 0.035)),
    rgba(28, 43, 43, 0.18);
  text-align: center;
}

.hero-countdown__unit strong {
  font-family: var(--serif);
  font-size: clamp(32px, 3.35vh, 48px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white-soft);
  font-variant-numeric: tabular-nums;
}

.hero-countdown__unit small {
  font-family: var(--serif);
  font-size: clamp(10px, 0.95vh, 13px);
  line-height: 1;
  letter-spacing: 0.14em;
  color: rgba(249, 245, 237, 0.62);
}

@keyframes countdownGlow {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

.button--center {
  margin-inline: auto;
}

.button--pale {
  min-width: 170px;
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.72), rgba(222, 214, 199, 0.78)),
    rgba(237, 230, 217, 0.86);
  color: var(--ink);
}

.button--pale:hover,
.button--pale:focus-visible {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.utility {
  position: sticky;
  top: 0;
  z-index: 24;
  background:
    linear-gradient(180deg, rgba(63, 107, 117, 0.98), rgba(45, 89, 99, 0.98)),
    var(--teal-dark);
  color: var(--white-soft);
  border-top: 1px solid rgba(245, 240, 232, 0.18);
  border-bottom: 1px solid rgba(74, 69, 64, 0.18);
}

.utility__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 890px;
  min-height: 52px;
  margin: 0 auto;
  padding: 8px 22px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.utility__label {
  padding: 3px 14px;
  border: 1px solid rgba(249, 245, 237, 0.16);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(249, 245, 237, 0.75);
}

.utility__text {
  white-space: nowrap;
}

.utility__divider {
  width: 1px;
  height: 28px;
  background: rgba(249, 245, 237, 0.22);
}

.utility__seat {
  flex: 1;
  min-width: 180px;
  white-space: nowrap;
  color: rgba(249, 245, 237, 0.78);
}

.utility__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 36px;
  padding: 8px 16px;
  background: linear-gradient(180deg, #eee5d2, #ded3bc);
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.section {
  position: relative;
}

.section__inner {
  width: min(var(--inner), calc(100% - 88px));
  margin: 0 auto;
}

.section--overview {
  padding: 56px 0 47px;
}

.section--ticket {
  padding: 45px 0 70px;
  overflow: hidden;
  scroll-margin-top: 56px;
}

.section--ticket::before {
  position: absolute;
  right: -90px;
  bottom: -70px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(92, 136, 152, 0.06);
  border-radius: 43% 57% 49% 51%;
  content: "";
  background:
    radial-gradient(circle at 48% 42%, rgba(200, 219, 227, 0.4), rgba(200, 219, 227, 0.12) 48%, transparent 70%);
  filter: blur(8px);
}

.section--concept {
  padding: 62px 0 44px;
}

.section--movie {
  padding: 42px 0 58px;
}

.section--goods {
  padding: 48px 0 66px;
}

.section--access {
  padding: 58px 0 62px;
}

.section--faq {
  padding: 54px 0 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 38px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  text-wrap: balance;
}

.section-title::before,
.section-title::after {
  flex: 1 1 64px;
  max-width: 208px;
  height: 1px;
  content: "";
  background: var(--line);
}

.section-title span {
  white-space: nowrap;
}

.side-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-wrap: balance;
}

.side-title::after {
  width: 105px;
  height: 1px;
  content: "";
  background: var(--line);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 95px;
  padding: 24px 24px 18px;
  align-items: start;
}

.overview-item + .overview-item {
  border-left: 1px solid var(--line);
}

.overview-item svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}

.overview-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-wrap: balance;
  word-break: keep-all;
}

.overview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  max-width: 720px;
  margin: 0 auto;
}

.ticket-card {
  position: relative;
  min-height: 292px;
  padding: 31px 33px 25px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.9), rgba(233, 225, 211, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(214, 204, 189, 0.08));
}

.ticket-card--premium {
  border-color: var(--line);
  box-shadow: inset 0 0 0 1px rgba(184, 153, 92, 0.24);
}

.ticket-card--soldout {
  color: rgba(74, 69, 64, 0.74);
  background:
    linear-gradient(180deg, rgba(236, 230, 219, 0.92), rgba(223, 214, 200, 0.86)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(206, 197, 182, 0.08));
  border-color: rgba(79, 127, 139, 0.28);
}

.ticket-card--soldout > :not(.ticket-card__soldout-stamp) {
  opacity: 0.74;
}

.ticket-card::before,
.ticket-card::after {
  position: absolute;
  width: 14px;
  height: 14px;
  content: "";
  border-color: var(--line-dark);
  opacity: 0.45;
}

.ticket-card::before {
  top: -1px;
  right: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.ticket-card::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.ticket-card--premium::before,
.ticket-card--premium::after {
  width: 22px;
  height: 22px;
  border-color: rgba(184, 153, 92, 0.68);
  opacity: 0.62;
}

.ticket-card--premium::before {
  top: 8px;
  right: 8px;
}

.ticket-card--premium::after {
  bottom: 8px;
  left: 8px;
}

.ticket-card__soldout-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 242px;
  padding: 12px 22px 13px;
  border-top: 1px solid rgba(79, 127, 139, 0.58);
  border-bottom: 1px solid rgba(79, 127, 139, 0.58);
  color: rgba(79, 127, 139, 0.96);
  background: rgba(249, 245, 237, 0.88);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
  opacity: 0.6;
}

.ticket-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
}

.ticket-card__price {
  margin: 0 0 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.ticket-card__price small {
  font-size: 10px;
}

.ticket-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.ticket-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}

.ticket-card li span {
  color: var(--ink);
  font-size: 16px;
  opacity: 0.72;
}

.ticket-card__icon.material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 250,
    "GRAD" 0,
    "opsz" 24;
}

.ticket-card__status {
  display: grid;
  place-items: center;
  min-height: 30px;
  margin: 0;
  background: linear-gradient(180deg, rgba(226, 220, 205, 0.82), rgba(207, 199, 184, 0.76));
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.ticket-card__status--soldout {
  background: linear-gradient(180deg, rgba(111, 155, 167, 0.92), rgba(79, 127, 139, 0.9));
  color: rgba(249, 245, 237, 0.94);
  font-family: var(--serif);
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 1;
}

.ticket-card__links {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.ticket-card__links--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ticket-card__link {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(79, 127, 139, 0.24);
  background:
    linear-gradient(180deg, rgba(249, 245, 237, 0.76), rgba(226, 218, 203, 0.78)),
    rgba(237, 230, 217, 0.82);
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ticket-card__link:hover,
.ticket-card__link:focus-visible {
  border-color: rgba(79, 127, 139, 0.62);
  background: var(--teal-soft);
}

.ticket-card__link--primary {
  background: linear-gradient(180deg, rgba(95, 143, 155, 0.96), rgba(68, 116, 127, 0.96));
  color: var(--white-soft);
}

.ticket-card__link--primary:hover,
.ticket-card__link--primary:focus-visible {
  background: var(--teal-dark);
  color: var(--white-soft);
}

.ticket-note {
  margin: 23px 0 16px;
  color: var(--faint);
  font-size: 12px;
  text-align: center;
}

.section--ticket .button--center {
  display: flex;
  width: min(100%, 330px);
  min-height: 54px;
  margin: 22px auto 0;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.concept-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: center;
}

.concept-text {
  padding-left: 8px;
  min-width: 0;
}

.concept-catch {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-wrap: normal;
}

.concept-catch span {
  display: block;
  white-space: nowrap;
}

.concept-catch__sp {
  display: none !important;
}

.concept-catch span + span {
  margin-top: 18px;
}

.concept-text p:not(.concept-catch) {
  margin: 0;
  max-width: 300px;
  color: rgba(74, 69, 64, 0.88);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  white-space: normal;
}

.photo-collage {
  position: relative;
  min-width: 0;
  margin: 0;
}

.photo-collage img {
  width: 100%;
  display: block;
  height: auto;
}

.movie-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 208, 192, 0.7);
}

.movie-copy {
  padding: 30px 0 30px 0;
}

.movie-copy p {
  margin: -8px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.movie-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 185px;
  border: 1px solid rgba(216, 208, 192, 0.62);
  padding: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.movie-frame__embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.goods-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(216, 208, 192, 0.7);
}

.goods-head > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.goods-head .side-title {
  margin-bottom: 0;
}

.goods-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.goods-coming {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  min-height: 116px;
  margin: 74px auto 0;
  padding: 28px 24px 26px;
  border-top: 1px solid rgba(216, 208, 192, 0.72);
  border-bottom: 1px solid rgba(216, 208, 192, 0.72);
  background:
    linear-gradient(90deg, transparent, rgba(237, 230, 217, 0.62) 18%, rgba(237, 230, 217, 0.62) 82%, transparent),
    linear-gradient(180deg, rgba(249, 245, 237, 0.38), rgba(226, 218, 203, 0.22));
  text-align: center;
}

.goods-coming__label {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--teal-dark);
}

.goods-coming__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

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

.goods-card__image {
  display: grid;
  place-items: center;
  height: 118px;
  margin-bottom: 12px;
  border: 1px solid rgba(216, 208, 192, 0.72);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.55), rgba(220, 213, 199, 0.62)),
    url("./assets/watercolor-paper.png"),
    rgba(237, 230, 217, 0.66);
  background-position: center, center 50%;
  background-size: auto, 520px auto;
  background-blend-mode: normal, multiply, normal;
  overflow: hidden;
}

.goods-card__image--postcard {
  grid-template-columns: repeat(2, 58px);
  gap: 6px;
}

.goods-card__image--postcard img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  filter: saturate(0.5) sepia(0.18) contrast(0.88);
}

.goods-card__image--postcard img:first-child {
  object-position: 10% 55%;
  transform: rotate(-3deg);
}

.goods-card__image--postcard img:last-child {
  object-position: 63% 48%;
  transform: rotate(2deg);
}

.goods-card__image--tote::before {
  width: 74px;
  height: 82px;
  content: "";
  border: 1px solid #c5bdae;
  background:
    radial-gradient(ellipse at 50% -2%, transparent 0 28px, #aa9f91 29px 30px, transparent 31px 100%),
    linear-gradient(180deg, transparent 0 47%, rgba(74, 69, 64, 0.2) 48% 49%, transparent 50% 100%),
    #eee7da;
}

.goods-card__image--key::before {
  width: 74px;
  height: 74px;
  content: "";
  border: 1px solid #c5bdae;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 13%, transparent 0 8px, #c5bdae 9px 10px, transparent 11px 100%),
    linear-gradient(135deg, transparent 0 47%, rgba(74, 69, 64, 0.2) 48% 50%, transparent 51% 100%),
    #efe8db;
}

.goods-card__image--towel::before {
  width: 118px;
  height: 42px;
  content: "";
  border: 1px solid #c5bdae;
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(92, 136, 152, 0.24) 35% 36%, transparent 37% 100%),
    #e5e4df;
  transform: rotate(-7deg);
}

.goods-card h3 {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.goods-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.2;
}

.access-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(216, 208, 192, 0.8);
}

.access-copy h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.access-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.map-panel {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(189, 179, 164, 0.74);
  background: rgba(245, 240, 232, 0.42);
}

.map-panel__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) sepia(0.06) contrast(0.94) brightness(0.98);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding-top: 0;
  border-top: 0;
}

.faq-main {
  width: 100%;
  min-width: 0;
}

.accordion {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-top: 0;
}

.accordion__item {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.accordion__button {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 16px 46px 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-wrap: pretty;
}

.accordion__button > span:first-child {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: auto;
  white-space: normal;
}

.accordion__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  width: 28px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 240ms ease, opacity 240ms ease;
}

.accordion__button:focus-visible {
  outline: 1px solid rgba(79, 127, 139, 0.42);
  outline-offset: -2px;
}

.accordion__item:last-child {
  border-bottom: 0;
}

.accordion__panel {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: transparent;
  opacity: 0;
  transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}

.accordion__panel p {
  margin: 0;
  padding: 6px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.accordion__item.is-open .accordion__icon {
  transform: translateY(-50%) rotate(180deg);
}

.accordion__item.is-open .accordion__panel {
  opacity: 1;
}

.closing-cta {
  position: relative;
  width: min(var(--inner), calc(100% - 88px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 0;
  text-align: center;
}

.closing-cta p {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.closing-cta__line {
  display: inline;
}

.closing-cta h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.footer {
  background: var(--teal-dark);
  color: rgba(249, 245, 237, 0.86);
}

.footer__inner {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 62px;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 17px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  opacity: 0.84;
}

.footer__social i {
  font-size: 15px;
  line-height: 1;
}

.footer p {
  margin: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(52, 95, 105, 0.22);
  color: rgba(249, 245, 237, 0.94);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.back-to-top i {
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 700px) {
  body {
    background:
      linear-gradient(180deg, rgba(245, 240, 232, 0.72), rgba(245, 240, 232, 0.6)),
      url("./assets/flyer-hero.jpg"),
      radial-gradient(circle at 18% 34%, rgba(92, 136, 152, 0.08) 0 1px, transparent 1px 100%),
      radial-gradient(circle at 84% 62%, rgba(157, 120, 93, 0.06) 0 1px, transparent 1px 100%),
      var(--paper);
    background-position: center top, 78% 0, 0 0, 0 0;
    background-repeat: no-repeat, repeat-y, repeat, repeat;
    background-size: auto, 214% auto, 34px 34px, 43px 43px;
  }

  :root {
    --inner: 680px;
  }

  .hero {
    min-height: 0;
    /* svh = small viewport（バーあり）の高さ = Chrome/Safari どちらでも表示領域内に収まる */
    height: 100svh;
  }

  .hero__image {
    object-position: 56% 50%;
  }

  .hero__copy {
    top: auto;
    right: 24px;
    bottom: max(32px, calc(env(safe-area-inset-bottom) + 20px));
    left: 24px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-end;
    gap: clamp(12px, 2svh, 18px);
    width: auto;
    max-width: none;
    padding: 0;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .hero__lead {
    font-size: 27px;
    line-height: 1.15;
    margin-bottom: 13px;
  }

  .hero h1 {
    font-size: 50px;
    margin-bottom: 18px;
  }

  .hero__date {
    margin-bottom: 3px;
  }

  .hero__time {
    margin-bottom: 0;
  }

  .hero__vertical-wrap {
    display: none;
  }

  .hero__tagline {
    display: block;
    position: absolute;
    top: max(24px, calc(env(safe-area-inset-top) + 8px));
    left: 24px;
    right: auto;
    transform: none;
    z-index: 3;
    margin: 0;
    max-width: none;
    text-align: left;
    font-family: "Noto Serif JP", serif;
    font-weight: 200;
    font-size: clamp(14.5px, 9vw, 26.5px);
    line-height: 1.45;
    letter-spacing: 0.06em;
    white-space: normal;
    color: #ddd5c5;
  }

  .hero-countdown {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 12px;
    background:
      linear-gradient(180deg, rgba(46, 86, 96, 0.15), rgba(22, 31, 31, 0.12)),
      radial-gradient(ellipse at 8% 12%, rgba(156, 199, 205, 0.12), transparent 52%);
  }

  .hero-countdown__units {
    display: flex;
    gap: 6px;
  }

  .hero-countdown__unit {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-countdown__head {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero-countdown__unit strong {
    font-size: 32px;
  }

  .hero-countdown__unit small {
    font-size: 8px;
  }

  .hero-countdown__unit {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .utility__inner {
    flex-wrap: wrap;
    gap: 9px 13px;
    padding: 10px 22px 12px;
  }

  .utility__divider,
  .utility__seat {
    display: none;
  }

  .utility__button {
    margin-left: auto;
  }

  .section__inner,
  .closing-cta {
    width: calc(100% - 44px);
  }

  .section--faq {
    padding-inline: 0;
  }

  .section--faq .section__inner {
    width: auto;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
  }

  .section--faq .side-title,
  .section--faq .accordion {
    width: 100%;
    margin-inline: 0;
  }

  .section-title::before,
  .section-title::after {
    width: 80px;
  }

  .overview-grid,
  .ticket-grid,
  .concept-layout,
  .movie-layout,
  .access-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .overview-item + .overview-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ticket-grid {
    gap: 22px;
    max-width: 440px;
  }

  .concept-layout,
  .movie-layout,
  .access-layout,
  .faq-layout {
    gap: 26px;
  }

  .concept-text p:not(.concept-catch) {
    max-width: min(100%, 18em);
  }

  .photo-collage {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .goods-head {
    align-items: start;
    flex-direction: column;
  }

  .goods-head > div {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .goods-head p {
    margin-left: 0;
    max-width: 15em;
    line-height: 1.55;
  }

  .goods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .faq-main {
    width: 100%;
    margin: 0;
  }

  .accordion__button {
    padding: 18px 44px 18px 0;
  }

  .accordion__panel {
    padding-left: 0;
    padding-right: 0;
  }

  .botanical {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 98px;
    padding: 18px 0;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
    background:
      linear-gradient(180deg, rgba(245, 240, 232, 0.76), rgba(245, 240, 232, 0.64)),
      url("./assets/flyer-hero.jpg"),
      radial-gradient(circle at 18% 34%, rgba(92, 136, 152, 0.07) 0 1px, transparent 1px 100%),
      radial-gradient(circle at 84% 62%, rgba(157, 120, 93, 0.05) 0 1px, transparent 1px 100%),
      var(--paper);
    background-position: center top, 84% 0, 0 0, 0 0;
    background-repeat: no-repeat, repeat-y, repeat, repeat;
    background-size: auto, 238% auto, 34px 34px, 43px 43px;
  }

  .hero {
    min-height: 0;
    height: 100svh;
  }

  .hero__image {
    object-position: 58% 50%;
  }

  .hero__copy {
    top: auto;
    right: 24px;
    bottom: max(32px, calc(env(safe-area-inset-bottom) + 20px));
    left: 24px;
    gap: clamp(12px, 2svh, 18px);
    width: auto;
    max-width: none;
    padding: 0;
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .hero__lead {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
  }

  .hero__date {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .hero__time {
    margin-bottom: 0;
  }

  .hero__tagline {
    top: max(22px, calc(env(safe-area-inset-top) + 6px));
    left: 24px;
    max-width: none;
    font-size: clamp(13px, 7.8vw, 23px);
    line-height: 1.42;
    letter-spacing: 0.04em;
  }

  .hero-countdown {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 12px;
    background:
      linear-gradient(180deg, rgba(46, 86, 96, 0.15), rgba(22, 31, 31, 0.12)),
      radial-gradient(ellipse at 8% 12%, rgba(156, 199, 205, 0.12), transparent 52%);
  }

  .hero-countdown__head {
    gap: 6px;
    margin-bottom: 9px;
    font-size: 10px;
  }

  .hero-countdown__units {
    display: flex;
    gap: 6px;
  }

  .hero-countdown__unit {
    flex: 1 1 0;
    min-height: 64px;
    min-width: 0;
    padding: 6px 4px 5px;
  }

  .hero-countdown__unit strong {
    font-size: 32px;
  }

  .hero-countdown__unit small {
    font-size: 8px;
  }

  .section--faq {
    padding-inline: 0;
  }

  .section--faq .section__inner {
    width: auto;
    max-width: none;
    margin-left: 24px;
    margin-right: 24px;
  }

  .section--faq .side-title,
  .section--faq .accordion {
    width: 100%;
    margin-inline: 0;
  }

  .faq-main {
    width: 100%;
    margin: 0;
  }

  .accordion__button {
    padding: 18px 44px 18px 0;
  }

  .accordion__panel {
    padding-left: 0;
    padding-right: 0;
  }

  /* utility bar が2段になるため scroll-margin を増やす */
  #ticket {
    scroll-margin-top: 88px;
  }

  .utility__inner {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
  }

  .utility__button {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .section-title {
    gap: 15px;
    font-size: 18px;
    margin-bottom: 34px;
  }

  .section-title::before,
  .section-title::after {
    width: 48px;
  }

  .overview-item {
    grid-template-columns: 34px 1fr;
    padding: 21px 14px 17px;
  }

  .ticket-card {
    padding: 30px 22px 24px;
  }

  .ticket-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .ticket-card__price {
    font-size: 35px;
  }

  .ticket-card__links--split {
    grid-template-columns: 1fr;
  }

  .concept-catch {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  .concept-catch__pc {
    display: none !important;
  }

  .concept-catch__sp {
    display: block !important;
  }

  .concept-text {
    padding-left: 0;
  }

  .concept-text p:not(.concept-catch) {
    width: 100%;
    max-width: none;
    font-size: 16px;
    line-height: 2.05;
    letter-spacing: 0.035em;
  }

  .photo-collage {
    max-width: 100%;
  }

  .movie-frame,
  .movie-frame__embed {
    min-height: 150px;
  }

  .goods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .goods-coming {
    min-height: 104px;
    margin-top: 48px;
    padding: 26px 18px 24px;
  }

  .goods-coming__label {
    font-size: 22px;
    letter-spacing: 0.14em;
  }

  .goods-card__image {
    height: 100px;
  }

  .map-panel {
    min-height: 138px;
  }

  .closing-cta h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .closing-cta__line {
    display: block;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}

/* 短い端末（360×640, 375×667, 390×700 等）でCTAまで画面内に収める補正
   max-height は viewport 高さ（= svh 相当）で判定。
   Chrome アドレスバーあり状態でも全機種で CTA が見切れないよう調整。 */
@media (max-width: 700px) and (max-height: 760px) {
  .hero__copy {
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
    gap: 12px;
  }

  .hero__lead {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero__date {
    font-size: 16px;
  }

  .hero__time {
    font-size: 13px;
  }

  /* 100vw は使わず親幅に従う */
  .hero__actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-countdown {
    padding: 12px 10px;
  }

  .hero-countdown__unit {
    min-height: 52px;
  }

  .hero-countdown__unit strong {
    font-size: 26px;
  }

}

/* ========================================================================
   MV (Hero) Entrance Animation
   - <html class="is-ready"> がついている時のみ作動（インラインスクリプトで即時付与）
   - JSが動かない場合は通常表示にフォールバック（要素は最初から見える）
   - prefers-reduced-motion 時は全アニメ停止
   ======================================================================== */

.is-ready .hero__image {
  opacity: 0;
  animation: mvImageIn 1800ms cubic-bezier(0.22, 0.61, 0.36, 1) 4600ms both;
  transform-origin: 54% 50%;
  will-change: transform, opacity;
}

.is-ready .hero__veil {
  opacity: 0;
  animation: mvFadeIn 1400ms ease-out 4600ms both;
}

.is-ready .hero__lead span {
  opacity: 0;
  animation: mvRiseIn 780ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.is-ready .hero__lead span:nth-child(1) { animation-delay: 1900ms; }
.is-ready .hero__lead span:nth-child(2) { animation-delay: 2040ms; }
.is-ready .hero__lead span:nth-child(3) { animation-delay: 2180ms; }

/* 1. Echoes：MVの最初に立ち上がる主役 */
.is-ready .hero h1 {
  opacity: 0;
  animation: mvEchoIn 1650ms cubic-bezier(0.22, 0.61, 0.36, 1) 300ms forwards;
}

/* 4. 日付・時間（リードに続いて） */
.is-ready .hero__date {
  opacity: 0;
  animation: mvRiseIn 820ms cubic-bezier(0.22, 0.61, 0.36, 1) 2400ms forwards;
}

.is-ready .hero__time {
  opacity: 0;
  animation: mvRiseIn 820ms cubic-bezier(0.22, 0.61, 0.36, 1) 2520ms forwards;
}

/* 5. カウントダウン（後半に "ticking" を出す） */
.is-ready .hero-countdown {
  opacity: 0;
  animation: mvCountdownIn 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 2750ms forwards;
}

.is-ready .hero-countdown::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(249, 245, 237, 0.22) 44%, rgba(150, 214, 220, 0.26) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: mvCountdownSweep 1300ms cubic-bezier(0.22, 0.61, 0.36, 1) 3050ms both;
}

.is-ready .hero-countdown__unit {
  opacity: 0;
  animation: mvCountdownUnitIn 680ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.is-ready .hero-countdown__unit:nth-child(1) { animation-delay: 3050ms; }
.is-ready .hero-countdown__unit:nth-child(2) { animation-delay: 3190ms; }
.is-ready .hero-countdown__unit:nth-child(3) { animation-delay: 3330ms; }
.is-ready .hero-countdown__unit:nth-child(4) { animation-delay: 3470ms; }

.is-ready .hero-countdown__head {
  opacity: 0;
  animation: mvFadeIn 620ms ease-out 2950ms forwards;
}

/* 2. 縦線・縦書きタグライン（PC）／タグライン（SP） */
.is-ready .hero__vertical-line {
  opacity: 0;
  transform-origin: top center;
  animation: mvLineGrow 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 7100ms forwards;
}

.is-ready .hero__vertical {
  opacity: 0;
  animation: mvFadeIn 1050ms ease-out 7420ms forwards;
}

.is-ready .hero__tagline {
  opacity: 0;
  animation: mvFadeIn 1050ms ease-out 7280ms forwards;
}

@keyframes mvImageIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes mvFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes mvCountdownIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(8px);
    box-shadow: 0 0 0 rgba(147, 211, 218, 0);
  }
  62% {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 0 36px rgba(147, 211, 218, 0.15);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 0 0 rgba(147, 211, 218, 0);
  }
}

@keyframes mvCountdownUnitIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes mvCountdownSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  22% { opacity: 0.85; }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes mvRiseIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Echoes：letter-spacingが少し広い状態から収束させ、blurで残響感を演出 */
@keyframes mvEchoIn {
  0% {
    opacity: 0;
    letter-spacing: 0.42em;
    transform: translateY(4px) scale(1.045);
    filter: blur(8px);
    text-shadow:
      -20px 0 18px rgba(147, 211, 218, 0.16),
      20px 0 18px rgba(249, 245, 237, 0.12);
  }
  44% {
    opacity: 1;
    filter: blur(2px);
    text-shadow:
      -12px 0 14px rgba(147, 211, 218, 0.24),
      12px 0 14px rgba(249, 245, 237, 0.18);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.22em;
    transform: translateY(0) scale(1);
    filter: blur(0);
    text-shadow: 0 1px 12px rgba(14, 12, 10, 0.35);
  }
}

@keyframes mvLineGrow {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

/* SP <=520px は h1 の letter-spacing が 0.16em のため、専用キーフレームで終端を合わせる */
@media (max-width: 520px) {
  .is-ready .hero h1 {
    animation-name: mvEchoInSP;
  }
}

@keyframes mvEchoInSP {
  0% {
    opacity: 0;
    letter-spacing: 0.31em;
    transform: translateY(4px) scale(1.035);
    filter: blur(7px);
    text-shadow:
      -14px 0 14px rgba(147, 211, 218, 0.16),
      14px 0 14px rgba(249, 245, 237, 0.12);
  }
  44% {
    opacity: 1;
    filter: blur(2px);
    text-shadow:
      -8px 0 12px rgba(147, 211, 218, 0.22),
      8px 0 12px rgba(249, 245, 237, 0.16);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.16em;
    transform: translateY(0) scale(1);
    filter: blur(0);
    text-shadow: 0 1px 12px rgba(14, 12, 10, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-ready .hero__image,
  .is-ready .hero__veil,
  .is-ready .hero__lead span,
  .is-ready .hero h1,
  .is-ready .hero__date,
  .is-ready .hero__time,
  .is-ready .hero-countdown__head,
  .is-ready .hero-countdown__unit,
  .is-ready .hero-countdown,
  .is-ready .hero__vertical-line,
  .is-ready .hero__vertical,
  .is-ready .hero__tagline {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .is-ready .hero-countdown::after {
    animation: none;
    opacity: 0;
  }
}

/* ========================================================================
   Reveal on Scroll（MV以外のコンテンツブロック）
   - .is-ready 配下で初期非表示、IntersectionObserverで .is-visible を付与
   - 入れ子reveal回避: heading類は親wrapperの一部として動かす
     （FAQのside-titleだけは親wrapperがないので個別対象）
   - 連続アイテムは :nth-child で 60ms stagger
   - prefers-reduced-motion 時は全要素表示済み扱い
   ======================================================================== */

.is-ready .section-title,
.is-ready .section--faq .side-title,
.is-ready .overview-item,
.is-ready .ticket-card,
.is-ready .ticket-note,
.is-ready .concept-text,
.is-ready .photo-collage,
.is-ready .movie-copy,
.is-ready .movie-frame,
.is-ready .goods-head,
.is-ready .goods-coming,
.is-ready .goods-card,
.is-ready .access-copy,
.is-ready .map-panel,
.is-ready .accordion__item,
.is-ready .closing-cta {
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
}

.is-ready .section-title.is-visible,
.is-ready .section--faq .side-title.is-visible,
.is-ready .overview-item.is-visible,
.is-ready .ticket-card.is-visible,
.is-ready .ticket-note.is-visible,
.is-ready .concept-text.is-visible,
.is-ready .photo-collage.is-visible,
.is-ready .movie-copy.is-visible,
.is-ready .movie-frame.is-visible,
.is-ready .goods-head.is-visible,
.is-ready .goods-coming.is-visible,
.is-ready .goods-card.is-visible,
.is-ready .access-copy.is-visible,
.is-ready .map-panel.is-visible,
.is-ready .accordion__item.is-visible,
.is-ready .closing-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 連続アイテムの stagger（60ms ずつ） */
.is-ready .overview-grid > .overview-item:nth-child(2) { --reveal-i: 1; }
.is-ready .overview-grid > .overview-item:nth-child(3) { --reveal-i: 2; }
.is-ready .ticket-grid > .ticket-card:nth-child(2) { --reveal-i: 1; }
.is-ready .goods-grid > .goods-card:nth-child(2) { --reveal-i: 1; }
.is-ready .goods-grid > .goods-card:nth-child(3) { --reveal-i: 2; }
.is-ready .goods-grid > .goods-card:nth-child(4) { --reveal-i: 3; }
.is-ready .accordion > .accordion__item:nth-child(2) { --reveal-i: 1; }
.is-ready .accordion > .accordion__item:nth-child(3) { --reveal-i: 2; }

@media (prefers-reduced-motion: reduce) {
  .is-ready .section-title,
  .is-ready .section--faq .side-title,
  .is-ready .overview-item,
  .is-ready .ticket-card,
  .is-ready .ticket-note,
  .is-ready .concept-text,
  .is-ready .photo-collage,
  .is-ready .movie-copy,
  .is-ready .movie-frame,
  .is-ready .goods-head,
  .is-ready .goods-coming,
  .is-ready .goods-card,
  .is-ready .access-copy,
  .is-ready .map-panel,
  .is-ready .accordion__item,
  .is-ready .closing-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
