/* ===================================================
   LOVES Site — Ocean Editorial Design System
   Distinct from original: warm editorial vs cinematic dark
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Tokens --- */
:root {
  --c-deep: #0a1628;
  --c-navy: #12294a;
  --c-teal: #1a8f9e;
  --c-teal-light: #2bb5c7;
  --c-amber: #d4954a;
  --c-amber-light: #e8b97a;
  --c-cream: #f5f0e8;
  --c-white: #fafaf8;
  --c-text: #2c2c2c;
  --c-text-light: #6b6b6b;
  --c-overlay: rgba(10, 22, 40, 0.7);

  --f-display: 'Cormorant Garamond', 'YuMincho', serif;
  --f-body: 'Inter', 'Hiragino Sans', sans-serif;

  --w-content: 1100px;
  --w-narrow: 780px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--w-content); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--w-narrow); margin: 0 auto; }
.text-center { text-align: center; }

/* --- Section Label (eyebrow) --- */
.section-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
}

/* --- Section Title --- */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-deep);
  margin-bottom: 1.5rem;
}

/* --- Wave Divider --- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.wave-divider--flip { transform: scaleY(-1); }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
}
.site-header__logo img {
  height: 28px;
  filter: brightness(0) invert(1);
}
.site-header__nav a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-left: 28px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.site-header__nav a:hover { opacity: 1; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-deep);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.45) 100%);
}
.hero__content {
  position: absolute;
  z-index: 2;
  bottom: 80px;
  left: 40px;
  text-align: left;
  color: #fff;
}
.hero__logo {
  max-width: 260px;
  margin: 0 0 1rem;
}
.hero__tagline {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #fff;
  margin: 8px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}
/* Video fallback */
.hero__fallback {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* ===================================================
   STORY
   =================================================== */
.story {
  padding: 100px 24px;
  background: var(--c-deep);
}
.story__inner {
  max-width: var(--w-narrow);
  margin: 0 auto;
  text-align: center;
}
.story .section-label { color: var(--c-teal); }
.story .section-title { color: #fff; }
.story__text {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.story__text em {
  font-style: normal;
  color: var(--c-teal-light);
}

/* ===================================================
   MOVIE
   =================================================== */
.movie {
  padding: 100px 24px;
  background: var(--c-navy);
  color: #fff;
}
.movie .section-label { color: var(--c-teal); }
.movie .section-title { color: #fff; }
.movie__embed {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}
.movie__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================
   MESSAGE SONG
   =================================================== */
.message-song {
  padding: 100px 24px;
  background: var(--c-navy);
  color: #fff;
}
.message-song .section-label { color: var(--c-amber); }
.message-song .section-title { color: #fff; }
.message-song__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--w-content);
  margin: 0 auto;
}
.message-song__image {
  border-radius: 8px;
  overflow: hidden;
}
.message-song__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.message-song__body p {
  line-height: 2;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.message-song__credits {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--c-amber);
  color: var(--c-amber);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
}
.btn:hover {
  background: var(--c-amber);
  color: var(--c-deep);
}

/* ===================================================
   VOICE OF STAFF
   =================================================== */
.voice {
  padding: 100px 24px;
  background: var(--c-deep);
  color: #fff;
}
.voice .section-label { color: var(--c-teal); }
.voice .section-title { color: #fff; }
.voice__intro {
  max-width: var(--w-narrow);
  margin: 0 auto 3rem;
  text-align: center;
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255,255,255,0.75);
}
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--w-content);
  margin: 0 auto;
}
.voice-card {
  background: var(--c-navy);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.voice-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.voice-card:hover .voice-card__image img {
  transform: scale(1.05);
}
.voice-card__body {
  padding: 20px 24px 24px;
}
.voice-card__quote {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 8px;
}
.voice-card__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.voice-card__link {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}
.voice-card:hover .voice-card__link { gap: 10px; }
.voice-card__link::after { content: '→'; }

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  padding: 0;
  overflow: hidden;
}
.gallery__strip {
  display: flex;
  animation: galleryScroll 30s linear infinite;
}
.gallery__strip img {
  height: 200px;
  width: auto;
  flex-shrink: 0;
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--c-deep);
  color: #fff;
  padding: 48px 24px 32px;
  text-align: center;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}
