/* ========================================
   蒲田めい 公式ウェブサイト
   Wood Grain Dark Theme - Premium Redesign
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500&family=Cinzel:wght@400;500;600;700&display=swap');

/* ========================================
   CSS Variables - Wood Grain Design System
   ======================================== */
:root {
  /* Wood Grain Color Palette */
  --wood-darkest: #1a0f08;
  --wood-dark: #2d1a0e;
  --wood-mid: #3d2314;
  --wood-warm: #5c3317;
  --wood-light: #8b5e3c;
  --wood-grain: #6b4423;

  /* Gold Accent */
  --gold-deep: #8b6914;
  --gold-mid: #c9a227;
  --gold-bright: #e8c547;
  --gold-light: #f5d97a;
  --gold-pale: #fef3c7;

  /* Cream / Text */
  --cream-dark: #d4c5a9;
  --cream-mid: #e8dcc8;
  --cream-light: #f5efe3;
  --cream-white: #fdf8f0;

  /* Semantic */
  --color-bg: var(--wood-darkest);
  --color-bg-card: rgba(45, 26, 14, 0.85);
  --color-bg-card-hover: rgba(61, 35, 20, 0.95);
  --color-surface: var(--wood-dark);
  --color-border: rgba(201, 162, 39, 0.2);
  --color-border-bright: rgba(201, 162, 39, 0.5);
  --color-text-primary: var(--cream-light);
  --color-text-secondary: var(--cream-dark);
  --color-text-muted: rgba(212, 197, 169, 0.6);
  --color-accent: var(--gold-mid);
  --color-accent-bright: var(--gold-bright);
  --color-accent-glow: rgba(201, 162, 39, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --font-heading: 'Cinzel', 'Shippori Mincho', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-jp: 'Shippori Mincho', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.15);
  --shadow-gold-strong: 0 0 40px rgba(201, 162, 39, 0.3);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* 木目調テクスチャ背景 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(92deg,
      transparent,
      transparent 2px,
      rgba(139, 94, 60, 0.03) 2px,
      rgba(139, 94, 60, 0.03) 4px),
    repeating-linear-gradient(88deg,
      transparent,
      transparent 8px,
      rgba(107, 68, 35, 0.02) 8px,
      rgba(107, 68, 35, 0.02) 12px),
    repeating-linear-gradient(91deg,
      transparent,
      transparent 20px,
      rgba(92, 51, 23, 0.015) 20px,
      rgba(92, 51, 23, 0.015) 24px);
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-bright);
}

/* ========================================
   Custom Cursor
   ======================================== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 162, 39, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold-mid);
  background: rgba(201, 162, 39, 0.05);
}

/* ========================================
   Scroll Progress Bar
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-light));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

/* ========================================
   Header / Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-md);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: rgba(26, 15, 8, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.15), 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream-white);
  letter-spacing: 0.15em;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-mid);
  transition: width var(--transition-normal);
}

.logo:hover {
  color: var(--gold-light);
}

.logo:hover::after {
  width: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-mid);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream-light);
  transition: all var(--transition-normal);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
.menu-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(12, 8, 5, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ナビアイテムのスタッガーアニメーション */
.menu-overlay .nav-list li {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-overlay.active .nav-list li { opacity: 1; transform: translateY(0); }
.menu-overlay.active .nav-list li:nth-child(1) { transition-delay: 0.07s; }
.menu-overlay.active .nav-list li:nth-child(2) { transition-delay: 0.12s; }
.menu-overlay.active .nav-list li:nth-child(3) { transition-delay: 0.17s; }
.menu-overlay.active .nav-list li:nth-child(4) { transition-delay: 0.22s; }
.menu-overlay.active .nav-list li:nth-child(5) { transition-delay: 0.27s; }
.menu-overlay.active .nav-list li:nth-child(6) { transition-delay: 0.32s; }
.menu-overlay.active .nav-list li:nth-child(7) { transition-delay: 0.37s; }
.menu-overlay.active .nav-list li:nth-child(8) { transition-delay: 0.42s; }
.menu-overlay.active .nav-list li:nth-child(9) { transition-delay: 0.47s; }

.menu-overlay .nav-list {
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.menu-overlay .nav-link {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-main {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--wood-darkest);
}

/* 木目調ヒーロー背景 */
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(92, 51, 23, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139, 105, 20, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* 木目ライン */
.hero-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(93deg,
      transparent,
      transparent 3px,
      rgba(139, 94, 60, 0.04) 3px,
      rgba(139, 94, 60, 0.04) 6px),
    repeating-linear-gradient(89deg,
      transparent,
      transparent 15px,
      rgba(107, 68, 35, 0.03) 15px,
      rgba(107, 68, 35, 0.03) 20px);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 15, 8, 0.3) 0%,
      rgba(26, 15, 8, 0.1) 40%,
      rgba(26, 15, 8, 0.6) 100%);
  z-index: 2;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-slideshow-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slideshow-image.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-md);
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream-white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  margin: 0 auto var(--space-md);
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.hero-catchphrase {
  font-family: var(--font-jp);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--cream-dark);
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

