/* ============================================================
   AMIPRO - Main CSS
   Amigo Production WordPress Theme
   Design System + All Components
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* ============================================================
   DESIGN TOKENS（爽やか配色版）
   ============================================================ */
:root {
  /* Voice Actor - 親しみやすいピンク系 */
  --vc-primary:    #4A90E2;
  --vc-secondary:  #A8D0FF;
  --vc-grad:       linear-gradient(135deg, #7BB3F0 0%, #A8D0FF 50%, #BFDBFE 100%);
  --vc-grad-sub:   linear-gradient(135deg, rgba(74,144,226,0.08) 0%, rgba(168,208,255,0.08) 100%);
  --vc-glow:       0 0 40px rgba(74,144,226,0.3);
  --vc-shadow:     0 8px 32px rgba(74,144,226,0.2);

  /* Actor - 信頼感のあるブルー系 */
  --ac-primary:    #4A90E2;
  --ac-secondary:  #7BB3F0;
  --ac-grad:       linear-gradient(135deg, #4A90E2 0%, #7BB3F0 50%, #A8D0FF 100%);
  --ac-grad-sub:   linear-gradient(135deg, rgba(74,144,226,0.08) 0%, rgba(123,179,240,0.08) 100%);
  --ac-shadow:     0 8px 32px rgba(74,144,226,0.2);

  /* Training - 温かみのあるオレンジ */
  --tr-primary:    #FF9800;
  --tr-grad:       linear-gradient(135deg, #FFB74D 0%, #FFC107 50%, #FFD54F 100%);

  /* 背景 - 清潔感重視の白ベース */
  --bg-white:      #FFFFFF;
  --bg-off:        #FAFAFA;        /* オフホワイト */
  --bg-light:      #DBEAFE;        /* より明確な水色に変更 */
  --bg-dark:       #1E293B;        /* 本来の暗い背景に戻す */
  --border-light:  #CBD5E1;        /* 枠線用の色を追加 */

  /* テキスト - 読みやすさ最優先 */
  --text-dark:     #2D3748;
  --text-body:     #4A5568;
  --text-muted:    #718096;
  --text-white:    #FFFFFF;
  --text-w70:      rgba(45,55,72,0.7);
  --text-w50:      rgba(45,55,72,0.5);

  /* Gold */
  --gold:          #F5A623;

  /* Fonts */
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en: 'Poppins', sans-serif;

  /* Layout */
  --hh: 80px;          /* header height */
  --mw: 1200px;        /* max width */
  --gutter: 24px;      /* container padding */
  --sec-y: 100px;      /* section padding Y */
  --sec-y-sm: 60px;

  /* Radius */
  --r-xs: 4px;   --r-sm: 8px;   --r-md: 16px;
  --r-lg: 24px;  --r-xl: 40px;  --r-2xl: 60px;
  --r-full: 9999px;

  /* Shadow */
  --sh-xs: 0 1px 4px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 12px rgba(0,0,0,0.08);
  --sh-md: 0 4px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 8px 48px rgba(0,0,0,0.14);
  --sh-xl: 0 16px 64px rgba(0,0,0,0.18);

  /* Easing */
  --ease-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-fast: 0.15s ease;
}
/* 暗いセクションを明るく調整 */
.hero, .top-hero {
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%) !important;
  color: var(--text-dark) !important;
}

.hero-title, .top-hero .hero-title {
  color: var(--text-dark) !important;
}

.hero-subtitle, .hero-sub {
  color: var(--text-body) !important;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-jp); color: var(--text-dark); background: var(--bg-off) !important; overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.en { font-family: var(--font-en); }
.grad-voice { background: var(--vc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-actor { background: var(--ac-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-white  { color: var(--text-white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: var(--sec-y) 0; }
.section-sm { padding: var(--sec-y-sm) 0; }
.section-bg-off  { background: var(--bg-off); }
.section-bg-dark { background: var(--bg-dark); }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--vc-primary);
}
.sec-label::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: var(--r-full); }
.sec-label.actor  { color: var(--ac-primary); }
.sec-label.train  { color: var(--tr-primary); }
.sec-label.light  { color: var(--text-w70); }

.sec-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sec-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 540px;
}
.sec-subtitle.light { color: var(--text-w70); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--vc-grad);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.05s linear;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-transparent { background: transparent; }
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}
.site-header.is-dark {
  background: rgba(11,9,23,0.96);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;          /* var(--mw) → 100% に変更 */
  margin: 0;                /* 0 auto → 0 に変更 */
  padding: 0 24px;          /* 0 var(--gutter) → 0 24px に変更 */
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.is-dark .logo-sub,
.is-transparent .logo-sub { color: var(--text-w50); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: var(--ease-fast);
}
.nav-link:hover { background: rgba(0,0,0,0.05); color: var(--vc-primary); }
.is-dark .nav-link,
.is-transparent .nav-link { color: var(--text-w70); }
.is-dark .nav-link:hover,
.is-transparent .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--text-white); }
.nav-link.voice-accent { color: var(--vc-primary); font-weight: 700; }
.is-dark .nav-link.voice-accent { color: #7BB3F0; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  border: 1px solid var(--border-light);
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-sm);
  color: var(--text-dark);
  transition: var(--ease-fast);
}
.dropdown-link:hover { background: var(--bg-light); color: var(--vc-primary); }
.dropdown-icon { font-size: 16px; }

/* CTA button in nav */
.nav-cta {
  padding: 10px 22px !important;
  background: var(--vc-grad) !important;
  color: white !important;
  border-radius: var(--r-full) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  box-shadow: var(--vc-shadow);
  transition: var(--ease-smooth) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(74,144,226,0.4); background: var(--vc-grad) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: var(--r-full); transition: var(--ease-smooth); }
.is-dark .hamburger span,
.is-transparent .hamburger span { background: white; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 998;
  flex-direction: column;
  padding: calc(var(--hh) + 20px) 32px 40px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.mobile-nav-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-w70);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.voice { color: #7BB3F0; }
.mobile-nav-link.actor { color: #60A5FA; }
.mobile-nav-cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: var(--ease-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg  { padding: 18px 48px; font-size: 17px; }
.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-xl  { padding: 22px 60px; font-size: 18px; }

.btn-voice { background: var(--vc-grad); color: white; box-shadow: var(--vc-shadow); }
.btn-voice:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(74,144,226,0.45); }

.btn-actor { background: var(--ac-grad); color: white; box-shadow: var(--ac-shadow); }
.btn-actor:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(21,101,192,0.45); }

.btn-outline-voice { background: transparent; color: var(--vc-primary); border-color: var(--vc-primary); }
.btn-outline-voice:hover { background: var(--vc-grad); color: white; border-color: transparent; }

.btn-outline-actor { background: transparent; color: var(--ac-primary); border-color: var(--ac-primary); }
.btn-outline-actor:hover { background: var(--ac-grad); color: white; border-color: transparent; }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: white; color: var(--text-dark); border-color: white; }

