/* ===================================================
   lp.css  — ゆめかな祭り2026 LP本体 (index.html)
   Design: snc-ts.com 参照・夜空×ランタンの世界観
   =================================================== */

:root {
  --bg-deep:    #090f1f;
  --bg-mid:     #0d1630;
  --bg-surface: #111e3a;
  --bg-alt:     #0a1220;
  --gold:       #F5B200;
  --gold-light: #FFD35A;
  --amber:      #E8841A;
  --white:      #ffffff;
  --text-main:  rgba(255,255,255,0.90);
  --text-sub:   rgba(255,255,255,0.58);
  --text-muted: rgba(255,255,255,0.38);
  --border:     rgba(255,255,255,0.08);
  --border-gold:rgba(245,178,0,0.30);
  --radius:     12px;
  --section-pad: 100px 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-mid);
  color: var(--text-main);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
  line-height: 1.9;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.9;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(245,178,0,0.08); }

.btn-large { padding: 18px 48px; font-size: 1.05rem; }

/* ===== SCROLL REVEAL ===== */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GLOBAL NAV ===== */
.g-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
}
.g-nav.scrolled {
  background: rgba(9,15,31,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.g-nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g-nav-logo {
  display: flex;
  align-items: center;
}

.g-nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.g-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.g-nav-links a {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.g-nav-links a:hover { color: var(--white); }

.g-nav-cta {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--bg-deep) !important;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.2s !important;
}
.g-nav-cta:hover { opacity: 0.85; }

.g-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.g-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.g-nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.g-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.g-nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: rgba(9,15,31,0.98);
  backdrop-filter: blur(16px);
  padding: 48px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.mobile-menu ul li a {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  color: var(--text-main);
}
.mobile-menu-cta {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.06);
  animation: kenburns 12s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,15,31,0.30) 0%,
    rgba(9,15,31,0.55) 50%,
    rgba(9,15,31,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 120px;
}

/* hero: logo + date display */
.hero-logo {
  height: clamp(160px, 34vw, 480px);
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s ease 0.3s forwards;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.hero-date-block {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-date-main {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-date-day {
  color: var(--gold-light);
  font-size: 0.7em;
  margin-left: 8px;
}

.hero-date-sub {
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
}

.hero-catch {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  color: var(--text-sub);
  margin-bottom: 36px;
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-cta-ghost {
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s, transform 0.3s;
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ===== NUMBERS ===== */
#numbers {
  background: var(--bg-alt);
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.number-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
}

.number-val {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.number-label {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.number-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== WHY ===== */
#why {
  position: relative;
  padding: 120px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(0.4);
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 56px;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.why-body p {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.why-closing {
  color: rgba(255,255,255,0.88) !important;
  padding-top: 32px;
  margin-top: 8px;
  position: relative;
}
.why-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

@media (max-width: 600px) {
  #why { padding: 80px 24px; }
  .why-body p { font-size: 0.93rem; line-height: 2.2; }
}

/* ===== EVENT CONTENTS ===== */
#event-contents {
  background: #f7f3ee;
  padding: var(--section-pad);
}

.ec-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
#event-contents .section-eyebrow { color: #a07840; }
#event-contents .section-title   { color: #1a1208; }

.ec-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ec-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ec-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.ec-item--reverse { direction: rtl; }
.ec-item--reverse > * { direction: ltr; }

.ec-item-img {
  overflow: hidden;
  position: relative;
}
.ec-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ec-item:hover .ec-item-img img { transform: scale(1.04); }

.ec-item-img--overlay { background: #1a1208; }
.ec-item-name-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,12,4,0.55);
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}

.ec-item-body {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #f7f3ee;
}

.ec-item-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: #a07840;
}

.ec-item-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1208;
  line-height: 1.3;
}

.ec-item-role {
  font-size: 0.82rem;
  color: #7a6550;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ec-item-desc {
  font-size: 0.93rem;
  color: #4a3c2e;
  line-height: 2;
}

@media (max-width: 900px) {
  .ec-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ec-item--reverse { direction: ltr; }
  .ec-item-img { aspect-ratio: 16/9; }
  .ec-item-body { padding: 36px 24px; }
}

@media (max-width: 600px) {
  .ec-item-img { aspect-ratio: 4/3; }
  .ec-item-body { padding: 28px 20px; }
  .ec-item-name { font-size: 1.5rem; }
}

/* ===== ABOUT ===== */
#about {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.timeline-item--reverse { direction: rtl; }
.timeline-item--reverse > * { direction: ltr; }

.timeline-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.timeline-img:hover img { transform: scale(1.04); }

.timeline-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.timeline-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.timeline-text {
  color: var(--text-sub);
  font-size: 0.93rem;
  line-height: 2;
}

.about-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-sub-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.about-sub-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.about-sub-card h4 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-sub-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.8; }

/* ===== PERFORMERS ===== */
#performers {
  background: var(--bg-alt);
  padding: var(--section-pad);
}
#performers .section-header,
#performers .performers-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.performers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.performer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.performer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.performer-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.performer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.performer-card:hover .performer-img-wrap img { transform: scale(1.05); }

.performer-img-wrap--double {
  background: var(--bg-deep);
}
.performer-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,15,31,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}
.performer-img-overlay span {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
}

.performer-body { padding: 24px; }
.performer-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}
.performer-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.performer-desc { font-size: 0.86rem; color: var(--text-sub); line-height: 1.8; }