/* スクロールインジケーター */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ========================================
   Section Common
   ======================================== */
.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: var(--space-xs);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream-white);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-title-jp {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.3em;
  display: block;
  margin-top: var(--space-xs);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-mid);
  margin: var(--space-sm) auto;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold-mid);
  border-radius: 50%;
}

.section-divider::before {
  left: -8px;
}

.section-divider::after {
  right: -8px;
}

/* 交互背景 */
.section-dark {
  background: var(--wood-darkest);
}

.section-mid {
  background: var(--wood-dark);
}

.section-warm {
  background: linear-gradient(180deg, var(--wood-dark) 0%, var(--wood-mid) 100%);
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-border-bright);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-md);
}

.card-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: var(--space-xs);
}

.card-title {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--cream-light);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

.card-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-mid));
  color: var(--wood-darkest);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.5);
  color: var(--wood-darkest);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-mid);
  border: 1px solid var(--color-border-bright);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-dark);
  border: 1px solid rgba(212, 197, 169, 0.3);
}

.btn-ghost:hover {
  background: rgba(212, 197, 169, 0.1);
  color: var(--cream-light);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.65rem;
}

/* ========================================
   Info / SNS Section
   ======================================== */
.info-sns-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--wood-dark);
  position: relative;
}

.info-sns-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.info-sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-left {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream-white);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

/* ========================================
   News List
   ======================================== */
.news-list-large {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.news-item-large {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition: all var(--transition-fast);
}

.news-item-large:hover {
  padding-left: var(--space-xs);
}

.news-date {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-mid);
  white-space: nowrap;
  min-width: 90px;
}

.news-category {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.cat-release {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-mid);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.news-link {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--cream-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.news-link:hover {
  color: var(--gold-light);
}

/* ========================================
   SNS Section
   ======================================== */
.sns-embed-box {
  background: rgba(26, 15, 8, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.sns-platform {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.sns-platform:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.sns-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  color: var(--gold-mid);
}

.sns-header span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.sns-post {
  margin-bottom: var(--space-sm);
}

.sns-post p {
  font-size: 0.85rem;
  color: var(--cream-dark);
  line-height: 1.7;
}

.sns-post time {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
}

/* ========================================
   Live Schedule Section
   ======================================== */
.schedule-section-main {
  padding: var(--space-xl) var(--space-md);
  background: var(--wood-darkest);
  position: relative;
}

.schedule-section-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.section-title-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream-white);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title-main::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-mid);
  margin: var(--space-sm) auto 0;
}

.schedule-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-card-main {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

a.schedule-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.schedule-card-main:hover {
  border-color: var(--color-border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.schedule-flyer-main {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.schedule-flyer-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.schedule-card-main:hover .schedule-flyer-main img {
  transform: scale(1.05);
}

.schedule-info-main {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.schedule-date-main {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.schedule-title-main {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  color: var(--cream-light);
  line-height: 1.5;
}

.schedule-venue-main,
.schedule-time-main,
.schedule-price-main {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ========================================
   Banner CTA Section
   ======================================== */
.banner-cta-section {
  padding: var(--space-lg) var(--space-md);
  background: var(--wood-dark);
}

.banner-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
}

.banner-cta-card {
  position: relative;
  min-height: 180px;
  /* 画像未設定時のデフォルト最低高さ */
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: block;
  /* imgで高さを決めるのでflexやaspect-ratioを使わない */
  text-decoration: none;
  transition: all var(--transition-normal);
}

/* バナー画像：幅100%で表示し、カードの高さを自然に決定する */
.banner-cta-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 20%,
      rgba(26, 15, 8, 0.85) 100%);
  z-index: 1;
  transition: background var(--transition-normal);
}

.banner-cta-card:hover {
  border-color: var(--color-border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.banner-cta-card:hover::before {
  background: linear-gradient(to bottom,
      transparent 10%,
      rgba(26, 15, 8, 0.92) 100%);
}

.banner-music {
  background: linear-gradient(135deg, #2d1a0e 0%, #1a0f08 100%);
}

.banner-video {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0a1e 100%);
}

.banner-gallery {
  background: linear-gradient(135deg, #1a2d0e 0%, #0f1a08 100%);
}

.banner-cta-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(201, 162, 39, 0.02) 10px,
      rgba(201, 162, 39, 0.02) 11px);
  z-index: 0;
}

.banner-cta-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-md);
  width: 100%;
}

.banner-cta-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--cream-white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.banner-cta-text {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--gold-mid);
  letter-spacing: 0.1em;
}

/* ========================================
   Information Section (News)
   ======================================== */
.information-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--wood-darkest);
  position: relative;
}

.information-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.information-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

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

.information-item:first-child {
  border-top: 1px solid var(--color-border);
}

.information-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  text-decoration: none;
  color: var(--cream-white);
  transition: all 0.3s ease;
}