.btn-ghost { background: rgba(255,255,255,0.10); color: white; border-color: rgba(255,255,255,0.18); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.20); }

.btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

/* ============================================================
   HERO (TOP PAGE)
   ============================================================ */
.top-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-1 { width: 650px; height: 650px; background: radial-gradient(circle, #2563EB, transparent 65%); top: -150px; right: -150px; animation-delay: 0s; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #7C3AED, transparent 65%); bottom: -100px; left: 5%;  animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #C026D3, transparent 65%); top: 40%;  left: 40%; animation-delay: -6s; }

@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-40px) scale(1.06); }
  66%     { transform: translate(-20px,20px) scale(0.94); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: var(--gutter);
  padding-top: calc(var(--hh) + 40px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7BB3F0;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: #7BB3F0; }

.hero-title {
  font-size: clamp(44px, 8vw, 100px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-title .accent { background: var(--vc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-w70);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Waveform decoration */
.hero-wave {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 10;
}
.wave-bar {
  width: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  animation: wavePulse 1.4s ease-in-out infinite;
}
@keyframes wavePulse {
  0%,100% { transform: scaleY(0.25); opacity: 0.4; }
  50%     { transform: scaleY(1);    opacity: 1; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-w50);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 10;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent); }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ============================================================
   SPARKLE PARTICLES
   ============================================================ */
.sparkle-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sparkle {
  position: absolute;
  font-size: 14px;
  animation: sparklePop 3.5s ease-in-out infinite;
}
@keyframes sparklePop {
  0%   { transform: scale(0) rotate(0deg);   opacity: 0; }
  40%  { transform: scale(1) rotate(180deg); opacity: 1; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* ============================================================
   DIVISION CARDS (TOP)
   ============================================================ */
.division-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

.division-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 40px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.division-card:hover { transform: translateY(-8px); }
.division-card--voice { background: var(--vc-grad); box-shadow: var(--vc-shadow); }
.division-card--actor { background: var(--ac-grad); box-shadow: var(--ac-shadow); }

.division-deco {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 90px;
  opacity: 0.12;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.division-card:hover .division-deco { opacity: 0.22; transform: scale(1.12) rotate(6deg); }

.division-body { position: relative; z-index: 2; }
.division-en { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.division-title { font-size: clamp(30px, 3.5vw, 50px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 12px; }
.division-desc { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 24px; max-width: 340px; }
.division-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: white; transition: gap 0.2s; }
.division-card:hover .division-arrow { gap: 14px; }

/* ============================================================
   TALENT CARDS
   ============================================================ */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.talent-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-white);                    /* var(--bg-off) → var(--bg-white) に変更 */
  border: 1px solid var(--border-light);          /* この行を追加 */
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  box-shadow: var(--sh-sm);
  display: block;
  text-decoration: none;
}
.talent-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--vc-shadow); }
.talent-card--actor:hover { box-shadow: var(--ac-shadow); }

.talent-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.talent-card:hover .talent-img { transform: scale(1.06); }

.talent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,25,0.92) 0%, rgba(10,5,25,0.38) 55%, transparent 100%);
  opacity: 0.72;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}
.talent-card:hover .talent-overlay { opacity: 1; }

.talent-en { font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.talent-name { font-size: 20px; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 4px; }
.talent-origin { font-size: 12px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 3px; }
.talent-skills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; opacity: 0; transform: translateY(8px); transition: all 0.3s ease; }
.talent-card:hover .talent-skills { opacity: 1; transform: translateY(0); }
.talent-skill-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; background: rgba(255,255,255,0.15); border-radius: var(--r-full); color: white; }

.talent-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--vc-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: var(--vc-shadow);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.talent-card:hover .talent-badge { transform: scale(1.25) rotate(12deg); }
.talent-badge--actor { background: var(--ac-grad); box-shadow: var(--ac-shadow); }

/* ============================================================
   VOICE PLAYER CARD (サンプル付き)
   ============================================================ */
.voice-player-wrap {
  position: absolute;
  bottom: 70px;
  left: 12px; right: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5;
}
.talent-card:hover .voice-player-wrap { opacity: 1; transform: translateY(0); }

.mini-player {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}
.mini-play-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--vc-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  transition: transform 0.2s;
}
.mini-play-btn:hover { transform: scale(1.15); }
.mini-waveform {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.mini-wave-bar {
  width: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--r-full);
  transition: background 0.2s;
}
.mini-wave-bar.active { background: #7BB3F0; }

/* ============================================================
   STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.stat-cell {
  background: white;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-en);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit { font-size: 18px; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 34px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-xs);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vc-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--vc-shadow); border-color: transparent; }
.feature-card:hover::after { opacity: 1; }
.feature-card--actor::after { background: var(--ac-grad); }
.feature-card--actor:hover { box-shadow: var(--ac-shadow); }

.feat-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: var(--vc-grad-sub);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feat-icon--actor { background: var(--ac-grad-sub); }
.feat-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.feat-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   PROFILE PAGE
   ============================================================ */
.profile-hero {
  background: var(--bg-dark);
  padding: calc(var(--hh) + 48px) 0 72px;
  position: relative;
  overflow: hidden;
}
.profile-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.profile-hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #2563EB, transparent 70%); top: -120px; right: -80px; }
.profile-hero-orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, #7C3AED, transparent 70%); bottom: -80px; left: 10%; }
.profile-hero-orb--actor-1 { background: radial-gradient(circle, #1E3A8A, transparent 70%); }
.profile-hero-orb--actor-2 { background: radial-gradient(circle, #06B6D4, transparent 70%); }

.profile-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: flex-end;
}
.profile-photo-col {}
.profile-main-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(255,61,139,0.32);
}
.profile-main-photo--actor { box-shadow: 0 32px 80px rgba(21,101,192,0.32); }

.profile-info-col { padding-bottom: 20px; }
.profile-num {
  font-family: var(--font-en);
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 900;
  line-height: 1;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  margin-bottom: -16px;
  user-select: none;
}
.profile-dept-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.profile-name-jp { font-size: clamp(36px, 6vw, 68px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 6px; letter-spacing: -0.02em; }
.profile-name-en { font-family: var(--font-en); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-w50); margin-bottom: 20px; }
.profile-meta-row { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.profile-meta-item { display: flex; gap: 8px; align-items: center; }
.profile-meta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-w50); text-transform: uppercase; }
.profile-meta-value { font-size: 14px; font-weight: 600; color: white; }
.profile-skills-hero { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.profile-skill-tag {
  padding: 6px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: white;
}
.profile-sns { display: flex; gap: 8px; }
.sns-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: white;
  transition: var(--ease-smooth);
  text-decoration: none;
}
.sns-btn:hover { background: var(--vc-grad); border-color: transparent; transform: translateY(-2px); }
.sns-btn--actor:hover { background: var(--ac-grad); }

/* Profile detail layout */
.profile-detail { padding: 72px 0; }
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.profile-sidebar { position: sticky; top: calc(var(--hh) + 32px); }
.profile-sidebar-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-sm);
  margin-bottom: 16px;
}
.sidebar-name-jp { font-size: 26px; font-weight: 900; margin-bottom: 2px; }
.sidebar-name-en { font-family: var(--font-en); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-origin  { font-size: 13px; color: var(--text-muted); padding-top: 12px; border-top: 1px solid var(--border-light); }

.profile-main {}
.profile-section { margin-bottom: 52px; }
.profile-section-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-section-label--actor { color: var(--ac-primary); }
.profile-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }

.profile-bio { font-size: 15px; line-height: 1.9; color: var(--text-body); }

/* PR Message bubble */
.profile-pr-bubble {
  background: var(--vc-grad-sub);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  border-left: 4px solid var(--vc-primary);
  margin-bottom: 24px;
  position: relative;
}
.profile-pr-bubble::before {
  content: '"';
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  color: var(--vc-primary);
  opacity: 0.15;
  position: absolute;
  top: -10px; left: 16px;
  line-height: 1;
}
.profile-pr-text { font-size: 16px; line-height: 1.85; font-style: italic; color: var(--text-body); position: relative; z-index: 1; }
.profile-pr-name { text-align: right; font-weight: 700; color: var(--vc-primary); margin-top: 12px; font-size: 14px; }
.profile-pr-bubble--actor { background: var(--ac-grad-sub); border-left-color: var(--ac-primary); }
.profile-pr-bubble--actor .profile-pr-name { color: var(--ac-primary); }

/* Works table */
.works-by-cat { margin-bottom: 28px; }
.works-cat-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}
.works-list { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
}
.work-tag .work-role { color: var(--text-muted); font-size: 11px; }

/* Audio Player (Full) */
.voice-samples-wrap { display: flex; flex-direction: column; gap: 12px; }
.voice-sample-player {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--sh-xs);
  transition: var(--ease-smooth);
}
.voice-sample-player:hover { box-shadow: var(--vc-shadow); border-color: transparent; }
.vs-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--vc-grad);
  color: white;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  box-shadow: var(--vc-shadow);
  transition: transform 0.25s ease;
}
.vs-play-btn:hover { transform: scale(1.1); }
.vs-info { flex: 1; }
.vs-label { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.vs-waveform {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.vs-bar {
  width: 3px;
  border-radius: var(--r-full);
  background: rgba(74,144,226,0.2);
  transition: background 0.15s;
}
.vs-bar.played { background: var(--vc-primary); }
.vs-bar.current { background: var(--vc-secondary); }
.vs-time { font-family: var(--font-en); font-size: 11px; color: var(--text-muted); flex-shrink: 0; }

/* ============================================================
   VOICE DEPARTMENT PAGE
   ============================================================ */
.voice-hero {
  min-height: 80vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--hh) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.voice-hero-mic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mic-ring {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,61,139,0.06);
  border: 1px solid rgba(255,61,139,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mic-ring::before { content:''; position:absolute; width:420px; height:420px; border-radius:50%; border: 1px solid rgba(255,61,139,0.08); }
.mic-ring::after  { content:''; position:absolute; width:540px; height:540px; border-radius:50%; border: 1px solid rgba(255,61,139,0.05); }
.mic-emoji-big { font-size: 110px; animation: micFloat 3.2s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(255,61,139,0.5)); }
@keyframes micFloat { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-22px) rotate(5deg); } }

/* Actor Department */
.actor-hero {
  min-height: 80vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--hh) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.actor-hero-orb-1 { background: radial-gradient(circle, #1E3A8A, transparent 65%); }
.actor-hero-orb-2 { background: radial-gradient(circle, #06B6D4, transparent 65%); }

.film-strip-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 120px;
  background: repeating-linear-gradient(to bottom, rgba(30,58,138,0.15) 0px, rgba(30,58,138,0.15) 20px, transparent 20px, transparent 40px);
  opacity: 0.5;
}

/* ============================================================
   TRAINING (NINO) PAGE
   ============================================================ */
.nino-hero { background: var(--bg-dark); padding: var(--hh) 0 80px; position: relative; overflow: hidden; }
.nino-hero-orb { background: radial-gradient(circle, rgba(245,124,0,0.4), transparent 65%); }
.nino-logo {
  font-family: var(--font-en);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  background: var(--tr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}
.nino-block {
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nino-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,122,0,0.18), transparent 70%);
  filter: blur(60px);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.curriculum-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition: var(--ease-fast);
}
.curriculum-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(245,124,0,0.35); }
.curriculum-icon { font-size: 20px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(245,124,0,0.12); border-radius: var(--r-sm); flex-shrink: 0; }

/* Curriculum cards (full page) */
.curriculum-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.curriculum-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 30px 24px;
  border: 1px solid var(--border-light);
  transition: var(--ease-smooth);
}
.curriculum-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(245,124,0,0.2); border-color: transparent; }
.cc-icon { width: 56px; height: 56px; border-radius: var(--r-md); background: rgba(245,122,0,0.10); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.cc-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.cc-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* Instructor cards */
.instructor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.instructor-card { background: white; border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--border-light); text-align: center; }
.instructor-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--tr-grad); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 14px; box-shadow: 0 8px 24px rgba(245,124,0,0.3); }
.instructor-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.instructor-role { font-size: 12px; color: var(--tr-primary); font-weight: 600; }

/* ============================================================
   AUDITION PAGE
   ============================================================ */
