/* =========================================
   ものまねショーパブ アラジン - スタイルシート
   ========================================= */

/* --- リセット & ベース --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9A7A30;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #181818;
  --black-border: #2a2a2a;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.85);
  --white-soft: rgba(255,255,255,0.6);
  --text-muted: #888888;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --transition: 0.3s ease;
  --shadow-gold: 0 0 30px rgba(201,168,76,0.3);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- ユーティリティ --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-en {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto 20px;
}

.section-desc {
  color: var(--white-soft);
  font-size: 0.95rem;
}

/* --- ボタン --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  border-color: transparent;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  border-radius: var(--radius);
}

/* =========================================
   ナビゲーション
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
  transition: background var(--transition);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--white-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  transition: color var(--transition);
  border-radius: 4px;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

/* =========================================
   ヒーローセクション
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #050508;
  text-align: center;
}

/* --- ステージ背景 --- */
.hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

/* ====== スポットライト（上から下へ扇形） ====== */
.spotlight {
  position: absolute;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  mix-blend-mode: screen;
}

/* スポット1：左寄り */
.sp1 {
  left: 5%;
  border-top: none;
  border-left-width: 40px;
  border-right-width: 40px;
  border-bottom-width: 100vh;
  border-bottom-color: rgba(255, 240, 140, 0.09);
  transform-origin: top center;
  animation: swayLight 8s ease-in-out infinite;
  animation-delay: 0s;
}

/* スポット2：左中 */
.sp2 {
  left: 22%;
  border-left-width: 55px;
  border-right-width: 55px;
  border-bottom-width: 100vh;
  border-bottom-color: rgba(255, 248, 180, 0.13);
  animation: swayLight 10s ease-in-out infinite;
  animation-delay: 1s;
}

/* スポット3：中央（最も明るい） */
.sp3 {
  left: calc(50% - 80px);
  border-left-width: 80px;
  border-right-width: 80px;
  border-bottom-width: 100vh;
  border-bottom-color: rgba(255, 250, 200, 0.18);
  animation: swayMain 7s ease-in-out infinite;
  animation-delay: 0.3s;
}

/* スポット4：右中 */
.sp4 {
  right: 22%;
  left: auto;
  border-left-width: 55px;
  border-right-width: 55px;
  border-bottom-width: 100vh;
  border-bottom-color: rgba(255, 248, 180, 0.12);
  animation: swayLight 9s ease-in-out infinite;
  animation-delay: 0.7s;
}