.information-link:hover {
  padding-left: 1rem;
  color: var(--gold-light);
}

.information-link:hover .information-arrow {
  transform: translateX(4px);
  color: var(--gold-mid);
}

.information-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.information-title {
  flex: 1;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.information-arrow {
  font-size: 1rem;
  color: var(--color-text-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

/* ========================================
   Concept Section
   ======================================== */
.concept-section-main {
  padding: var(--space-xl) var(--space-md);
  background: var(--wood-mid);
  position: relative;
  overflow: hidden;
}

.concept-section-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.concept-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.concept-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.concept-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.concept-image:hover img {
  transform: scale(1.03);
}

.concept-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.concept-text h3 {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--cream-white);
  line-height: 1.6;
  font-weight: 500;
}

.concept-text p {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 2;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section-main {
  padding: var(--space-xl) var(--space-md);
  background: var(--wood-dark);
  position: relative;
}

.gallery-section-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.gallery-grid-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item-main {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.2);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item-main:hover::after {
  opacity: 1;
}

.gallery-item-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-main:hover img {
  transform: scale(1.08);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--wood-darkest);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  position: relative;
  border-top: 1px solid var(--color-border);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream-white);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.footer-sns {
  display: flex;
  gap: var(--space-sm);
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.8rem;
}

.footer-sns a:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: rgba(201, 162, 39, 0.1);
}

/* ========================================
   Wave Divider
   ======================================== */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ========================================
   Section Divider
   ======================================== */
.section-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}

/* ========================================
   Page Hero (サブページ)
   ======================================== */
.page-hero {
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
  background: var(--wood-darkest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(92, 51, 23, 0.3) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--cream-white);
  letter-spacing: 0.1em;
  position: relative;
}

.page-hero-subtitle {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.3em;
  margin-top: var(--space-sm);
  position: relative;
}

/* ========================================
   Scroll Animations
   ======================================== */
[data-scroll] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll="fade-up"] {
  transform: translateY(40px);
}

[data-scroll="fade-down"] {
  transform: translateY(-40px);
}

[data-scroll="fade-left"] {
  transform: translateX(-40px);
}

[data-scroll="fade-right"] {
  transform: translateX(40px);
}

[data-scroll="scale"] {
  transform: scale(0.92);
}

[data-scroll="fade"] {
  transform: none;
}

[data-scroll].is-visible {
  opacity: 1;
  transform: none;
}

/* ディレイ */
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

[data-delay="700"] {
  transition-delay: 0.7s;
}

[data-delay="800"] {
  transition-delay: 0.8s;
}

/* ========================================
   Utility
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-gold {
  color: var(--gold-mid);
}

.text-cream {
  color: var(--cream-light);
}

.text-muted {
  color: var(--color-text-muted);
}

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

.text-left {
  text-align: left;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-text-muted);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.empty-state-title {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--cream-dark);
  margin-bottom: var(--space-xs);
}

.empty-state-message {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========================================
   Badge
   ======================================== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-mid);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-gray {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

/* ========================================
   Keyframes
   ======================================== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 162, 39, 0);
  }
}

/* ========================================
   Toast Notification
   ======================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--cream-white);
  background: var(--wood-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-dark);
  animation: toastIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-success {
  border-left: 3px solid var(--gold-mid);
}

.toast-error {
  border-left: 3px solid #ef4444;
}

@keyframes toastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .info-sns-grid {
    grid-template-columns: 1fr;
  }

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

  .concept-image {
    order: -1;
  }

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

  .banner-cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .schedule-grid-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ========================================
   ライブカレンダー
   ======================================== */