.audition-steps { display: flex; flex-direction: column; }
.audition-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h4 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 4px; }
.step-content p  { font-size: 13px; color: var(--text-w70); line-height: 1.7; }

/* ============================================================
   NEWS / ARTICLES
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-xs);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.news-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-light); }
.news-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  background: var(--vc-grad-sub);
}
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-date { font-family: var(--font-en); font-size: 12px; color: var(--text-muted); }
.news-cat  { font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: var(--r-full); background: var(--vc-grad-sub); color: var(--vc-primary); }
.news-title { font-size: 15px; font-weight: 700; line-height: 1.55; flex: 1; }
.news-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-top: 8px; }

/* Single article */
.article-hero { background: var(--bg-dark); padding: calc(var(--hh) + 40px) 0 60px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px var(--gutter); }
.article-body h2 { font-size: 24px; font-weight: 800; margin: 36px 0 14px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.article-body p  { margin-bottom: 18px; line-height: 1.9; }
.article-body img { border-radius: var(--r-md); margin: 24px 0; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.form-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 700; }
.form-label .req { color: var(--vc-primary); margin-left: 4px; font-size: 11px; }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--vc-primary);
  box-shadow: 0 0 0 3px rgba(74,144,226,0.10);
}
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.form-radio-label input[type="radio"] { accent-color: var(--vc-primary); width: 17px; height: 17px; }
.form-check-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; cursor: pointer; }
.form-check-label input[type="checkbox"] { accent-color: var(--vc-primary); width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.form-msg { padding: 16px 20px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; display: none; }
.form-msg.success { background: rgba(16,185,129,0.1); color: #065F46; border: 1px solid rgba(16,185,129,0.3); }
.form-msg.error   { background: rgba(239,68,68,0.1);  color: #991B1B; border: 1px solid rgba(239,68,68,0.3); }

.contact-info-col { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--hh) + 32px); }
.contact-info-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-xs);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon { font-size: 24px; flex-shrink: 0; }
.ci-title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.ci-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   ABOUT / COMPANY PAGE
   ============================================================ */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-light); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.award-card {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.award-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--tr-grad); display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0; box-shadow: 0 8px 32px rgba(245,124,0,0.4); }
.award-title { font-size: 22px; font-weight: 900; color: white; margin-bottom: 8px; }
.award-desc  { font-size: 14px; color: var(--text-w70); line-height: 1.75; }

.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--border-light); }
.company-table th { width: 180px; padding: 20px 24px 20px 0; font-size: 13px; font-weight: 700; color: var(--text-muted); text-align: left; vertical-align: top; white-space: nowrap; }
.company-table td { padding: 20px 0; font-size: 15px; line-height: 1.75; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-w50); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-w50); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-dark); color: white; padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo { font-family: var(--font-en); font-size: 28px; font-weight: 900; background: var(--vc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--text-w50); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-sns-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; font-size: 15px; color: white; transition: var(--ease-fast); }
.footer-sns-btn:hover { background: var(--vc-grad); border-color: transparent; }
.footer-col-title { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-w50); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-w70); transition: var(--ease-fast); }
.footer-link:hover { color: #7BB3F0; transform: translateX(4px); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-family: var(--font-en); font-size: 12px; color: var(--text-w50); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 12px; color: var(--text-w50); }
.footer-bottom-link:hover { color: white; }

/* ============================================================
   SCROLL REVEAL (will be animated by GSAP)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}
/* Fallback for no-JS */
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--vc-grad);
  color: white;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--vc-shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 100;
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover  { transform: translateY(-4px); }

/* ============================================================
   SECTION HEADER ROW
   ============================================================ */
.sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; }
.view-all { font-size: 13px; font-weight: 700; color: var(--vc-primary); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; flex-shrink: 0; }
.view-all:hover { gap: 10px; }
.view-all--actor { color: var(--ac-primary); }

/* ============================================================
   TAG / BADGE
   ============================================================ */
.tag { display: inline-flex; align-items: center; padding: 3px 12px; font-size: 11px; font-weight: 700; border-radius: var(--r-full); }
.tag-voice  { background: rgba(74,144,226,0.10); color: var(--vc-primary); }
.tag-actor  { background: rgba(21,101,192,0.10); color: var(--ac-primary); }
.tag-new    { background: var(--vc-grad); color: white; }
.tag-train  { background: rgba(245,124,0,0.10); color: var(--tr-primary); }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--hh) + 56px) 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.38; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-full);
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  color: white; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-title { font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; }
.page-hero-desc  { font-size: 16px; color: var(--text-w70); max-width: 520px; line-height: 1.85; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--vc-grad);
  border-radius: var(--r-2xl);
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content: '🎤'; position: absolute; font-size: 200px; right: 80px; top: 50%; transform: translateY(-50%); opacity: 0.07; pointer-events: none; }
.cta-banner h2    { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; color: white; margin-bottom: 10px; }
.cta-banner p     { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.75; }
.cta-banner-btns  { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .division-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-2col    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-info-col { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .nino-block    { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .profile-hero-inner { grid-template-columns: 260px 1fr; }
}

@media (max-width: 768px) {
  :root { --hh: 64px; --sec-y: 56px; --sec-y-sm: 40px; }
  .site-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .talent-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-title   { font-size: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .profile-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .profile-main-photo { max-width: 260px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .form-grid    { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-banner   { flex-direction: column; padding: 36px 28px; text-align: center; }
  .cta-banner::before { display: none; }
  .sec-header-row { flex-direction: column; align-items: flex-start; }
  .award-card   { flex-direction: column; }
  .voice-hero-mic { display: none; }
  .actor-hero .film-strip-deco { display: none; }
  .contact-info-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .talent-grid { gap: 10px; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-light); }
}
/* ============================================================
   FRONT PAGE EXTENSIONS (既存CSSへの追加)
   ============================================================ */

/* Hero Section Extensions */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-orb--1,
.hero-orb--2,
.hero-orb--3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2563EB, transparent 65%);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #7C3AED, transparent 65%);
  bottom: -100px;
  left: 5%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #C026D3, transparent 65%);
  top: 40%;
  left: 45%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -35px) scale(1.05); }
  66% { transform: translate(-15px, 25px) scale(0.95); }
}

/* Sparkle Field */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 15% 25%, white, transparent),
    radial-gradient(1px 1px at 75% 35%, white, transparent),
    radial-gradient(2px 2px at 45% 65%, white, transparent),
    radial-gradient(1px 1px at 85% 75%, white, transparent),
    radial-gradient(2px 2px at 25% 85%, white, transparent);
  background-size: 300% 300%;
  animation: sparkleMove 8s linear infinite;
  opacity: 0.6;
}