.footer__social a:hover {
  border-color: var(--c-teal);
  background: rgba(26, 143, 158, 0.15);
}
.footer__social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer__park-link {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--c-teal-light);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer__copyright {
  font-size: 0.68rem;
  opacity: 0.4;
}

/* ===================================================
   VOICE DETAIL PAGE
   =================================================== */
.voice-detail {
  padding: 140px 24px 100px;
  background: var(--c-cream);
}
.voice-detail__hero {
  max-width: var(--w-narrow);
  margin: 0 auto 3rem;
  text-align: center;
}
.voice-detail__hero img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}
.voice-detail__season {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.voice-detail__quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--c-deep);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.voice-detail__role {
  font-size: 0.85rem;
  color: var(--c-text-light);
}
.voice-detail__body {
  max-width: var(--w-narrow);
  margin: 0 auto 3rem;
}
.voice-detail__body p {
  margin-bottom: 1.5rem;
  line-height: 2;
}
.voice-detail__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--w-narrow);
  margin: 0 auto 3rem;
}
.voice-detail__photos img {
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.voice-detail__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: var(--w-narrow);
  margin: 0 auto;
}
.voice-detail__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-teal);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-teal);
  transition: all 0.3s;
}
.voice-detail__nav a.active,
.voice-detail__nav a:hover {
  background: var(--c-teal);
  color: #fff;
}

/* ===================================================
   SONG INFO PAGE
   =================================================== */
.song-info {
  padding: 140px 24px 100px;
  background: var(--c-navy);
  color: #fff;
}
.song-info__header {
  max-width: var(--w-narrow);
  margin: 0 auto 4rem;
  text-align: center;
}
.song-info__header h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.song-info__header .credits {
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.8;
}
.song-info__people {
  max-width: var(--w-content);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
.person {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.person__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.person__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.5rem;
}
.person__name {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.person__bio {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.75;
}

/* Back link for subpages */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-teal);
  margin-bottom: 2rem;
}
.back-home::before { content: '←'; }

/* ===================================================
   TICKET BUTTONS
   =================================================== */
/* 丸いチケットボタン（右下固定・小サイズ） */
.ticket-circle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.3s var(--ease-out);
}
.ticket-circle:hover { transform: scale(1.08); }
.ticket-circle__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb6d9, #b6c8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ticket-circle__icon img {
  width: 44px;
  height: auto;
  object-fit: contain;
}
.ticket-circle__loves {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-deep);
  letter-spacing: 0.1em;
}
.ticket-circle__text {
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  background: rgba(10,22,40,0.6);
  padding: 2px 6px;
  border-radius: 4px;
}

/* 横長バナーボタン */
.ticket-banner-section {
  background: var(--c-deep);
  padding: 32px 24px;
  text-align: center;
}
.ticket-banner {
  display: inline-block;
  max-width: 560px;
  width: 100%;
}
.ticket-banner img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}
.ticket-banner:hover img { opacity: 0.85; }

/* テキスト版バナーボタン（画像がない場合のフォールバック） */
.ticket-banner-text {
  display: inline-block;
  max-width: 560px;
  width: 100%;
  padding: 18px 48px;
  border-radius: 50px;
  border: 2px solid;
  border-image: linear-gradient(90deg, #ff6b9d, #6b9dff) 1;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 2px transparent;
  position: relative;
  transition: background 0.3s;
}
.ticket-banner-text::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6b9d, #6b9dff);
  z-index: -1;
}
.ticket-banner-text::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 48px;
  background: rgba(10, 22, 40, 0.85);
  z-index: -1;
}
.ticket-banner-text:hover::after {
  background: rgba(10, 22, 40, 0.7);
}

/* ===================================================
   EVENT SECTION
   =================================================== */