.live-calendar-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.live-cal-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--color-border-bright, #c9a24e66);
  color: var(--color-gold, #c9a24e);
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  font-family: var(--font-jp, sans-serif);
}

.live-cal-toggle-btn:hover,
.live-cal-toggle-btn.active {
  background: rgba(201, 162, 78, 0.12);
  border-color: var(--color-gold, #c9a24e);
}

.live-cal-toggle-btn.active svg {
  transform: scale(1.1);
}

/* カレンダーラッパー（折りたたみ） */
.live-calendar-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.4s ease;
  margin-bottom: 0;
}

.live-calendar-wrapper.open {
  max-height: 800px;
  opacity: 1;
  margin-bottom: 2.5rem;
}

/* 内側コンテナ：デスクトップで2カラム */
.live-cal-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

/* カレンダーボックス */
.live-calendar-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,78,0.2);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  flex: 1 1 auto;
  min-width: 0;
}

.live-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.live-cal-month {
  font-size: 1.15rem;
  font-family: var(--font-jp, sans-serif);
  color: var(--color-gold, #c9a24e);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.live-cal-nav {
  background: none;
  border: 1px solid rgba(201,162,78,0.3);
  color: var(--color-gold, #c9a24e);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.live-cal-nav:hover {
  background: rgba(201,162,78,0.12);
  border-color: var(--color-gold, #c9a24e);
}

.live-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.live-cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(240,230,211,0.4);
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  font-family: var(--font-jp, sans-serif);
}

.live-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.live-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.88rem;
  color: rgba(240,230,211,0.55);
  position: relative;
  cursor: default;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  font-family: var(--font-jp, sans-serif);
  min-height: 44px;
}

.live-cal-day.empty {
  visibility: hidden;
}

.live-cal-day.today {
  background: rgba(255,255,255,0.07);
  color: rgba(240,230,211,0.95);
  font-weight: 600;
}

.live-cal-day.has-event {
  cursor: pointer;
  background: rgba(201,162,78,0.15);
  color: #e8c96a;
  font-weight: 700;
  border: 1px solid rgba(201,162,78,0.35);
}

.live-cal-day.has-event:hover {
  background: rgba(201,162,78,0.3);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(201,162,78,0.25);
}

.live-cal-day.has-event::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a24e;
  position: absolute;
  bottom: 5px;
}

.live-cal-day.today.has-event {
  background: rgba(201,162,78,0.22);
  border-color: rgba(201,162,78,0.6);
}

.live-cal-day.sunday { color: rgba(255,130,130,0.6); }
.live-cal-day.saturday { color: rgba(130,160,255,0.6); }
.live-cal-day.has-event.sunday,
.live-cal-day.has-event.saturday { color: #e8c96a; }

.live-cal-legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: rgba(240,230,211,0.4);
  font-family: var(--font-jp, sans-serif);
}

.live-cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(201,162,78,0.3);
  border: 1px solid rgba(201,162,78,0.5);
  display: inline-block;
}

.live-cal-today-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.07);
  display: inline-block;
}

/* ===== デスクトップ：イベントパネル ===== */
.live-cal-event-panel {
  flex: 0 0 260px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,162,78,0.15);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  min-height: 0;
  overflow-y: auto;
}

.live-cal-panel-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(201,162,78,0.6);
  text-transform: uppercase;
  font-family: var(--font-en, serif);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,162,78,0.12);
}

.live-cal-no-event {
  font-size: 0.8rem;
  color: rgba(240,230,211,0.3);
  font-family: var(--font-jp, sans-serif);
  text-align: center;
  margin-top: 1.5rem;
}

.live-cal-panel-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 6px;
  padding-left: 0.4rem;
}

.live-cal-panel-item:last-child {
  border-bottom: none;
}

.live-cal-panel-item:hover {
  background: rgba(201,162,78,0.07);
}

.live-cal-panel-date {
  font-size: 0.68rem;
  color: #c9a24e;
  font-family: var(--font-en, serif);
  letter-spacing: 0.05em;
}

