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

/* ══════════════════════════════════════════════════════
   SEAGREEN — DESIGN SYSTEM
══════════════════════════════════════════════════════ */
:root {
  --bg:         #090909;
  --bg-2:       #111111;
  --bg-3:       #1a1a1a;
  --bg-card:    #141414;
  --text:       #f0f0f0;
  --text-sub:   rgba(255,255,255,0.78);   /* 大幅に明るく */
  --text-muted: rgba(255,255,255,0.52);
  --brand:      #00ac97;
  --brand-dim:  rgba(0,172,151,0.15);
  --brand-glow: 0 0 40px rgba(0,172,151,0.25);
  --gold:       #c9a84c;
  --gold-dim:   rgba(201,168,76,0.12);
  --border:     rgba(255,255,255,0.12);   /* 少し明るく */
  --border-brand: rgba(0,172,151,0.45);
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography ────────────────────────────────────── */
.serif { font-family: 'Noto Serif JP', serif; }
.cormorant { font-family: 'Cormorant Garamond', serif; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--brand);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; letter-spacing: 0.18em;
  color: #fff;
}
.logo-text span { color: var(--brand); }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  position: relative;
}

/* ── Talents dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: '▾'; font-size: 9px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--border); min-width: 160px; z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 12px 20px;
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.82); border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--brand); background: rgba(0,172,151,0.07); }
.site-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 11px !important; letter-spacing: 0.18em !important;
  border: 1px solid var(--brand) !important;
  color: var(--brand) !important;
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand) !important; color: #000 !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--text); transition: all 0.3s; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding-top: 72px;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--brand); text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.hero-label::before {
  content: ''; width: 40px; height: 1px; background: var(--brand);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600; line-height: 1.25;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal; color: var(--brand);
  display: block; margin-top: 4px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300; letter-spacing: 0.15em;
  color: var(--text-sub); margin-bottom: 48px;
}

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

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand); color: #000;
  padding: 15px 32px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer; border: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover {
  background: #00c4ac;
  box-shadow: var(--brand-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,0.45); color: rgba(255,255,255,0.9);
  padding: 15px 32px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--brand); color: #fff;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 15px 32px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold); color: #000; }

/* Hero visual — stat grid */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.stat-card {
  background: var(--bg-card);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border-brand); }
.stat-card:first-child {
  grid-column: 1 / -1;
  background: transparent;
  border-color: var(--border-brand);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; line-height: 1;
  color: var(--brand); margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--text-sub); text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.25em; color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ══════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════ */
section { padding: 120px 0; }
.section-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}

.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brand); }

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600; letter-spacing: 0.04em; line-height: 1.3;
  color: #fff;
  margin-bottom: 64px;
}

.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--border); padding-bottom: 32px;
}
.section-header-row .section-title { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   NEWS
══════════════════════════════════════════════════════ */
.news-section { background: var(--bg); }

.news-carousel {
  display: flex; gap: 1px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  margin: 0 -40px; padding: 0 40px;
}
.news-carousel::-webkit-scrollbar { display: none; }

.news-card {
  flex: 0 0 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px; cursor: default;
  transition: border-color 0.3s;
}
.news-card:hover { border-color: var(--border-brand); }

.news-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.news-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid var(--brand); color: var(--brand);
}
.news-date { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }

.news-title {
  font-size: 14px; line-height: 1.7; color: var(--text);
  margin-bottom: 10px;
}
.news-talents { font-size: 12px; color: var(--brand); }

.news-carousel-outer {
  position: relative;
  padding: 0 60px;   /* ボタン分の余白 */
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: rgba(255,255,255,0.85);
  cursor: pointer; font-size: 18px; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { border-color: var(--brand); color: var(--brand); background: rgba(0,172,151,0.1); }
.carousel-btn-left  { left:  0; }
.carousel-btn-right { right: 0; }

@media (max-width:768px) {
  .news-carousel-outer { padding: 0 44px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 14px; }
}

/* ══════════════════════════════════════════════════════
   TALENT GRID — LIST PAGES
══════════════════════════════════════════════════════ */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
}
.talent-grid--sm {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
}

.talent-card {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--bg-card);
  display: block; cursor: pointer;
}
.talent-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.talent-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

/* Hover overlay */
.talent-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 45%,
    transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s ease;
}
.talent-card:hover .talent-overlay { opacity: 1; transform: translateY(0); }

/* Always-visible bottom strip */
.talent-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 40px 20px 16px;
  transition: opacity 0.3s;
}
.talent-card:hover .talent-footer { opacity: 0; }

.talent-name-jp {
  font-size: 15px; font-weight: 700; color: #fff;
  letter-spacing: 0.04em; margin-bottom: 2px;
}
.talent-name-kana {
  font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
}
.talent-tag {
  display: inline-block; margin-top: 6px;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--brand); color: var(--brand);
  padding: 2px 8px;
}

