/* =========================================
   たべっ子どうぶつ MIRAI LAB. ～星降るキラリウム～
   Announcement LP  /  Theme: starry night x digital sparkle
   Header: Asoview logo  /  Bottom fixed CTA
   ========================================= */

:root {
  --c-night: #17123A;        /* deep night */
  --c-night-2: #241a55;      /* indigo */
  --c-purple: #4b2f8f;
  --c-bg: #FDFBF4;           /* warm cream (light sections) */
  --c-bg-alt: #FFF4E0;
  --c-text: #241F42;
  --c-text-soft: #5A5478;
  --c-gold: #FFCF3F;         /* たべっ子 yellow / star gold (use on DARK bg only) */
  --c-gold-deep: #F5A623;
  --c-accent-strong: #A85700; /* small text on light bg — passes AA 4.5:1 */
  --c-accent-lg: #BE6A00;     /* large display text on light bg — passes AA 3:1 */
  --c-free: #0B7A5E;          /* "無料" green on light bg — AA */
  --c-pink: #FF7FA9;
  --c-mint: #6FD6C6;
  --c-blue: #6FA8FF;
  --c-line: #ECE3D4;
  --c-line-dark: rgba(255,255,255,.16);
  --shadow-card: 0 16px 40px rgba(27, 20, 64, 0.14);
  --shadow-soft: 0 6px 20px rgba(27, 20, 64, 0.10);
  --shadow-glow: 0 0 32px rgba(255, 207, 63, 0.45);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-xl: 44px;
  --bottom-cta-h: 78px;
  --font-jp: "Zen Maru Gothic", "M PLUS Rounded 1c", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-round: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
  --font-serif: "Bodoni Moda", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--bottom-cta-h) + env(safe-area-inset-bottom));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 800; }