/* ===== GALLERY ===== */
#gallery {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 8px;
}
.gallery-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(9,15,31,0.75);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(245,178,0,0.3); }
.carousel-btn--prev { left: 12px; }
.carousel-btn--next { right: 12px; }

/* ===== MARCHE ===== */
#marche {
  background: var(--bg-alt);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.marche-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.marche-concept {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.marche-desc {
  color: var(--text-sub);
  font-size: 0.93rem;
  line-height: 2;
  margin-bottom: 32px;
}

.marche-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.marche-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== SCHEDULE ===== */
#schedule {
  padding: var(--section-pad);
  max-width: 800px;
  margin: 0 auto;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-item {
  display: grid;
  grid-template-columns: 72px 2px 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 72px;
  padding-bottom: 4px;
}

.schedule-time {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
  white-space: nowrap;
}

.schedule-bar {
  background: var(--border);
  border-radius: 2px;
  position: relative;
}
.schedule-bar::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--bg-surface);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
}
.schedule-bar--highlight::before { border-color: var(--amber); }
.schedule-bar--gold::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.schedule-body {
  padding: 4px 0 28px;
}
.schedule-body h4 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.schedule-body p { font-size: 0.86rem; color: var(--text-sub); }

.schedule-body--gold h4 { color: var(--gold-light); }

.schedule-highlight { color: var(--amber); }

/* ===== TICKETS ===== */
#tickets {
  background: var(--bg-alt);
  padding: var(--section-pad);
}
#tickets .section-header { margin-bottom: 48px; }
.ticket-grid {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ticket-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.ticket-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.ticket-icon { font-size: 2rem; margin-bottom: 14px; }
.ticket-card h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.ticket-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.ticket-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.7; }

.sky-lantern-badge {
  text-align: center;
  margin: 0 auto 32px;
}
.sky-lantern-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
}

.tickets-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tickets-noto-link {
  font-size: 0.84rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.tickets-noto-link:hover { color: var(--gold); }

/* ===== ACCESS ===== */
#access {
  padding: var(--section-pad);
}

.access-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.access-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px 16px;
  font-size: 0.9rem;
  margin-top: 24px;
}
.access-dl dt {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.access-dl dd { color: var(--text-main); line-height: 1.7; }

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.access-map iframe { display: block; }

/* ===== RECRUIT ===== */
#recruit {
  background: var(--bg-deep);
  padding: var(--section-pad);
  text-align: center;
  border-top: 1px solid var(--border);
}

.recruit-inner { max-width: 800px; margin: 0 auto; }

.recruit-desc {
  color: var(--text-sub);
  font-size: 0.93rem;
  margin-bottom: 40px;
  line-height: 1.9;
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.recruit-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  transition: border-color 0.2s;
}
.recruit-card:hover { border-color: var(--border-gold); }
.recruit-card span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.recruit-card h4 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ===== FAQ ===== */
#faq {
  padding: var(--section-pad);
  max-width: 720px;
  margin: 0 auto;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
}
.faq-q::after {
  content: '+';
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.9; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}

.footer-event-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-date { font-size: 0.82rem; color: var(--text-muted); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.84rem;
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-org { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }
.footer-copy { margin-top: 4px; }

/* ===== FIXED CTA ===== */
.fixed-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.fixed-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.fixed-cta-btn {
  display: block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.fixed-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  :root { --section-pad: 72px 24px; }

  .g-nav-links { display: none; }
  .g-nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .timeline-item { grid-template-columns: 1fr; gap: 28px; }
  .timeline-item--reverse { direction: ltr; }

  .about-sub { grid-template-columns: 1fr; }

  .performers-grid { grid-template-columns: 1fr 1fr; }

  .gallery-slide { flex: 0 0 50%; }

  .marche-inner { grid-template-columns: 1fr; }

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

  .access-inner { grid-template-columns: 1fr; }

  .recruit-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }

  .hero-title { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }

  .numbers-inner { flex-direction: column; gap: 0; }
  .number-divider { width: 80px; height: 1px; }

  .performers-grid { grid-template-columns: 1fr; }

  .gallery-slide { flex: 0 0 100%; }

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

  .recruit-cards { grid-template-columns: 1fr 1fr; }

  .schedule-item { grid-template-columns: 56px 2px 1fr; gap: 14px; }

  .fixed-cta { bottom: 16px; right: 16px; }
  .fixed-cta-btn { padding: 12px 20px; font-size: 0.84rem; }
}