.live-cal-panel-name {
  font-size: 0.82rem;
  color: rgba(240,230,211,0.8);
  font-family: var(--font-jp, sans-serif);
  line-height: 1.4;
}

.live-cal-panel-venue {
  font-size: 0.7rem;
  color: rgba(240,230,211,0.4);
  font-family: var(--font-jp, sans-serif);
}

/* ハイライト（カレンダーからクリック時） */
.schedule-card-main.cal-highlight {
  outline: 2px solid #c9a24e;
  outline-offset: 2px;
  animation: calPulse 0.6s ease;
}

@keyframes calPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* モバイル：縦積みに戻す */
@media (max-width: 768px) {
  .live-cal-inner {
    flex-direction: column;
  }
  .live-cal-event-panel {
    display: none;
  }
  .live-calendar-wrapper.open {
    max-height: 480px;
  }
  .live-cal-day { min-height: 36px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .live-calendar-box { padding: 1rem 0.75rem; }
  .live-cal-day { font-size: 0.75rem; min-height: 32px; }
}

/* ===== お取り置きモーダル ===== */
.resv-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 6, 2, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.resv-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.resv-modal-box {
  position: relative;
  background: #1c1208;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 2.5rem 2.2rem 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.resv-modal-overlay.open .resv-modal-box {
  transform: translateY(0);
}

.resv-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: rgba(240,230,211,0.45);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}

.resv-modal-close:hover {
  color: var(--color-gold, #c9a24e);
}

.resv-modal-label {
  font-family: var(--font-heading, serif);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--color-gold, #c9a24e);
  margin: 0 0 0.4rem;
}

.resv-modal-title {
  font-family: var(--font-jp, sans-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream-white, #f5f0e8);
  margin: 0 0 0.4rem;
}

.resv-modal-sub {
  font-family: var(--font-jp, sans-serif);
  font-size: 0.82rem;
  color: rgba(240,230,211,0.45);
  margin: 0 0 1.6rem;
}

.resv-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.resv-label {
  font-family: var(--font-jp, sans-serif);
  font-size: 0.78rem;
  color: rgba(240,230,211,0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.resv-required {
  font-size: 0.62rem;
  background: rgba(212,175,55,0.15);
  color: var(--color-gold, #c9a24e);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  letter-spacing: 0.05em;
}

.resv-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--cream-white, #f5f0e8);
  font-family: var(--font-jp, sans-serif);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.resv-input::placeholder {
  color: rgba(240,230,211,0.25);
}

.resv-input:focus {
  border-color: rgba(212,175,55,0.6);
  background: rgba(255,255,255,0.07);
}

.resv-error {
  font-family: var(--font-jp, sans-serif);
  font-size: 0.8rem;
  color: #f87171;
  min-height: 1.2em;
  margin: 0 0 0.5rem;
}

.resv-submit {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #b8860b, #d4af37);
  color: #1a1005;
  font-family: var(--font-heading, serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.resv-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
}

.resv-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.resv-success {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.resv-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 2px solid rgba(212,175,55,0.5);
  color: var(--color-gold, #c9a24e);
  font-size: 1.6rem;
  line-height: 56px;
  margin: 0 auto 1.2rem;
}

.resv-success-msg {
  font-family: var(--font-jp, sans-serif);
  font-size: 0.95rem;
  color: rgba(240,230,211,0.8);
  line-height: 1.8;
}

@media (max-width: 480px) {
  .resv-modal-box { padding: 2rem 1.2rem 1.5rem; }
}

/* ================================================================
   ライブページ プレミアムリニューアル
   lp- = live page prefix
   ================================================================ */

/* Upcoming Lives — 横長カードリスト */
.lp-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.lp-event-card {
  display: grid;
  grid-template-columns: 90px 200px 1fr auto;
  gap: 0;
  background: linear-gradient(135deg, rgba(45,26,14,0.95) 0%, rgba(35,18,8,0.98) 100%);
  border: 1px solid rgba(201,162,39,0.22);
  border-left: 3px solid var(--gold-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.lp-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,162,39,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lp-event-card:hover {
  border-left-color: var(--gold-bright);
  border-color: rgba(201,162,39,0.45);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(201,162,39,0.12);
  transform: translateY(-3px);
}

/* 日付列 */
.lp-event-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: rgba(0,0,0,0.2);
  border-right: 1px solid rgba(201,162,39,0.12);
  gap: 0.15rem;
  min-height: 180px;
}

.lp-event-year {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.lp-event-md {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-mid);
  letter-spacing: 0.05em;
  line-height: 1;
}

.lp-event-divider {
  width: 24px;
  height: 1px;
  background: rgba(201,162,39,0.4);
  margin: 0.3rem 0;
}

.lp-event-weekday {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--cream-dark);
  letter-spacing: 0.05em;
}

/* フライヤー画像 */
.lp-event-flyer {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.lp-event-card:hover .lp-event-flyer img {
  transform: scale(1.07);
}

.lp-event-flyer-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-event-flyer-placeholder span {
  font-size: 2.5rem;
  opacity: 0.3;
}

/* 情報列 */
.lp-event-info {
  padding: 1.5rem 1.5rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
}

.lp-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold-mid);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  width: fit-content;
  text-transform: uppercase;
}

.lp-event-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold-mid);
  border-radius: 50%;
  animation: lp-blink 1.4s ease-in-out infinite;
}

@keyframes lp-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.lp-event-title {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream-light);
  line-height: 1.5;
  margin: 0;
}

.lp-event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lp-event-venue,
.lp-event-time,
.lp-event-price {
  font-size: 0.82rem;
  color: var(--cream-dark);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.4;
}

.lp-event-venue::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a227'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-event-time::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a227'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.5 5v5.25l4.5 2.67-.75 1.23L11 13V7h1.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-event-price::before {
  content: '¥';
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--gold-mid);
  flex-shrink: 0;
}

.lp-event-price-free {
  color: #6ee7b7;
  font-weight: 500;
}

/* アクションボタン列 */
.lp-event-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.6rem;
  padding: 1.5rem 1.4rem;
  border-left: 1px solid rgba(201,162,39,0.1);
  min-width: 140px;
}

.lp-btn-ticket {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
  background-size: 200% 100%;
  color: #1a0f08;
  font-family: var(--font-jp);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.lp-btn-ticket:hover {
  background-position: 100% 0;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  color: #1a0f08;
}

.lp-btn-detail {
  display: block;
  text-align: center;
  padding: 0.55rem 1rem;
  background: transparent;
  color: var(--cream-dark);
  font-family: var(--font-jp);
  font-size: 0.78rem;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.lp-btn-detail:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: rgba(201,162,39,0.06);
}

/* "ライブなし"メッセージ */
.lp-empty-msg {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-muted);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   Past Lives — グリッドカード
   ============================================================ */
.lp-past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.lp-past-card {
  background: rgba(35,18,8,0.8);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.lp-past-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.lp-past-flyer {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lp-past-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.75);
  transition: all 0.4s ease;
}

.lp-past-card:hover .lp-past-flyer img {
  filter: grayscale(15%) brightness(0.88);
  transform: scale(1.04);
}

.lp-past-flyer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,15,8,0.85) 100%);
}