.event-section {
  padding: 80px 24px;
  background: var(--c-deep);
  color: #fff;
  text-align: center;
}
.event-section .section-label { color: var(--c-amber); }
.event-section .section-title { color: #fff; margin-bottom: 0.5rem; }
.event-section__sub {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 3rem;
}
.event-card {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.event-card a {
  display: block;
  position: relative;
}
.event-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.event-card:hover img { transform: scale(1.04); }
.event-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.event-card__label p:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 4px;
}
.event-card__label p:last-child {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===================================================
   DETAIL PAGE (2026_summer)
   =================================================== */
.detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--c-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.detail-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.detail-hero__content img.hero__logo {
  max-width: 240px;
  margin: 0 auto 1rem;
}
.detail-hero__sub {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.schedule-section {
  padding: 80px 24px;
  background: var(--c-cream);
}
.schedule-section .section-label { color: var(--c-teal); }
.schedule-table {
  max-width: 700px;
  margin: 2rem auto 0;
  border-collapse: collapse;
  width: 100%;
}
.schedule-table th,
.schedule-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  font-size: 0.9rem;
  line-height: 1.8;
}
.schedule-table th {
  width: 160px;
  font-weight: 600;
  color: var(--c-navy);
  background: rgba(10, 22, 40, 0.04);
}
.schedule-table td { color: var(--c-text); }
.schedule-notice {
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  color: var(--c-text-light);
  line-height: 1.9;
}
.schedule-notice li { padding: 2px 0; }
.schedule-notice li::before { content: '※ '; }

.ticket-section {
  padding: 80px 24px;
  background: var(--c-navy);
  color: #fff;
  text-align: center;
}
.ticket-section .section-label { color: var(--c-amber); }
.ticket-section .section-title { color: #fff; }
.ticket-price-table {
  max-width: 700px;
  margin: 2rem auto;
  border-collapse: collapse;
  width: 100%;
}
.ticket-price-table th,
.ticket-price-table td {
  padding: 14px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.ticket-price-table thead th {
  background: rgba(255,255,255,0.08);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.ticket-price-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}
.ticket-notes {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: left;
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 2;
}
.ticket-notes li::before { content: '※ '; }
.btn-ticket {
  display: inline-block;
  padding: 18px 64px;
  background: var(--c-amber);
  color: var(--c-deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.btn-ticket:hover {
  background: var(--c-amber-light);
  transform: translateY(-2px);
}

/* ===================================================
   POPUP / MODAL
   =================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--c-text-light);
  line-height: 1;
  z-index: 10;
}
.modal-close:hover { color: var(--c-deep); }

/* Schedule popup */
.modal-schedule { padding: 36px 32px 32px; }
.modal-schedule h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: var(--c-deep);
  margin-bottom: 20px;
}
.cal-wrap { overflow-x: auto; }
.cal-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 360px;
}
.cal-table th {
  padding: 8px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #ddd;
}
.cal-table th.sun { color: #e05080; }
.cal-table th.sat { color: #3a7bd5; }
.cal-table td {
  padding: 10px 4px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #f0f0f0;
}
.cal-table td.inactive { color: #ccc; font-weight: 400; }
.cal-table td.active-sun { color: #e05080; background: #fff5f8; }
.cal-table td.active-sat { color: #3a7bd5; background: #f5f8ff; }
.cal-table td.active-wday { color: var(--c-deep); background: #fffff0; }
.cal-table td.month-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-teal);
  vertical-align: top;
  padding-top: 6px;
}
.cal-info {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--c-deep);
}
.cal-reserve {
  display: inline-block;
  background: #e05080;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}
.cal-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--c-text-light);
}
.cal-note a { color: var(--c-teal); text-decoration: underline; }
.btn-cal-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 460px;
  margin: 20px auto 0;
  padding: 16px 32px;
  background: linear-gradient(90deg, #a8d8f0, #c8b4f0);
  border-radius: 50px;
  color: var(--c-deep);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.btn-cal-ticket:hover { opacity: 0.85; }

/* Seat map popup */
.modal-seat { padding: 36px 32px 32px; }
.modal-seat img { width: 100%; border-radius: 8px; }

/* スケジュール & チケット ボタン */
.schedule-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(90deg, #f093c0, #93b4f0);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(240,147,192,0.4);
}
.schedule-ticket-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  .message-song__grid { grid-template-columns: 1fr; gap: 32px; }
  .voice__grid { grid-template-columns: 1fr; max-width: 400px; }
  .person { grid-template-columns: 1fr; }
  .person__image img { max-width: 200px; }
  .voice-detail__photos { grid-template-columns: 1fr; }
  .site-header__nav { display: none; }
  .gallery__strip img { height: 140px; }
}
@media (max-width: 480px) {
  .hero__logo { max-width: 220px; }
}