/* Overlay content */
.overlay-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; font-weight: 600; color: #fff;
  margin-bottom: 4px;
}
.overlay-kana { font-size: 11px; color: var(--text-sub); letter-spacing: 0.1em; margin-bottom: 12px; }
.overlay-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.overlay-tag {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--brand); color: var(--brand); padding: 2px 8px;
}
.overlay-news {
  font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px;
  margin-top: 4px;
}
.overlay-link {
  display: flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brand);
}
.overlay-link::after { content: '→'; }

/* ══════════════════════════════════════════════════════
   PAGE HEADERS (talent list, about, etc.)
══════════════════════════════════════════════════════ */
.page-hero {
  padding-top: 72px;
  min-height: 40vh;
  display: flex; align-items: flex-end;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,172,151,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 60px 40px;
  width: 100%;
}
.page-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brand); }
.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════
   TALENT PROFILE PAGE
══════════════════════════════════════════════════════ */
.profile-wrap { padding-top: 72px; min-height: 100vh; }

.profile-hero {
  background: var(--bg);
  padding: 60px 0 0;
  border-bottom: 1px solid var(--border);
}
.profile-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 64px; align-items: end;
}

.profile-photos { display: flex; gap: 8px; align-items: flex-end; }
.photo-main {
  width: 240px; aspect-ratio: 2/3;
  overflow: hidden; background: var(--bg-3);
}
.photo-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.5s;
}
.photo-main:hover img { transform: scale(1.04); }
.photo-sub {
  width: 100px; aspect-ratio: 2/3;
  overflow: hidden; background: var(--bg-3);
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
}
.photo-sub:hover { opacity: 1; }
.photo-sub img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}

.profile-info { padding-bottom: 56px; }
.profile-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.profile-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px; border: 1px solid var(--brand); color: var(--brand);
}

.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 600;
  letter-spacing: 0.06em; line-height: 1.2; margin-bottom: 8px;
}
.profile-kana { font-size: 14px; color: var(--text-sub); letter-spacing: 0.18em; margin-bottom: 4px; }
.profile-romaji {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 0.25em; color: var(--brand);
  text-transform: uppercase; margin-bottom: 40px;
}

.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Profile body */
.profile-body {
  max-width: 1280px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 360px; gap: 80px;
  align-items: start;
}

.profile-section-label {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.profile-section-label::before { content: ''; width: 20px; height: 1px; background: var(--brand); }

.profile-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 8px;
}
.profile-divider {
  width: 24px; height: 1px; background: var(--brand); margin-bottom: 32px;
}

/* Profile table */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid var(--border); }
.profile-table tr:first-child { border-top: 1px solid var(--border); }
.profile-table th {
  width: 120px; padding: 14px 12px 14px 0;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-sub); text-align: left; vertical-align: top; white-space: nowrap;
}
.profile-table td { padding: 14px 0; font-size: 14px; line-height: 1.7; }

/* Size chips */
.size-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chip {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg-3); border: 1px solid var(--border);
  padding: 8px 14px; min-width: 56px;
  transition: border-color 0.2s;
}
.size-chip:hover { border-color: var(--border-brand); }
.size-chip-label { font-size: 9px; letter-spacing: 0.08em; color: var(--text-sub); margin-bottom: 4px; }
.size-chip-val { font-size: 14px; font-weight: 500; color: var(--brand); }

/* Career */
.career-section { margin-top: 56px; }
.career-list { display: flex; flex-direction: column; gap: 0; }
.career-item {
  padding: 12px 0 12px 20px;
  border-left: 1px solid var(--border-brand);
  font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.75);
  position: relative; margin-bottom: 2px;
}
.career-item::before {
  content: ''; position: absolute; left: -3px; top: 18px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
}
.career-item .year { color: var(--brand); font-weight: 500; font-size: 11px; margin-right: 6px; }

/* Profile news sidebar */
.profile-sidebar {}
.profile-news-item {
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.profile-news-item:first-child { border-top: 1px solid var(--border); }
.news-item-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.news-item-tag {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--brand); color: var(--brand); padding: 2px 8px;
}
.news-item-date { font-size: 11px; color: var(--text-muted); }
.news-item-text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.no-news { font-size: 13px; color: var(--text-muted); padding: 20px 0; }

/* Not found */
.tp-notfound {
  max-width: 480px; margin: 160px auto 80px;
  text-align: center; padding: 0 24px;
}
.tp-notfound h1 { font-size: 22px; margin-bottom: 16px; }
.tp-notfound p { color: var(--text-sub); font-size: 14px; margin-bottom: 28px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 999;
  align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }

/* ══════════════════════════════════════════════════════
   AUDITION / RECRUIT CTA BAND
══════════════════════════════════════════════════════ */
.audition-band {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.audition-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,172,151,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.audition-band .section-eyebrow { justify-content: center; }
.audition-band .section-eyebrow::before { display: none; }
.audition-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 600;
  letter-spacing: 0.04em; line-height: 1.35;
  margin-bottom: 24px;
}
.audition-desc {
  font-size: 15px; color: var(--text-sub); line-height: 2;
  max-width: 560px; margin: 0 auto 48px;
}
.audition-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   COMPANY SNAPSHOT (on index)
══════════════════════════════════════════════════════ */
.company-band { background: var(--bg); }
.company-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.company-text .section-title { margin-bottom: 24px; }
.company-desc {
  font-size: 15px; color: var(--text-sub); line-height: 2;
  margin-bottom: 40px;
}
.company-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cstat {
  padding: 28px; border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cstat:hover { border-color: var(--border-brand); }
.cstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--brand); line-height: 1;
  margin-bottom: 6px;
}
.cstat-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-sub); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-table-wrap { max-width: 680px; }
.about-table { width: 100%; border-collapse: collapse; }
.about-table tr { border-bottom: 1px solid var(--border); }
.about-table tr:first-child { border-top: 1px solid var(--border); }
.about-table th {
  width: 140px; padding: 18px 16px 18px 0;
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-sub); text-align: left; vertical-align: top; white-space: nowrap;
}
.about-table td { padding: 18px 0; font-size: 14px; line-height: 1.8; }

.business-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; margin-top: 32px;
}
.business-item {
  background: var(--bg-card); padding: 24px;
  border: 1px solid var(--border);
  font-size: 14px; line-height: 1.7; color: var(--text-sub);
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.2s;
}
.business-item:hover { border-color: var(--border-brand); }
.business-item::before {
  content: ''; width: 1px; height: 100%; background: var(--brand);
  flex-shrink: 0; min-height: 20px;
}

.about-map iframe { width: 100%; height: 400px; border: 0; filter: invert(0.9) hue-rotate(180deg); }

/* ══════════════════════════════════════════════════════
   RECRUIT PAGE
══════════════════════════════════════════════════════ */
.recruit-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
}
.recruit-card {
  background: var(--bg-card); padding: 40px 32px;
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.recruit-card:hover { border-color: var(--border-brand); }
.recruit-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 24px; color: var(--brand);
}
.recruit-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.recruit-desc { font-size: 14px; color: var(--text-sub); line-height: 1.8; }
.recruit-genres { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.genre-tag {
  font-size: 9px; letter-spacing: 0.1em; padding: 3px 10px;
  border: 1px solid var(--border); color: var(--text-sub);
}

.recruit-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.recruit-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: var(--brand);
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.contact-item { padding: 24px; border: 1px solid var(--border); margin-bottom: 1px; }
.contact-item:hover { border-color: var(--border-brand); }
.contact-item-label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 8px;
}
.contact-item-value { font-size: 20px; font-weight: 500; }
.contact-item-sub { font-size: 12px; color: var(--text-sub); margin-top: 4px; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-sub); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 16px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font-size: 14px; font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-field select option { background: var(--bg-2); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 24px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: #000; border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
  padding-bottom: 64px; border-bottom: 1px solid var(--border);
}
.footer-brand-text {
  font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.8; margin-top: 20px;
}
.footer-col-title {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li { font-size: 13px; color: rgba(255,255,255,0.62); }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 40px; display: flex; align-items: center;
  justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.footer-sns { display: flex; gap: 12px; }
.sns-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-muted); transition: all 0.2s;
}
.sns-link:hover { border-color: var(--brand); color: var(--brand); }

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.text-brand { color: var(--brand); }
.text-gold  { color: var(--gold); }
.text-sub   { color: var(--text-sub); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .company-grid { grid-template-columns: 1fr; gap: 48px; }
  .profile-body { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── Gender Tab Bar ────────────────────────── */
.gender-tab-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 200;
}

.gender-tabs {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.gender-tab {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.gender-tab:hover {
  color: rgba(255,255,255,0.8);
}

.gender-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (max-width: 768px) {
  .gender-tabs { padding: 0 16px; }
  .gender-tab { padding: 16px 24px; font-size: 12px; flex: 1; justify-content: center; }
}

/* ── Works Banner Grid ──────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.works-banner {
  display: block;
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.works-banner:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  border-color: var(--border-brand);
}

.works-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .2s ease;
}

.works-banner:hover img { filter: brightness(1.1); }

.works-banner-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  text-align: center;
}

.works-ch {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.works-title-jp {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .header-inner { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 80px 24px 40px; }
  .page-hero-inner { padding: 40px 24px; }
  .site-nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(9,9,9,0.98); backdrop-filter: blur(12px);
    padding: 32px 24px; flex-direction: column; align-items: flex-start;
    gap: 28px; border-bottom: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .talent-grid--sm { grid-template-columns: repeat(2, 1fr); }
  .profile-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .news-carousel { margin: 0 -24px; padding: 0 24px; }
}

@media (max-width: 480px) {
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 36px; }
}