/* Keyboard focus visibility (a11y) */
a:focus-visible, button:focus-visible {
  outline: 3px solid #2D6CDF;
  outline-offset: 3px;
  border-radius: 6px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* =========================================
   Password gate (client-side preview lock)
   ========================================= */
.gate { display: none; }
html.gate-on { overflow: hidden; }
.gate-on body { overflow: hidden; }
.gate-on .gate {
  display: flex; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(180deg, var(--c-night) 0%, var(--c-night-2) 100%);
}
.gate-inner { width: 100%; max-width: 380px; text-align: center; color: #fff; }
.gate-logo { height: 24px; width: auto; margin: 0 auto 30px; filter: brightness(0) invert(1); opacity: .9; }
.gate-title { font-family: var(--font-round); font-weight: 900; font-size: 22px; margin: 0 0 12px; color: #fff; }
.gate-desc { font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.8; margin: 0 0 26px; }
.gate-form { display: flex; flex-direction: column; gap: 12px; }
.gate-input {
  width: 100%; padding: 14px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08);
  color: #fff; font-size: 16px; font-family: var(--font-jp); text-align: center;
}
.gate-input::placeholder { color: rgba(255,255,255,.5); }
.gate-input:focus { outline: none; border-color: var(--c-gold); background: rgba(255,255,255,.12); }
.gate-btn {
  padding: 14px 18px; border: none; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; font-family: var(--font-round); font-weight: 900; font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.gate-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.gate-error { color: #FFB3C7; font-size: 13px; font-weight: 700; margin: 14px 0 0; }

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

/* =========================================
   Header
   ========================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(23, 18, 58, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(23, 18, 58, 0.92);
  border-bottom-color: var(--c-line-dark);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 11px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-link { display: inline-flex; align-items: center; transition: opacity .2s; }
.logo-link:hover { opacity: .72; }
.logo-img { height: 24px; width: auto; filter: brightness(0) invert(1); }
.logo-divider { width: 1px; height: 18px; background: var(--c-line-dark); }
.logo-text {
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  color: #fff; letter-spacing: .04em;
}
.logo-text em { font-style: normal; color: var(--c-gold); }
.header-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 40px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; font-family: var(--font-round); font-weight: 800; font-size: 13px;
  padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.header-cta-icon { font-size: 14px; }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--c-night) 0%, var(--c-night-2) 100%);
  padding: clamp(84px, 14vw, 108px) 20px clamp(48px, 8vw, 70px);
}
.hero-visual {
  position: relative; z-index: 2;
  max-width: 980px; margin: 0 auto clamp(28px, 5vw, 40px);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-visual img { width: 100%; display: block; }
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, #fff 50%, transparent),
    radial-gradient(2px 2px at 45% 60%, var(--c-gold) 50%, transparent),
    radial-gradient(1.5px 1.5px at 85% 50%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 15% 70%, var(--c-gold) 50%, transparent),
    radial-gradient(2px 2px at 60% 80%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 90% 78%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 33% 15%, #fff 50%, transparent);
  animation: twinkle 3.5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .5; } to { opacity: 1; } }
.hero-info { position: relative; z-index: 2; padding: 0 4px; max-width: 720px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-round); font-weight: 800; font-size: clamp(12px, 3.2vw, 14px);
  color: var(--c-gold); letter-spacing: .1em; margin: 0 0 16px; padding: 0;
  background: none; box-shadow: none;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: clamp(18px, 6vw, 30px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}
.hero-eyebrow::after { transform: scaleX(-1); }
.hero-eyebrow strong { font-size: 1.2em; color: #fff; }
.hero-lead {
  color: #F3EEFF; font-weight: 700; font-size: clamp(14px, 3.8vw, 18px);
  margin: 0 0 24px; line-height: 1.8;
}
.hero-meta {
  display: inline-flex; flex-direction: column; gap: 6px; align-items: center;
  margin-bottom: 30px;
}
.hero-meta-date {
  font-family: var(--font-round); font-weight: 900; color: #fff;
  font-size: clamp(20px, 5.4vw, 30px); letter-spacing: .04em;
}
.hero-meta-date small { font-size: .5em; margin: 0 .1em 0 .15em; color: var(--c-gold); font-weight: 800; }
.hero-meta-place {
  font-family: var(--font-round); font-weight: 700; font-size: clamp(12px, 3.2vw, 15px);
  color: #EFE7FF; letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 4px 16px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; font-family: var(--font-round); font-weight: 900; font-size: 17px;
  padding: 16px 40px; border-radius: 999px; box-shadow: var(--shadow-glow);
  transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-3px) scale(1.02); }
.hero-cta span:not(.visually-hidden) { transition: transform .2s; }
.hero-cta:hover span:not(.visually-hidden) { transform: translateX(4px); }
.hero-cta-note {
  margin: 16px 0 0; font-family: var(--font-round); font-weight: 700;
  font-size: clamp(12px, 3.2vw, 14px); color: #fff;
  background: rgba(23,18,58,.5); border: 1px solid rgba(255,255,255,.3);
  display: inline-block; padding: 7px 18px; border-radius: 999px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
/* =========================================
   Section common
   ========================================= */
.section-tag {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 14px; letter-spacing: .18em; color: var(--c-accent-strong);
  margin: 0 0 8px;
}
.section-tag.center { text-align: center; }
.section-tag.light { color: var(--c-gold); }
.section-title {
  font-family: var(--font-round); font-weight: 900;
  font-size: clamp(24px, 6vw, 38px); line-height: 1.35; margin: 0 0 34px;
  color: var(--c-text);
}
.section-title.center { text-align: center; }
.section-title.light { color: #fff; }
.section-note { text-align: center; color: var(--c-text-soft); font-size: 14px; margin: -22px 0 30px; }
.deco-star { color: var(--c-gold); font-size: .8em; margin: 0 .1em; display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: .7; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; font-family: var(--font-round); font-weight: 900; font-size: 16px;
  padding: 15px 38px; border-radius: 999px; box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-primary span { transition: transform .2s; }
.btn-primary:hover span { transform: translateX(4px); }
.btn-primary.large { font-size: 18px; padding: 18px 48px; }

/* =========================================
   Intro
   ========================================= */
.intro { padding: 84px 0 70px; background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%); }
.intro-title {
  text-align: center; font-family: var(--font-round); font-weight: 900;
  font-size: clamp(22px, 5.6vw, 34px); line-height: 1.5; margin: 4px 0 22px;
}
.intro-text { text-align: center; color: var(--c-text-soft); font-size: 15.5px; line-height: 2; }
.intro-figure {
  margin: 44px 0 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
}
.intro-figure img { width: 100%; }
.intro-stats {
  list-style: none; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin: 34px 0 0; padding: 0;
}
.intro-stats li {
  flex: 1 1 150px; max-width: 220px; text-align: center;
  background: #fff; border-radius: var(--r-md); padding: 22px 14px;
  box-shadow: var(--shadow-soft); border: 1px solid var(--c-line);
}
.stat-num {
  display: block; font-family: var(--font-round); font-weight: 900;
  font-size: clamp(30px, 7vw, 42px); color: var(--c-accent-lg); line-height: 1.1;
}
.stat-num small { font-size: .4em; color: var(--c-text); margin-left: 3px; }
.stat-label { display: block; font-size: 13px; font-weight: 700; color: var(--c-text-soft); margin-top: 4px; }

/* =========================================
   Areas
   ========================================= */
.areas { padding: 76px 0; background: var(--c-bg-alt); }
.area-hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card); margin-bottom: 46px;
}
.area-hero-img { overflow: hidden; }
.area-hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.area-hero-body { padding: 38px 36px; display: flex; flex-direction: column; justify-content: center; }
.area-badge {
  align-self: flex-start; font-family: var(--font-round); font-weight: 800; font-size: 11px;
  letter-spacing: .12em; color: #fff; background: linear-gradient(135deg, var(--c-pink), var(--c-gold-deep));
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.area-hero-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(22px, 5vw, 30px); margin: 0 0 14px; line-height: 1.3; }
.area-hero-text { color: var(--c-text-soft); font-size: 15px; line-height: 1.95; margin: 0; }
.area-note { display: block; margin-top: 10px; font-size: 12.5px; color: var(--c-accent-strong); font-weight: 700; }
.area-stage-body .area-note { color: var(--c-gold); }

.area-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 46px;
}
.area-card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--c-line);
  transition: transform .25s, box-shadow .25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.area-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.area-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.area-card:hover .area-card-img img { transform: scale(1.06); }
.area-card-body { padding: 18px 20px 22px; }
.area-card-title { font-family: var(--font-round); font-weight: 800; font-size: 17px; margin: 0 0 8px; }
.area-card-text { color: var(--c-text-soft); font-size: 13.5px; line-height: 1.8; margin: 0; }

.area-stage {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 0;
  background: linear-gradient(135deg, var(--c-night-2), var(--c-purple));
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card);
}
.area-stage-img { overflow: hidden; }
.area-stage-img img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.area-stage-body { padding: 38px 36px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.area-stage-body .area-hero-text { color: rgba(255,255,255,.85); }

/* =========================================
   Schedule (daily character calendar — tabbed card)
   ========================================= */
.schedule { padding: 76px 0; background: var(--c-bg); }
.sched-card {
  max-width: 900px; margin: 0 auto; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.sched-tabs {
  display: flex; gap: 6px; padding: 8px;
  background: linear-gradient(135deg, var(--c-night-2), var(--c-purple));
}
.sched-tab {
  flex: 1; min-height: 44px; padding: 10px 8px; border: none; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.8);
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  border-radius: 999px; transition: background .2s, color .2s;
}
.sched-tab:hover { color: #fff; }
.sched-tab.is-active { background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep)); color: #3a2a05; }
.sched-panels { padding: 16px; }
.sched-panel { margin: 0; }
.sched-panel[hidden] { display: none; }
.sched-panel img { width: 100%; display: block; border-radius: var(--r-sm); }

/* =========================================
   Food (dark section)
   ========================================= */
.food { padding: 80px 0; background: linear-gradient(180deg, var(--c-night) 0%, var(--c-night-2) 100%); position: relative; }
.food-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--c-line-dark);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 40px;
}
.food-hero-img { overflow: hidden; }
.food-hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.food-hero-body { padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.food-badge {
  align-self: flex-start; font-family: var(--font-round); font-weight: 900; font-size: 12px;
  letter-spacing: .1em; color: var(--c-night); background: var(--c-gold);
  padding: 5px 16px; border-radius: 999px; margin-bottom: 16px;
}
.food-hero-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(22px, 5vw, 30px); margin: 0 0 16px; }
.food-hero-text { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 1.95; margin: 0 0 16px; }
.food-price { font-family: var(--font-round); font-weight: 800; color: var(--c-gold); font-size: 16px; margin: 0; }
.food-price small { font-size: .6em; font-weight: 700; opacity: .8; margin: 0 .3em 0 .15em; }
.food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.food-item {
  margin: 0; background: rgba(255,255,255,.06); border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md); overflow: hidden;
}
.food-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #fff; }
.food-item figcaption { color: #fff; font-size: 12.5px; font-weight: 700; text-align: center; padding: 12px 8px; line-height: 1.5; }

/* =========================================
   Goods
   ========================================= */
.goods { padding: 80px 0; background: var(--c-bg); }
.goods-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.goods-item {
  margin: 0; text-align: center; background: #fff; border-radius: var(--r-md);
  padding: 16px 12px 18px; box-shadow: var(--shadow-soft); border: 1px solid var(--c-line);
  transition: transform .25s;
}
.goods-item:hover { transform: translateY(-5px); }
.goods-item img { width: 100%; aspect-ratio: 1/1; object-fit: contain; margin-bottom: 10px; }
.goods-item figcaption { font-family: var(--font-round); font-weight: 800; font-size: 13px; line-height: 1.5; }
.goods-item figcaption small { display: block; font-weight: 600; font-size: 11px; color: var(--c-text-soft); margin-top: 2px; }
.goods-random { display: inline-block; margin-top: 6px; font-size: 10.5px; font-weight: 800; color: #fff; background: var(--c-pink); padding: 2px 10px; border-radius: 999px; letter-spacing: .04em; }

/* =========================================
   Benefits (dark)
   ========================================= */
.benefits { padding: 80px 0; background: linear-gradient(160deg, var(--c-purple), var(--c-night-2)); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.benefit-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--c-line-dark);
  border-radius: var(--r-lg); padding: 30px 30px 34px; text-align: center; color: #fff;
  backdrop-filter: blur(4px);
}
.benefit-img { max-width: 320px; margin: 0 auto 20px; border-radius: var(--r-md); overflow: hidden; }
.benefit-title { font-family: var(--font-round); font-weight: 900; font-size: 20px; margin: 0 0 12px; color: var(--c-gold); }
.benefit-text { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.9; margin: 0; }
.benefit-note { color: rgba(255,255,255,.65); font-size: 11.5px; margin: 10px 0 0; }

/* =========================================
   Tickets
   ========================================= */
.tickets { padding: 80px 0; background: var(--c-bg); }
.ticket-table-wrap { overflow-x: auto; margin-bottom: 34px; }
.ticket-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-soft); font-family: var(--font-round);
}
.ticket-table th, .ticket-table td { padding: 15px 12px; text-align: center; font-weight: 800; }
.ticket-table thead th { background: linear-gradient(135deg, var(--c-night-2), var(--c-purple)); color: #fff; font-size: 15px; }
.ticket-table tbody tr:nth-child(even) th,
.ticket-table tbody tr:nth-child(even) td { background: var(--c-bg-alt); }
.ticket-table tbody th, .ticket-table tbody td { border-bottom: 1px solid var(--c-line); font-size: 15px; }
.ticket-table tbody th[scope="row"] { color: var(--c-text); font-weight: 800; }
.ticket-table tbody td { color: var(--c-text); }
.ticket-table .free { color: var(--c-free) !important; }

.ticket-special { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.ticket-special-item {
  display: flex; gap: 18px; align-items: center; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 20px; box-shadow: var(--shadow-soft);
}
.ticket-special-img { flex: 0 0 96px; }
.ticket-special-img img { width: 96px; height: 96px; object-fit: contain; }
.ticket-special-title { font-family: var(--font-round); font-weight: 900; font-size: 16px; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ticket-limited { font-size: 11px; font-weight: 800; color: #fff; background: var(--c-pink); padding: 3px 10px; border-radius: 999px; letter-spacing: .04em; }
.ticket-special-price { font-family: var(--font-round); font-weight: 800; color: var(--c-accent-strong); font-size: 15px; margin: 0 0 8px; }
.ticket-special-price small { font-size: .72em; color: var(--c-text-soft); margin-left: 4px; }
.ticket-special-text { color: var(--c-text-soft); font-size: 13px; line-height: 1.75; margin: 0; }

.section-note strong { color: var(--c-accent-strong); }
.ticket-tax { text-align: center; font-size: 12.5px; color: var(--c-text-soft); margin: 12px 0 34px; }
.ticket-cta { text-align: center; }
.ticket-cta-note { font-family: var(--font-round); font-weight: 800; color: var(--c-accent-strong); font-size: 14px; margin: 14px 0 0; }
.ticket-notes { max-width: 620px; margin: 30px auto 0; padding: 20px 22px; list-style: none; background: var(--c-bg-alt); border-radius: var(--r-md); }
.ticket-notes li { position: relative; padding-left: 18px; font-size: 12.5px; color: var(--c-text-soft); line-height: 1.7; }
.ticket-notes li::before { content: "※"; position: absolute; left: 0; color: var(--c-accent-strong); }

/* Ticket blocks (一般 / スペシャル / Tシャツ) */
.tk-block {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-soft); margin-bottom: 22px;
}
.tk-block-head { text-align: center; margin-bottom: 18px; }
.tk-block-title {
  font-family: var(--font-round); font-weight: 900; font-size: 19px; margin: 0;
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.tk-block-sub { font-size: 13px; color: var(--c-accent-strong); font-weight: 700; margin: 8px 0 0; }
.tk-cta { text-align: center; margin-top: 20px; }

.tk-special-top { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.tk-special-img { flex: 0 0 108px; }
.tk-special-img img { width: 108px; height: 108px; object-fit: contain; }
.tk-special-meta { flex: 1; min-width: 0; }
.tk-special-meta .tk-block-title { justify-content: flex-start; }
.tk-price { font-family: var(--font-round); font-weight: 800; color: var(--c-accent-strong); font-size: 17px; margin: 10px 0 0; }
.tk-price small { font-size: .7em; color: var(--c-text-soft); margin-left: 4px; }

.tk-content { list-style: none; margin: 0 0 20px; padding: 18px 20px; background: var(--c-bg-alt); border-radius: var(--r-md); }
.tk-content li { position: relative; padding-left: 20px; margin-bottom: 12px; }
.tk-content li:last-child { margin-bottom: 0; }
.tk-content li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--c-gold-deep); }
.tk-content li strong { display: block; color: var(--c-text); font-size: 14.5px; line-height: 1.6; }
.tk-content li span { display: block; font-size: 12.5px; color: var(--c-text-soft); margin-top: 3px; line-height: 1.7; }

.tk-select-label { text-align: center; font-family: var(--font-round); font-weight: 800; font-size: 14px; color: var(--c-text); margin: 0 0 14px; }
.tk-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tk-links a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--c-gold-deep);
  background: #fff; color: var(--c-accent-strong);
  font-family: var(--font-round); font-weight: 800; font-size: 14px;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.tk-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; border-color: transparent;
}

/* =========================================
   Collab
   ========================================= */
.collab { padding: 80px 0; background: var(--c-bg-alt); }
.collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.collab-grid.single { display: flex; justify-content: center; }
.collab-grid.single .collab-card { max-width: 520px; width: 100%; }
.collab-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--c-line); padding-bottom: 26px;
}
.collab-img { overflow: hidden; background: #fff; }
.collab-img img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: var(--c-bg-alt); }
.collab-title { font-family: var(--font-round); font-weight: 900; font-size: 20px; margin: 20px 30px 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.collab-badge { font-size: 11px; font-weight: 800; color: #fff; background: var(--c-accent-lg); padding: 3px 11px; border-radius: 999px; letter-spacing: .04em; }
.collab-text { color: var(--c-text-soft); font-size: 14px; line-height: 1.9; margin: 0 30px; }

/* =========================================
   Map
   ========================================= */
.map { padding: 80px 0; background: linear-gradient(180deg, var(--c-night-2), var(--c-night)); }
.map-figure {
  margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card);
  background: #fff;
}
.map-figure img { width: 100%; }

/* =========================================
   Info
   ========================================= */
.info { padding: 80px 0; background: var(--c-bg); }
.info-list { margin: 0; }
.info-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  padding: 18px 4px; border-bottom: 1px solid var(--c-line);
}
.info-row dt { font-family: var(--font-round); font-weight: 800; color: var(--c-accent-strong); font-size: 14px; }
.info-row dd { margin: 0; font-size: 14.5px; color: var(--c-text); line-height: 1.8; }
.info-sub { font-size: 12.5px; color: var(--c-text-soft); }
.info-link { color: var(--c-accent-strong); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.info-link:hover { opacity: .75; }
.info-caution { margin: 22px 0 0; font-size: 12px; color: var(--c-text-soft); line-height: 1.8; }

/* shared caution / note under sections */
.section-caution { text-align: center; font-size: 12px; color: var(--c-text-soft); margin: 22px 0 0; }
.section-caution.light { color: rgba(255,255,255,.6); }

/* =========================================
   Footer CTA
   ========================================= */
.footer-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 84px 0 90px; background: linear-gradient(160deg, var(--c-night), var(--c-purple));
}
.footer-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 25%, var(--c-gold) 50%, transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, #fff 50%, transparent),
    radial-gradient(1.5px 1.5px at 50% 70%, #fff 50%, transparent),
    radial-gradient(2px 2px at 30% 80%, var(--c-gold) 50%, transparent),
    radial-gradient(1.5px 1.5px at 90% 65%, #fff 50%, transparent);
  animation: twinkle 3.5s ease-in-out infinite alternate;
}
.footer-cta-inner { position: relative; z-index: 2; color: #fff; }
.footer-cta-eyebrow { font-family: var(--font-round); font-weight: 700; color: var(--c-gold); font-size: 14px; margin: 0 0 14px; letter-spacing: .06em; }
.footer-cta-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(22px, 5.4vw, 34px); line-height: 1.4; margin: 0 0 16px; }
.footer-cta-date { color: rgba(255,255,255,.85); font-size: 14px; margin: 0 0 30px; }

/* =========================================
   Site footer
   ========================================= */
.site-footer { background: var(--c-night); padding: 34px 0; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-note { color: rgba(255,255,255,.5); font-size: 11.5px; line-height: 1.8; margin: 0; }

/* =========================================
   Bottom fixed CTA
   ========================================= */
.bottom-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(23, 18, 58, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line-dark);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  transform: translateY(0); transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.bottom-cta.is-hidden { transform: translateY(120%); }
.bottom-cta-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.bottom-cta-txt { display: flex; flex-direction: column; min-width: 0; }
.bottom-cta-line { font-family: var(--font-round); font-weight: 800; color: #fff; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bottom-cta-sub { font-size: 11.5px; color: var(--c-gold); font-weight: 700; }
.bottom-cta-sub small { font-size: .85em; margin: 0 .1em; }
.bottom-cta-btn {
  flex: 0 0 auto; background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
  color: #3a2a05; font-family: var(--font-round); font-weight: 900; font-size: 14px;
  padding: 12px 22px; border-radius: 999px; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.bottom-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* =========================================
   Reveal animation
   ========================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 900px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .goods-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  body { line-height: 1.85; }
  .header-cta-label { display: none; }
  .header-cta { padding: 9px 13px; }
  .area-hero, .area-stage, .food-hero { grid-template-columns: 1fr; }
  .area-stage { direction: ltr; }
  .area-stage-img { order: -1; }
  .area-hero-body, .area-stage-body, .food-hero-body { padding: 28px 24px; }
  .benefit-grid, .ticket-special, .collab-grid { grid-template-columns: 1fr; }
  .intro { padding: 60px 0 54px; }
  .areas, .schedule, .food, .goods, .benefits, .tickets, .collab, .map, .info { padding: 58px 0; }
  .intro-stats li { flex-basis: 100px; padding: 16px 8px; }
  .info-row { grid-template-columns: 100px 1fr; gap: 10px; }
  .ticket-special-item { flex-direction: column; text-align: center; }
  .ticket-special-img { flex-basis: auto; }
  .tk-block { padding: 24px 18px; }
  .tk-special-top { flex-direction: column; text-align: center; gap: 14px; }
  .tk-special-img { flex-basis: auto; }
  .tk-special-meta .tk-block-title { justify-content: center; }
  .tk-links a { flex: 1 1 40%; }
}
/* Phones: single-column & readability tweaks */
@media (max-width: 600px) {
  .br-pc { display: none; }                          /* 改行をSPでは解除して自然に流す */
  .area-grid { grid-template-columns: 1fr; }         /* 15エリア: 1カラム */
  .goods-grid { grid-template-columns: 1fr; }        /* 限定グッズ: 1カラム */
  .goods-item { max-width: 300px; margin-left: auto; margin-right: auto; }
  .food-grid { grid-template-columns: 1fr 1fr; }     /* フードは2カラム維持 */
  .section-note.center { text-align: left; }
  .sched-tab { font-size: 14px; }
  .bottom-cta-line { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stars, .footer-stars, .deco-star { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}