@keyframes sparkleMove {
  0% { background-position: 0% 0%; opacity: 0.4; }
  50% { background-position: 100% 100%; opacity: 0.8; }
  100% { background-position: 0% 0%; opacity: 0.4; }
}

/* Hero Content Adjustments */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7BB3F0;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero-title .accent {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Division Card Enhancements */
.division-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 80px;
  opacity: 0.12;
  transition: all 0.4s ease;
}

.division-card:hover .division-deco {
  opacity: 0.25;
  transform: scale(1.1) rotate(8deg);
}

.division-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.division-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: gap 0.3s ease;
}

.division-card:hover .division-arrow {
  gap: 12px;
}

/* Talent Card Enhancements */
.talent-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.talent-origin {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* NINO Block Enhancements */
.nino-logo {
  font-family: var(--font-en);
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: var(--tr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

/* News Grid Enhancements */
.news-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--vc-grad-sub);
  color: var(--vc-primary);
}

/* CTA Banner Enhancements */
.cta-banner::before {
  content: '🎤';
  position: absolute;
  font-size: 180px;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}

.cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-orb--1 { width: 400px; height: 400px; }
  .hero-orb--2 { width: 300px; height: 300px; }
  .hero-orb--3 { width: 250px; height: 250px; }
  
  .cta-banner::before { display: none; }
  .cta-banner-btns { align-items: center; }
}
/* ============================================================
   HEADER SCROLL EXTENSIONS (main.js対応)
   ============================================================ */

/* JavaScriptが付与するクラスに対応 */
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

/* モバイルナビゲーション開閉対応 */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,9,23,0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin-bottom: 1.5rem;
}

.mobile-nav-list a {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: #7BB3F0;
}

/* ナビゲーション開いてる時のスクロール禁止 */
body.nav-open {
  overflow: hidden;
}

/* nav-toggle のスタイル（既存のhamburgerクラスと統合） */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: var(--r-full);
  transition: var(--ease-smooth);
}

.site-header.is-dark .nav-toggle span,
.site-header.is-transparent .nav-toggle span {
  background: white;
}

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

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .site-nav {
    display: none;
  }
}
/* ============================================================
   FRONT PAGE - モダン声優プロダクションデザイン
   ============================================================ */

/* ===== HERO SECTION ===== */
.hero-voice-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float-gentle 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4A90E2 0%, transparent 70%);
  top: 10%;
  right: 10%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4A90E2 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation-delay: -7s;
}

@keyframes float-gentle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--voice-primary);
  margin-bottom: 2rem;
}

.hero-badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: var(--voice-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.hero-stat-number {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--voice-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-plus {
  font-size: 0.6em;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon {
  font-size: 1.25rem;
}

/* ===== VOICE SHOWCASE ===== */
.voice-showcase {
  background: var(--white);
  padding: 120px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--voice-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-top: 0.5rem;
}

.link-more {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--voice-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.link-more:hover {
  color: var(--voice-secondary);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.voice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--voice-shadow);
}

.voice-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.voice-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light-gray);
}

.voice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.voice-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--voice-gradient);
  color: var(--white);
  font-size: 3rem;
}

.voice-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--voice-primary);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voice-card:hover .play-button {
  transform: scale(1);
}

.voice-card-info {
  padding: 1.5rem;
}

.voice-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.voice-card-furigana {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.voice-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(74, 144, 226, 0.1);
  color: var(--voice-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--off-white);
  padding: 120px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--voice-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--voice-shadow);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== ACTOR SECTION (控えめ) ===== */
.actor-section-subtle {
  background: linear-gradient(135deg, var(--actor-primary) 0%, var(--actor-secondary) 100%);
  padding: 80px 0;
  color: var(--white);
}

.actor-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.actor-label {
  color: rgba(255, 255, 255, 0.8);
}

.actor-intro .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.actor-intro-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
  background: var(--white);
  padding: 120px 0;
}

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

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

.news-link {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.news-link:hover {
  background: rgba(74, 144, 226, 0.03);
  padding-left: 1rem;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.news-arrow {
  color: var(--voice-primary);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.news-link:hover .news-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--text-dark);
  padding: 120px 0;
  color: var(--white);
}

.cta-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .voice-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .news-link {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
/* ============================================================
   MODERN VOICE PRODUCTION DESIGN
   ============================================================ */

/* ===== HERO VOICE FOCUS ===== */
.hero-voice-focus {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAFBFC 0%, #F0F7FF 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-subtle {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: float-gentle 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4A90E2 0%, transparent 70%);
  top: 15%;
  right: 10%;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4A90E2 0%, transparent 70%);
  bottom: 25%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes float-gentle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -15px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(74, 144, 226, 0.1);
  border: 1.5px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--voice-primary);
  margin-bottom: 2rem;
}

.hero-badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-title-line {
  display: block;
}

.hero-title-sub {
  background: linear-gradient(135deg, #7BB3F0 0%, #A8D0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.hero-stat-number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: var(--voice-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plus {
  font-size: 0.6em;
  opacity: 0.7;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-icon {
  font-size: 1.25rem;
}

/* ===== VOICE SHOWCASE ===== */
.voice-showcase {
  background: var(--white);
  padding: 140px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--voice-primary);
  margin-bottom: 0.5rem;
}

.actor-label {
  color: var(--actor-primary);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.link-more {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--voice-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-decoration: none;
}

.link-more:hover {
  color: var(--voice-secondary);
}

.voice-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.voice-card-modern {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid transparent;
}

.voice-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: var(--voice-shadow);
  border-color: rgba(74, 144, 226, 0.2);
}

.voice-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.voice-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--light-gray);
}

.voice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.voice-card-modern:hover .voice-card-image img {
  transform: scale(1.08);
}

.voice-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7BB3F0 0%, #A8D0FF 100%);
  color: var(--white);
  gap: 1rem;
}

.placeholder-icon {
  font-size: 4rem;
  opacity: 0.8;
}

.placeholder-text {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.voice-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.voice-card-modern:hover .voice-card-overlay {
  opacity: 1;
}

.play-button-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voice-card-modern:hover .play-button-modern {
  transform: translateY(0);
}

.play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--voice-primary);
  box-shadow: var(--shadow-md);
}