.lp-past-ended-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(240,230,211,0.7);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(240,230,211,0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.lp-past-info {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-past-date {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold-mid);
  opacity: 0.8;
}

.lp-past-title {
  font-family: var(--font-jp);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-mid);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-past-venue {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: auto;
  padding-top: 0.4rem;
}

.lp-past-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(201,162,39,0.65);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.lp-past-link:hover { color: var(--gold-mid); }
.lp-past-link::after { content: ' →'; }

/* Upcoming セクションタイトル（改良版）*/
.lp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--cream-light);
  letter-spacing: 0.05em;
  position: relative;
}

.lp-section-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-mid);
  margin-top: 0.4rem;
}

/* ================================================================
   レスポンシブ — ライブページ
   ================================================================ */
@media (max-width: 900px) {
  .lp-event-card {
    grid-template-columns: 78px 160px 1fr;
  }
  .lp-event-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(201,162,39,0.1);
    padding: 1rem 1.4rem;
    gap: 0.8rem;
  }
  .lp-btn-ticket,
  .lp-btn-detail { flex: 1; }
  .lp-past-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lp-event-card {
    grid-template-columns: 70px 1fr;
  }
  .lp-event-flyer { display: none; }
  .lp-event-info { padding: 1.1rem 1.1rem 1rem; }
  .lp-event-date-col { min-height: 0; padding: 1.1rem 0.8rem; }
  .lp-event-md { font-size: 1.1rem; }
  .lp-event-actions { padding: 0.8rem 1rem; }
  .lp-past-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

@media (max-width: 420px) {
  .lp-past-grid { grid-template-columns: 1fr; }
}