/* スポット5：右寄り */
.sp5 {
  right: 5%;
  left: auto;
  border-left-width: 40px;
  border-right-width: 40px;
  border-bottom-width: 100vh;
  border-bottom-color: rgba(255, 240, 140, 0.08);
  animation: swayLight 11s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes swayLight {
  0%   { opacity: 0.5; transform: rotate(-4deg); }
  50%  { opacity: 1;   transform: rotate(4deg); }
  100% { opacity: 0.5; transform: rotate(-4deg); }
}

@keyframes swayMain {
  0%   { opacity: 0.7; transform: rotate(-2deg); }
  50%  { opacity: 1;   transform: rotate(2deg); }
  100% { opacity: 0.7; transform: rotate(-2deg); }
}

/* ====== キラキラグリッター ====== */
.glitter {
  position: absolute;
  border-radius: 50%;
  animation: glitterFall linear infinite;
}

/* 各グリッターの位置・サイズ・タイミング */
.g1  { width:4px; height:4px; background:#E8C96A; top:-5%; left:8%;   animation-duration:4s;  animation-delay:0s;    opacity:0; }
.g2  { width:6px; height:6px; background:#fff9d0; top:-5%; left:18%;  animation-duration:5.5s; animation-delay:0.4s;  opacity:0; }
.g3  { width:3px; height:3px; background:#C9A84C; top:-5%; left:29%;  animation-duration:3.8s; animation-delay:1.1s;  opacity:0; }
.g4  { width:5px; height:5px; background:#ffe680; top:-5%; left:40%;  animation-duration:4.5s; animation-delay:0.2s;  opacity:0; }
.g5  { width:4px; height:4px; background:#fff;    top:-5%; left:51%;  animation-duration:5s;   animation-delay:0.8s;  opacity:0; }
.g6  { width:6px; height:6px; background:#E8C96A; top:-5%; left:62%;  animation-duration:3.5s; animation-delay:1.4s;  opacity:0; }
.g7  { width:3px; height:3px; background:#ffe680; top:-5%; left:73%;  animation-duration:4.8s; animation-delay:0.6s;  opacity:0; }
.g8  { width:5px; height:5px; background:#fff9d0; top:-5%; left:84%;  animation-duration:4.2s; animation-delay:1.8s;  opacity:0; }
.g9  { width:4px; height:4px; background:#C9A84C; top:-5%; left:13%;  animation-duration:5.2s; animation-delay:2.1s;  opacity:0; }
.g10 { width:6px; height:6px; background:#fff;    top:-5%; left:24%;  animation-duration:3.7s; animation-delay:0.9s;  opacity:0; }
.g11 { width:3px; height:3px; background:#E8C96A; top:-5%; left:35%;  animation-duration:4.6s; animation-delay:1.6s;  opacity:0; }
.g12 { width:5px; height:5px; background:#ffe680; top:-5%; left:46%;  animation-duration:5.1s; animation-delay:0.3s;  opacity:0; }
.g13 { width:4px; height:4px; background:#fff9d0; top:-5%; left:57%;  animation-duration:3.9s; animation-delay:2.4s;  opacity:0; }
.g14 { width:6px; height:6px; background:#C9A84C; top:-5%; left:68%;  animation-duration:4.3s; animation-delay:1.2s;  opacity:0; }
.g15 { width:3px; height:3px; background:#ffe680; top:-5%; left:79%;  animation-duration:5.4s; animation-delay:0.5s;  opacity:0; }
.g16 { width:5px; height:5px; background:#E8C96A; top:-5%; left:90%;  animation-duration:4s;   animation-delay:1.9s;  opacity:0; }
.g17 { width:4px; height:4px; background:#fff;    top:-5%; left:3%;   animation-duration:5.7s; animation-delay:2.6s;  opacity:0; }
.g18 { width:6px; height:6px; background:#fff9d0; top:-5%; left:96%;  animation-duration:3.6s; animation-delay:0.7s;  opacity:0; }
.g19 { width:3px; height:3px; background:#E8C96A; top:-5%; left:44%;  animation-duration:4.9s; animation-delay:2.9s;  opacity:0; }
.g20 { width:5px; height:5px; background:#ffe680; top:-5%; left:55%;  animation-duration:3.3s; animation-delay:1.3s;  opacity:0; }

@keyframes glitterFall {
  0%   { transform: translateY(0)   rotate(0deg)   scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { opacity: 0.8; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(105vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* ヒーロー底部グラデ */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 24px 60px;
  max-width: 800px;
}

/* --- 日付入力 --- */
.date-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* カレンダー入力を大きく目立つように */
#date {
  font-size: 1.1rem;
  padding: 16px 20px;
  border: 2px solid var(--gold-dark) !important;
  background: #1a1600 !important;
  color: var(--gold-light) !important;
  cursor: pointer;
  letter-spacing: 0.05em;
}

#date::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.9;
}

#date:focus {
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25) !important;
}

.date-note {
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.date-note::before {
  content: '📅';
  font-size: 1rem;
  flex-shrink: 0;
}

.date-error {
  font-size: 0.82rem;
  color: #FF7B7B;
  min-height: 1.4em;
  font-weight: 700;
  padding: 6px 10px;
  background: rgba(255,80,80,0.08);
  border-radius: 4px;
  display: none;
}

.date-error.visible {
  display: block;
}

.hero-catch {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white);
}

.hero-title-accent {
  display: block;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 30px;
}

.hero-name-en {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.5em;
  color: var(--white-soft);
  border-right: 1px solid var(--gold);
  padding-right: 16px;
}

.hero-name-ja {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--white-soft);
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-soft);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   アラジンとは
   ========================================= */
.about {
  background: var(--black-soft);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-lead strong {
  color: var(--gold);
}

.about-text p {
  color: var(--white-soft);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.feature-item:hover {
  border-color: var(--gold-dark);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--black-border);
}

.about-img-contain {
  object-fit: contain !important;
  background: var(--black);
  aspect-ratio: 16 / 9;
  height: auto !important;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.about-image-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-serif);
}

/* =========================================
   移転・募集バナー
   ========================================= */
.recruit-banner {
  background: linear-gradient(135deg, #1a0a00, #2a1400, #1a0a00);
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruit-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.recruit-inner {
  position: relative;
  z-index: 1;
}

.recruit-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.recruit-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.recruit-highlight {
  color: var(--gold-light);
  font-size: 1.2em;
}

.recruit-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--white-soft);
  line-height: 1.9;
  margin-bottom: 30px;
}

.recruit-desc strong {
  color: var(--gold-light);
  font-size: 1.1em;
}

.recruit-btn {
  font-size: 1rem;
  padding: 16px 44px;
}

/* =========================================
   タレントプロフィール
   ========================================= */
.talents {
  background: var(--black);
}

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

.talent-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.talent-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.talent-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.talent-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.talent-card:hover .talent-img-wrap img {
  transform: scale(1.04);
}

.talent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.talent-card:hover .talent-overlay {
  opacity: 1;
}

.talent-overlay-text {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.talent-info {
  padding: 20px;
}

.talent-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.talent-role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.talent-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   スケジュール
   ========================================= */
.schedule {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

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

.schedule-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.schedule-time-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color var(--transition);
}

.schedule-time-card:hover {
  border-color: var(--gold-dark);
}

.schedule-time-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.schedule-time-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.schedule-time {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.schedule-table-wrap {
  margin-bottom: 50px;
}

.schedule-table-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}

.schedule-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--black-border);
}

.schedule-row {
  display: grid;
  grid-template-columns: 70px 50px 1fr;
  gap: 0;
}

.schedule-row.header {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.schedule-row.header .schedule-cell {
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
}

.schedule-row:not(.header) {
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
  transition: background var(--transition);
}

.schedule-row:not(.header):last-child {
  border-bottom: none;
}

.schedule-row:not(.header):hover {
  background: rgba(201,168,76,0.05);
}

.schedule-cell {
  padding: 16px 14px;
  font-size: 0.85rem;
  color: var(--white-dim);
  border-right: 1px solid var(--black-border);
  display: flex;
  align-items: center;
}

.schedule-cell:last-child {
  border-right: none;
}

.day-mon, .day-tue, .day-wed { color: var(--white-dim); font-weight: 700; }
.day-fri { color: #6BAAFF; font-weight: 700; }
.day-sat { color: var(--gold-light); font-weight: 700; }
.day-sun, .day-thu { color: #FF7B7B; font-weight: 700; }

.closed-cell {
  color: var(--text-muted) !important;
  font-size: 0.8rem;
  font-style: italic;
}

.schedule-notice {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.talent-link {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.talent-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.schedule-reserve {
  text-align: center;
  padding: 40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
}

.schedule-reserve p {
  color: var(--white-soft);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* =========================================
   ギャラリー
   ========================================= */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 700;
}

/* =========================================
   お問合せ
   ========================================= */
.contact {
  background: var(--black-soft);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black-border);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.88rem;
  color: var(--white-soft);
  line-height: 1.6;
}

.tel-link {
  color: var(--gold-light);
  transition: color var(--transition);
}

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

.sns-links h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white-soft);
  margin-bottom: 12px;
}

.sns-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sns-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--white-dim);
}

.sns-btn:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  color: var(--white-soft);
  letter-spacing: 0.05em;
}

.required {
  color: var(--gold);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--black-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* =========================================
   フッター
   ========================================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--black-border);
}

.footer-top {
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo .logo-main {
  font-size: 2rem;
}

.footer-catch {
  color: var(--white-soft);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin: 12px 0 30px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

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

.footer-bottom {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid var(--black-border);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.05em;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* =========================================
   トップへ戻る
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 380px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* ナビ */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 30px 24px;
    gap: 6px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid var(--black-border);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-top: 8px;
  }

  /* ヒーロー */
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    min-width: 220px;
  }

  /* スケジュール */
  .schedule-info {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 52px 40px 1fr;
    align-items: start;
  }

  .schedule-cell {
    padding: 12px 8px;
    font-size: 0.75rem;
    white-space: normal;
    word-break: break-word;
    align-items: flex-start;
  }

  /* 名前セル（最後の列）は折り返し許可 */
  .schedule-cell:last-child {
    line-height: 1.9;
  }

  .talent-link {
    display: inline;
    white-space: nowrap;
  }

  /* ギャラリー */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  /* お問合せ */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* タレント */
  .talents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* トップへ戻る */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 8px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .schedule-row {
    grid-template-columns: 44px 34px 1fr;
  }

  .schedule-cell {
    padding: 10px 6px;
    font-size: 0.7rem;
  }

  .hero-name {
    flex-direction: column;
    gap: 8px;
  }

  .hero-name-en {
    border-right: none;
    border-bottom: 1px solid var(--gold);
    padding-right: 0;
    padding-bottom: 8px;
  }
}

/* =========================================
   ライトボックス
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-inner img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--gold-dark);
  color: var(--black);
}

/* クリック可能な画像のカーソル */
.zoomable {
  cursor: zoom-in;
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