.play-text {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.voice-card-info {
  padding: 2rem 1.5rem;
}

.voice-card-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.voice-card-furigana {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.voice-card-origin {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== FEATURES MODERN ===== */
.features-modern {
  background: var(--off-white);
  padding: 140px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-card-modern {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 144, 226, 0.1);
}

.feature-icon-modern {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #7BB3F0 0%, #A8D0FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: var(--voice-shadow);
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.feature-description {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1rem;
}

/* ===== ACTOR SECTION MINIMAL ===== */
.actor-section-minimal {
  background: var(--white);
  padding: 100px 0;
}

.actor-minimal-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.actor-minimal-text {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.actor-visual-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  opacity: 0.8;
}

/* ===== NEWS MODERN ===== */
.news-modern {
  background: var(--off-white);
  padding: 140px 0;
}

.news-list-modern {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-item-modern {
  border-bottom: 1px solid var(--gray);
}

.news-item-modern:last-child {
  border-bottom: none;
}

.news-link-modern {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.news-link-modern:hover {
  background: rgba(74, 144, 226, 0.03);
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.news-arrow {
  color: var(--voice-primary);
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.news-link-modern:hover .news-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CTA MODERN ===== */
.cta-modern {
  background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
  padding: 140px 0;
  color: var(--white);
}

.cta-card-modern {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .actor-minimal-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .voice-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .features-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .news-link-modern {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   視認性修正パッチ
   --text-w50 / --text-w70 が暗い背景で読めない問題を解決
   ============================================================ */

/* フッター: 暗い背景での文字色を明るく */
.site-footer .footer-tagline,
.site-footer .footer-col-title,
.site-footer .footer-copy,
.site-footer .footer-bottom-link {
  color: rgba(255,255,255,0.5) !important;
}
.site-footer .footer-link {
  color: rgba(255,255,255,0.72) !important;
}
.site-footer .footer-link:hover {
  color: #7BB3F0 !important;
}

/* プロフィールヒーロー: 暗い背景での文字色を明るく */
.profile-hero .breadcrumb,
.profile-hero .breadcrumb a,
.profile-hero .profile-name-en,
.profile-hero .profile-meta-label {
  color: rgba(255,255,255,0.52) !important;
}

/* 声優カードのプレースホルダー: テキストの視認性向上 */
.voice-card-placeholder .placeholder-text,
.voice-card-modern .voice-card-placeholder .placeholder-text {
  color: #1E3A8A !important; /* 暗めのテキスト for better contrast on pink */
  font-weight: 700;
  text-shadow: none;
}
.voice-card-placeholder .placeholder-icon,
.voice-card-modern .voice-card-placeholder .placeholder-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* カード全体のコントラスト改善 */
.voice-card-placeholder {
  background: linear-gradient(135deg, #4A90E2 0%, #2563EB 100%) !important; /* 濃いめのピンクに */
  color: white !important;
}
.voice-card-modern .voice-card-placeholder {
  background: linear-gradient(135deg, #4A90E2 0%, #2563EB 100%) !important;
  color: white !important;
}
.voice-card-placeholder .placeholder-text,
.voice-card-modern .voice-card-placeholder .placeholder-text {
  color: white !important;
}

/* セクション見出しの視認性 */
.section-title,
.sec-title {
  color: var(--text-dark, #2D3748);
}

/* 暗い背景内の見出しは白を維持 */
.section-bg-dark .section-title,
.section-bg-dark .sec-title,
.nino-block .section-title,
.nino-block .sec-title {
  color: white !important;
}

/* ページヒーロー内の説明文 */
.page-hero-desc {
  color: rgba(255,255,255,0.78) !important;
}

/* ニノブロックのテキスト確保 */
.nino-block p {
  color: rgba(255,255,255,0.82);
}

/* ============================================================
   追加修正パッチ 2
   ============================================================ */

/* ─── ① フッター：暗い背景での文字を白に ─── */
.site-footer h4 {
  color: rgba(255,255,255,0.9) !important;
  font-size: 12px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px !important;
}
.site-footer ul li a {
  color: rgba(255,255,255,0.72) !important;
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer ul li a:hover {
  color: #7BB3F0 !important;
}
.site-footer .footer-desc,
.site-footer p {
  color: rgba(255,255,255,0.65) !important;
}
.site-footer .copyright,
.site-footer .footer-legal a,
.site-footer .footer-bottom-inner a {
  color: rgba(255,255,255,0.5) !important;
}
.site-footer .footer-bottom-inner a:hover {
  color: white !important;
}

/* ─── ② ページヒーローの大きい文字を白に強制 ─── */
/* header.phpの h1,h2,h3 { color:#2D3748 !important } を上書き */
.page-hero .page-hero-title,
.page-hero h1 {
  color: white !important;
}
.page-hero .page-hero-desc,
.page-hero > .container > .page-hero-inner > p {
  color: rgba(255,255,255,0.78) !important;
}

/* ─── ③ ヘッダー：ロゴを左端に寄せる ─── */
.site-header {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.site-header .header-inner {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.site-logo {
  margin-right: auto !important;
  padding-right: 32px !important; /* ロゴとナビの間に余白 */
  flex-shrink: 0;
}
/* ロゴ文字スタイル（logo-textスパン対応） */
.site-logo .logo-text {
  background: var(--vc-grad, linear-gradient(135deg, #7BB3F0, #A8D0FF));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-en, 'Poppins', sans-serif);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ─── ④ タレントカード名称の確実な表示 ─── */
.talent-card__name,
.talent-card__furigana,
.actor-talent-card__name,
.actor-talent-card__furigana {
  -webkit-text-fill-color: initial; /* gradient textの影響をリセット */
}
.talent-card__name,
.actor-talent-card__name {
  color: #1F2937 !important;
}
.talent-card__furigana,
.actor-talent-card__furigana {
  color: #6B7280 !important;
}

/* 声優カードの写真プレースホルダー：絵文字を中央表示（俳優カードと統一） */
.talent-card__photo-placeholder {
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  gap: 0 !important;
  font-size: 3.5rem !important;
}
.talent-placeholder-emoji {
  display: none !important;
}
.talent-placeholder-name {
  display: none !important;
}


/* ============================================================
   追加修正パッチ 3 — ロゴ / カリキュラムホバー / ニュース / 会社概要
   ============================================================ */

/* --- サイトロゴ画像 --- */
.site-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* --- カリキュラムアイテム ホバー強化（training page）--- */
.curriculum-item:hover {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(245,124,0,0.72) !important;
  box-shadow: 0 0 20px rgba(245,124,0,0.28), inset 0 0 1px rgba(245,124,0,0.5) !important;
  transform: translateY(-2px);
}
.curriculum-item {
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

/* --- ニュース フィルタータブバー --- */
.news-filter-bar {
  background: #f8f8fc;
  border-bottom: 1px solid var(--border-light, #eee);
  padding: 16px 0;
  position: sticky;
  top: var(--header-height, 72px);
  z-index: 90;
}
.news-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.news-cat-tab {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  background: white !important;
  border: 1.5px solid var(--border-light, #e5e5e5) !important;
  color: var(--text-dark, #2d3748) !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.news-cat-tab:hover {
  border-color: var(--vc-primary, #e97fa5) !important;
  color: var(--vc-primary, #e97fa5) !important;
}
.news-cat-tab.active {
  background: linear-gradient(135deg, #7BB3F0, #A8D0FF, #BFDBFE) !important;
  border-color: transparent !important;
  color: white !important;
}

/* --- ニュース コンパクトカードグリッド --- */
.news-compact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light, #eee);
}
.news-compact-card {
  border-bottom: 1px solid var(--border-light, #eee);
}
.news-compact-card__inner {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.2s;
}
.news-compact-card__inner:hover {
  background: #fdf4f8;
}
.news-compact-card__thumb {
  width: 100px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--vc-grad-sub, #f0f8ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-compact-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-thumb-icon {
  font-size: 28px;
}
.news-compact-card__body {
  min-width: 0;
}
.news-compact-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.news-compact-date {
  font-family: var(--font-en, monospace);
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
  letter-spacing: 0.05em;
}
.news-compact-cat {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 9999px;
  background: var(--vc-grad-sub, #f0f8ff);
  color: var(--vc-primary, #e97fa5);
  white-space: nowrap;
}
.news-compact-card__title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text-dark, #2d3748) !important;
  line-height: 1.5 !important;
  margin: 0 0 4px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-compact-card__excerpt {
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-compact-arrow {
  font-size: 18px;
  color: var(--vc-primary, #e97fa5);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.news-compact-card__inner:hover .news-compact-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ページネーション */
.news-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.news-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border-light, #eee);
  background: white !important;
  color: var(--text-dark, #2d3748) !important;
  text-decoration: none !important;
  transition: all 0.2s;
}
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
  background: linear-gradient(135deg, #7BB3F0, #A8D0FF) !important;
  border-color: transparent !important;
  color: white !important;
}

.no-posts-msg {
  text-align: center;
  color: var(--text-muted, #9ca3af);
  padding: 60px 0;
  font-size: 15px;
}

/* --- 会社概要テーブル拡張 --- */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.company-table th,
.company-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light, #eee);
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}
.company-table th {
  width: 200px;
  font-weight: 700;
  color: var(--text-dark, #2d3748);
  white-space: nowrap;
  background: #fafafa;
}
.company-table td {
  color: var(--text-body, #4a5568);
}
.company-table a {
  color: var(--vc-primary, #e97fa5) !important;
  text-decoration: underline !important;
}
.company-table tr:first-child th,
.company-table tr:first-child td { border-top: 1px solid var(--border-light, #eee); }

/* --- モバイル対応 --- */
@media (max-width: 640px) {
  .news-compact-card__inner {
    grid-template-columns: 80px 1fr;
  }
  .news-compact-arrow { display: none; }
  .news-compact-card__thumb { width: 80px; height: 58px; }
  .news-compact-card__title { white-space: normal; }
  .company-table th { width: 120px; font-size: 13px; padding: 14px 12px; }
  .company-table td { font-size: 13px; padding: 14px 12px; }
}


/* ============================================================
   追加修正パッチ 4 — 暗背景テキスト強制ホワイト / 声優カード / ボイスサンプル
   ============================================================ */

/* --- トップページ CTA「あなたの声で、世界を変えませんか」明るく --- */
.cta-modern h1,
.cta-modern h2,
.cta-modern h3,
.cta-modern .cta-title {
  color: white !important;
  -webkit-text-fill-color: white !important;
}
.cta-modern p,
.cta-modern .cta-description {
  color: rgba(255,255,255,0.88) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.88) !important;
}

/* --- About page 実績・受賞歴 テキスト明るく --- */
.award-card h1,
.award-card h2,
.award-card h3,
.award-card .award-title {
  color: white !important;
  -webkit-text-fill-color: white !important;
}
.award-card p,
.award-card .award-desc {
  color: rgba(255,255,255,0.78) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.78) !important;
}

/* --- 声優一覧カード: 名前を写真内から情報欄へ（俳優デザインに統一） --- */
/* placeholder内の名前テキストは非表示に (photo area only shows emoji) */
.talent-card__photo-placeholder {
  justify-content: center !important;
  padding-bottom: 0 !important;
}
.talent-placeholder-name {
  display: none !important;
}
/* 情報欄に名前を表示 */
.talent-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark, #1F2937) !important;
  -webkit-text-fill-color: var(--text-dark, #1F2937) !important;
  margin-bottom: 4px;
  line-height: 1.3;
}
.talent-card__info {
  display: block;
}

/* --- ボイスサンプル空欄プレースホルダー --- */
.voice-sample-player.voice-sample-empty {
  opacity: 0.6;
  background: rgba(255,255,255,0.04);
  border-style: dashed;
  cursor: default;
  pointer-events: none;
}
.vs-empty-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.vs-empty-bar {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- フッター 3カラム化（会社情報列削除後） --- */
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr !important;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ============================================================
   追加修正パッチ 5 — 声優カードプレースホルダー 旧パッチの完全上書き
   ============================================================ */
/* 古いパッチが flex-direction:column !important を設定していたため
   俳優カードと同じ row レイアウト（絵文字中央）に強制リセット */
.talent-card__photo-placeholder {
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  gap: 0 !important;
  font-size: 3.5rem !important;
}
/* spanが残っていても影響しないよう無効化 */
.talent-placeholder-emoji {
  flex: none !important;
  display: inline !important;
  font-size: inherit !important;
}


/* ============================================================
   ヘッダー確実修正パッチ — style.cssとのCSS競合解消
   style.css が .site-header に display:flex を設定しているため
   header-inner を確実にフレックスコンテナにして横並びレイアウトを保証
   ============================================================ */

/* site-headerはblockレイアウトで全幅を確保 */
.site-header {
  display: block !important;
}

/* header-innerが確実にflexコンテナとして横並びになるよう保証 */
.site-header .header-inner,
.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 80px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* ロゴを左端に固定、ナビを右に押し出す */
.site-logo {
  margin-right: auto !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* ナビリストの横並び保証 */
.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  list-style: none !important;
}

.nav-list {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-item {
  display: block !important;
  list-style: none !important;
}

/* nav-linkのスタイルをstyle.cssより優先して適用 */
.nav-link {
  display: flex !important;
  align-items: center !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  border-radius: 8px !important;
  transition: 0.15s ease !important;
  text-decoration: none !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* ハンバーガーボタン：モバイルのみ表示 */
.nav-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 8px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .site-nav {
    display: none !important;
  }
}

/* ============================================================
   GUTENBERG ブロックスタイル（amipro-entry-content 内）
   固定ページの本文エディターで挿入したブロックをデザインに合わせる
   ============================================================ */

.amipro-entry-content {
  padding: 60px 0;
}

/* ---- 基本テキスト ---- */
.amipro-entry-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 60px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light);
}
.amipro-entry-content h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--text-dark);
  margin: 40px 0 12px;
}
.amipro-entry-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 8px;
}
.amipro-entry-content p {
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}
.amipro-entry-content ul,
.amipro-entry-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--text-body);
}
.amipro-entry-content ul { list-style: disc; }
.amipro-entry-content ol { list-style: decimal; }
.amipro-entry-content li { margin-bottom: 6px; }

/* ---- 会社情報テーブル (.amipro-table) ---- */
.amipro-entry-content .amipro-table,
.amipro-entry-content .wp-block-table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 40px;
}
.amipro-entry-content .amipro-table table,
.amipro-entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.amipro-entry-content .amipro-table th,
.amipro-entry-content .wp-block-table th {
  width: 160px;
  padding: 18px 20px;
  background: var(--bg-light);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  vertical-align: top;
  white-space: nowrap;
}
.amipro-entry-content .amipro-table td,
.amipro-entry-content .wp-block-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-light);
  line-height: 1.8;
  vertical-align: top;
}
.amipro-entry-content .amipro-table tr:last-child th,
.amipro-entry-content .amipro-table tr:last-child td,
.amipro-entry-content .wp-block-table tr:last-child th,
.amipro-entry-content .wp-block-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .amipro-entry-content .amipro-table th,
  .amipro-entry-content .wp-block-table th {
    display: block; width: 100%; white-space: normal; border-bottom: none;
  }
  .amipro-entry-content .amipro-table td,
  .amipro-entry-content .wp-block-table td {
    display: block; width: 100%; padding-top: 0;
  }
}

/* ---- 画像 ---- */
.amipro-entry-content .wp-block-image { margin-bottom: 30px; }
.amipro-entry-content .wp-block-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.amipro-entry-content .wp-block-image figcaption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- 特徴カードグリッド (.amipro-feature-grid) ---- */
.amipro-entry-content .amipro-feature-grid.wp-block-columns {
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.amipro-entry-content .amipro-feature-card.wp-block-column {
  background: #fff;
  border: 1px solid var(--bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}
.amipro-entry-content .amipro-feature-card.wp-block-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74,144,226,0.15);
}
.amipro-entry-content .amipro-card-icon {
  font-size: 40px;
  margin: 0 0 12px;
  line-height: 1;
}
.amipro-entry-content .amipro-card-title {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
}
.amipro-entry-content .amipro-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 !important;
}

/* ---- カリキュラムグリッド (.amipro-curriculum-grid) ---- */
.amipro-entry-content .amipro-curriculum-grid.wp-block-columns {
  gap: 20px;
  margin: 20px 0;
}
.amipro-entry-content .amipro-curriculum-card.wp-block-column {
  background: #fff;
  border: 1px solid var(--bg-light);
  border-radius: 12px;
  padding: 24px 20px;
  min-width: 180px;
}

/* ---- 講師グリッド (.amipro-instructor-grid) ---- */
.amipro-entry-content .amipro-instructor-grid.wp-block-columns {
  gap: 24px;
  margin: 40px 0;
}
.amipro-entry-content .amipro-instructor-card.wp-block-column {
  text-align: center;
}
.amipro-entry-content .amipro-instructor-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--bg-light);
}
.amipro-entry-content .amipro-instructor-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin: 8px 0 4px !important;
  border: none !important;
  padding: 0 !important;
}
.amipro-entry-content .amipro-instructor-role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 !important;
}

/* ---- セクション見出し (.amipro-sec-label / .amipro-sec-title) ---- */
.amipro-entry-content .amipro-sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--vc-primary);
  text-transform: uppercase;
  margin: 0 0 8px !important;
}
.amipro-entry-content .amipro-sec-title {
  font-size: clamp(24px, 3.5vw, 36px) !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin: 0 0 16px !important;
  border: none !important;
  padding: 0 !important;
}
.amipro-entry-content .amipro-sec-subtitle {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px !important;
}

/* ---- 選考ステップ (.amipro-steps) ---- */
.amipro-entry-content .amipro-steps {
  max-width: 800px;
  margin: 40px auto;
}
.amipro-entry-content .amipro-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--bg-light);
  align-items: flex-start;
}
.amipro-entry-content .amipro-step--last { border-bottom: none; }
.amipro-entry-content .amipro-step-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--vc-primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  margin: 0 !important;
}
.amipro-entry-content .amipro-step-body { flex: 1; }
.amipro-entry-content .amipro-step-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px !important;
}
.amipro-entry-content .amipro-step-body p {
  color: var(--text-body);
  font-size: 14px;
  margin: 0 !important;
  line-height: 1.8;
}

/* ---- 2列レイアウト (.amipro-2col) ---- */
.amipro-entry-content .amipro-2col.wp-block-columns {
  gap: 60px;
  align-items: center;
  margin: 40px 0;
}
.amipro-entry-content .amipro-2col .wp-block-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ---- WP Buttons block ---- */
.amipro-entry-content .wp-block-buttons {
  margin: 24px 0;
}
.amipro-entry-content .wp-block-button__link {
  background: var(--vc-primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}
.amipro-entry-content .wp-block-button__link:hover { opacity: 0.85; }

/* ---- WP Separator ---- */
.amipro-entry-content .wp-block-separator {
  border: none;
  border-top: 2px solid var(--bg-light);
  margin: 48px auto;
}

/* ---- WP Quote ---- */
.amipro-entry-content blockquote,
.amipro-entry-content .wp-block-quote {
  border-left: 4px solid var(--vc-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-off);
  border-radius: 0 8px 8px 0;
}

