/* ===========================
   WHEELS UP, INC. — Corporate Site
   Design A: Multi-color (Figma-inspired)
   Philosophy: Airbnb + Notion + Figma
   =========================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Base palette - Monotone + single coral accent */
  --bg: #FAFAF7;
  --bg-soft: #F5F3EE;
  --bg-warm: #F0EEE8;
  --text: #1A1A1A;
  --text-sub: #555;
  --text-muted: #999;
  --text-faint: #BBB;
  --border: #E8E6E0;
  --border-strong: #D6D3CC;
  --bg-dark: #0F0F0F;

  /* Single accent: Coral (used sparingly) */
  --c-coral: #FF6B6B;
  --c-coral-soft: #FFA8A8;
  --c-coral-pale: rgba(255,107,107,0.08);

  /* Legacy aliases (all route to monotone variants) */
  --c-mustard: var(--text);
  --c-mustard-soft: var(--text-muted);
  --c-mustard-pale: var(--bg-soft);

  --c-mint: var(--text);
  --c-mint-soft: var(--text-muted);
  --c-mint-pale: var(--bg-soft);

  --c-blue: var(--text);
  --c-blue-soft: var(--text-muted);
  --c-blue-pale: var(--bg-soft);

  --c-purple: var(--text);
  --c-purple-soft: var(--text-muted);
  --c-purple-pale: var(--bg-soft);

  /* Layout */
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-hover: 0 10px 28px rgba(0,0,0,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
  --font-en: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.75; font-size: 15px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ===========================
   SECTION HEADER (共通)
   =========================== */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
}
.section-header--center {
  justify-content: center;
  text-align: center;
}
.section-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.section-title {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}

.section-lead {
  font-size: 14px;
  color: var(--text-sub);
  margin-top: -24px;
  margin-bottom: 44px;
  line-height: 1.85;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 22px; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { font-size: 13px; font-weight: 500; color: var(--text-sub); transition: color 0.25s var(--ease); }
.header-nav a:hover { color: var(--text); }
.btn-nav {
  background: var(--text); color: #fff !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: 12px !important; font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-nav:hover { background: #000; transform: translateY(-1px); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 18px; position: relative; }
.menu-toggle span { display: block; width: 100%; height: 1.5px; background: var(--text); position: absolute; left: 0; transition: 0.3s var(--ease); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }

/* ===========================
   HERO — Container-width visual (Airbnb Careers / LINE Yahoo Recruit)
   =========================== */
.hero {
  padding: 120px 32px 48px;
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 21/9;
  min-height: 420px;
  max-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Background photo slideshow */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideFade 35s infinite;
  /* subtle Ken Burns zoom */
  transform: scale(1.06);
}
/* 5 slides, 35秒サイクル (7秒ずつ表示 + fade重複) */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -7s; }
.hero-slide:nth-child(3) { animation-delay: -14s; }
.hero-slide:nth-child(4) { animation-delay: -21s; }
.hero-slide:nth-child(5) { animation-delay: -28s; }

@keyframes heroSlideFade {
  0%  { opacity: 0; transform: scale(1.1); }
  3%  { opacity: 1; }
  20% { opacity: 1; transform: scale(1.03); }
  23% { opacity: 0; }
  100% { opacity: 0; }
}

/* Dark overlay for text readability */
.hero-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.55) 100%);
}

.hero-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.hero-brand {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.hero-message {
  font-size: clamp(28px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 48px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero-scroll {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding-bottom: 22px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.hero-scroll::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.5);
  transform: translateX(-50%);
  transition: background 0.25s var(--ease);
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll:hover::after { background: #fff; }

@keyframes heroScrollPulse {
  0%, 100% { transform: translateX(-50%) scaleY(1); opacity: 0.5; }
  50%      { transform: translateX(-50%) scaleY(1.4); opacity: 1; }
}

/* 動きを減らすユーザー設定 */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation-duration: 0s; opacity: 1; }
  .hero-slide:not(:first-child) { display: none; }
  .hero-scroll::after { animation: none; }
}

/* ===========================
   ABOUT
   =========================== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative;
  padding-left: 20px;
}
.about-lead::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 4px;
  background: var(--text);
  border-radius: 2px;
}

/* Graffiti-style decorations on About */
.about-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.about-underline {
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
  color: var(--c-coral);
  pointer-events: none;
}
.about-doodle {
  position: absolute;
  pointer-events: none;
  color: var(--c-coral);
  opacity: 0.75;
}
.about-doodle--arrow {
  width: 52px; height: 36px;
  top: -24px; right: -14px;
  transform: rotate(-8deg);
}
.about-doodle--star {
  width: 20px; height: 20px;
  bottom: -32px; right: 30px;
  color: var(--text);
  opacity: 0.6;
  animation: doodleSpin 12s linear infinite;
}
@keyframes doodleSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .about-doodle--arrow { display: none; }
  .about-doodle--star { bottom: -28px; right: 8px; }
}
.about-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 18px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ===========================
   BUSINESSES
   =========================== */
.businesses { padding: 120px 0; background: var(--bg-soft); }
.businesses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.business-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.business-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
  transition: height 0.3s var(--ease);
}
.business-card--coral::before { background: var(--text); }
.business-card--mustard::before { background: var(--text); }
.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--text);
}
.business-card:hover::before { height: 6px; }

.business-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.business-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.business-card:hover .business-img img { transform: scale(1.04); }

/* Hover overlay on business card image */
.business-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(2px);
  z-index: 2;
}
.business-card:hover .business-img-overlay { opacity: 1; }
.business-overlay-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.business-overlay-arrow {
  font-size: 18px;
  transition: transform 0.3s var(--ease);
}
.business-card:hover .business-overlay-arrow { transform: translateX(6px); }

/* Collage-style business image (映像制作カード用) — 受託実績3社を並列表示 */
.business-img--collage {
  aspect-ratio: 16/9;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2px;
  background: var(--bg-soft);
  padding: 0;
}
.business-img--collage .collage-cell {
  overflow: hidden;
  background: var(--bg-soft);
}
.business-img--collage .collage-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.9);
}
.business-card:hover .business-img--collage .collage-cell img {
  transform: scale(1.06);
  filter: saturate(1);
}

/* Collage shade overlay (always visible, dark translucent) */
.business-img--collage .collage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
/* Film icon centered on top of shade */
.business-img--collage .collage-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.business-img--collage .collage-icon svg {
  width: 100%; height: 100%;
}
/* On hover, icon slightly scales and shade fades out */
.business-card:hover .business-img--collage .collage-shade { opacity: 0.5; }
.business-card:hover .business-img--collage .collage-icon {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 0;
}

/* Logo-style business image (人材紹介カード用) — ガウディキャリアブランドネイビー背景 */
.business-img--logo {
  aspect-ratio: 16/9;
  background: #18264E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
}
.business-img--logo img {
  max-width: 72%;
  max-height: 64%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.business-card:hover .business-img--logo img { transform: scale(1.06); }
.business-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.business-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.business-card--coral .business-tag,
.business-card--mustard .business-tag {
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.business-body h3 {
  font-size: 23px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}
.business-body > p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
}
.business-meta {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.business-meta-item { flex: 1; }
.business-meta-value {
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.business-meta-value small { font-size: 13px; font-weight: 500; }
.business-card--coral .business-meta-value { color: var(--text); }
.business-meta-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.55;
}
.business-clients {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.business-clients strong {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-sub);
  font-weight: 700;
  margin-bottom: 8px;
}
.business-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--text);
  border-radius: 8px;
  margin-bottom: 20px;
}
.business-note strong { color: var(--text); font-weight: 700; }
.business-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-top: auto;
  transition: transform 0.25s var(--ease);
}
.business-card:hover .business-link { transform: translateX(4px); }

/* ===========================
   OUR VALUE
   =========================== */
.value { padding: 120px 0; }
.value-mission {
  max-width: 780px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
}
.value-mission-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}
.value-mission-statement {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--text);
  transition: width 0.35s var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--text);
}
.value-card:hover::before { width: 100%; }

.value-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
}

.value-card h3 {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.value-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 16px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ===========================
   CLIENTS
   =========================== */
.clients { padding: 120px 0; background: var(--bg-soft); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client-logo {
  background: #fff;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  transition: background 0.3s var(--ease);
}
.client-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ===========================
   COMPANY
   =========================== */
.company { padding: 120px 0; }
.company-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: start; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td {
  padding: 18px 0; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: top;
  text-align: left;
}
.company-table th { width: 140px; font-weight: 600; color: var(--text-sub); font-size: 13px; }
.company-table td { color: var(--text); line-height: 1.75; }
.company-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.company-photo::before { display: none; }
.company-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   OUR DNA (Daft Punk)
   =========================== */
.dna {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.dna-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.dna-intro {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}
.dna-intro strong {
  font-weight: 700;
  color: var(--text);
}
.dna-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  margin-bottom: 36px;
}
.dna-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Music card (DNA section, replaces video) */
.dna-track {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 44px;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  margin-bottom: 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Vinyl disc illustration */
.dna-track-vinyl {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    #2A2A2A 0%,
    #0F0F0F 30%,
    #2A2A2A 31%,
    #0F0F0F 45%,
    #2A2A2A 46%,
    #0F0F0F 60%,
    #2A2A2A 61%,
    #0F0F0F 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 8px 24px rgba(0,0,0,0.5);
  animation: vinylSpin 20s linear infinite;
}
.dna-track-vinyl-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: inset 0 0 0 4px #0F0F0F;
}
.dna-track-vinyl-center::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0F0F0F;
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dna-track-info {
  color: #fff;
}
.dna-track-album {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 10px;
}
.dna-track-title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.dna-track-artist {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.dna-track-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dna-track-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff !important;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.dna-track-link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.dna-track-link svg { flex-shrink: 0; }

/* Responsive */
@media (max-width: 768px) {
  .dna-track {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    text-align: center;
  }
  .dna-track-vinyl {
    width: 160px; height: 160px;
    margin: 0 auto;
  }
  .dna-track-vinyl-center {
    width: 46px; height: 46px;
  }
  .dna-track-title { font-size: 22px; }
  .dna-track-links { justify-content: center; }
}
.dna-caption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.95;
  font-style: italic;
}

/* ===========================
   CONTACT
   =========================== */
.contact { padding: 120px 0 140px; }
.contact-inner {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 84px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-inner::before { display: none; }
.contact-inner::after { display: none; }
.contact-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 22px;
  position: relative;
}
.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 22px;
  position: relative;
  letter-spacing: 0.02em;
}
.contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.95;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}
.contact-mail {
  display: inline-block;
  background: #fff;
  color: var(--bg-dark) !important;
  padding: 18px 44px;
  border-radius: 10px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.contact-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer { padding: 56px 0 40px; background: var(--bg-dark); }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; text-align: center; }
.footer-logo { height: 22px; margin: 0 auto 28px; opacity: 0.75; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color 0.25s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }

/* ===========================
   RESPONSIVE
   =========================== */
.header-nav.is-open {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: 64px; left: 0; right: 0;
  height: calc(100vh - 64px);
  height: calc(100dvh - 64px); /* iOS動的URLバー対応 */
  background: var(--bg);         /* 完全不透明（Heroが透けない） */
  padding: 24px 24px 40px;
  gap: 0;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: menuSlide 0.25s var(--ease);
}
.header-nav.is-open a {
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-align: left;
}
/* 最後のリンク（お問い合わせCTA）はボタン化、borderなし */
.header-nav.is-open .btn-nav {
  margin-top: 24px;
  text-align: center;
  padding: 14px;
  border-bottom: none;
  color: #fff !important;
  border-radius: 8px;
}
/* メニュー展開中は背景スクロールをロック */
body.menu-open { overflow: hidden; }
.menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .value-mission-statement { font-size: 34px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-nav { display: none; }
  .menu-toggle { display: block; }

  .hero { padding: 88px 16px 40px; }
  .hero-visual { border-radius: 16px; aspect-ratio: 5/6; min-height: 460px; max-height: none; }
  .hero-center { padding: 32px 24px; }
  .hero-brand { margin-bottom: 24px; font-size: 11px; }
  .hero-sub { margin-bottom: 32px; }

  .about, .businesses, .value, .clients, .company, .dna, .contact { padding: 72px 0; }
  .about-grid, .company-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-lead { font-size: 20px; }
  .about-photo, .company-photo { aspect-ratio: 4/3; max-height: 340px; }

  .businesses-grid { grid-template-columns: 1fr; gap: 20px; }
  .business-body { padding: 24px; }
  .business-body h3 { font-size: 20px; }

  .value-mission { margin-bottom: 48px; }
  .value-mission-statement { font-size: 26px; }
  .value-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 28px 24px; }

  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logo { padding: 20px 14px; }
  .client-logo img { max-height: 44px; }

  .dna { padding: 80px 0; }
  .dna-intro { font-size: 13px; margin-bottom: 32px; }

  .contact { padding: 72px 0 80px; }
  .contact-inner { padding: 56px 28px; }
  .contact-title { font-size: 22px; }
  .contact-text { font-size: 13px; }
  .contact-mail { padding: 15px 32px; font-size: 14px; }

  .footer-links { gap: 16px; }

  .section-header { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .hero { min-height: 88vh; padding-top: 90px; }
  .hero-brand { margin-bottom: 28px; }
  .hero-divider-bar:nth-child(1) { width: 24px; }
  .hero-divider-bar:nth-child(2) { width: 36px; }
  .hero-divider-bar:nth-child(3) { width: 20px; }
  .hero-divider-bar:nth-child(4) { width: 30px; }
  .hero-divider-bar:nth-child(5) { width: 18px; }
  .about-lead { font-size: 18px; }
  .value-mission-statement { font-size: 22px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo img { max-height: 40px; }
  .company-table th { width: 100px; font-size: 12px; }
  .company-table td { font-size: 13px; }
  .contact-inner { padding: 44px 20px; border-radius: var(--radius); }
  .contact-title { font-size: 20px; }
}

/* ===========================
   CREATIVE (Bento Grid)
   =========================== */
.creative { padding: 120px 0; position: relative; }

/* Bento Grid Layout
   12カラム × 6行 の CSS Grid で有機的に配置 */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}

/* カード配置（12カラム / 6行に振り分け） */
.bento-a { grid-column: 1 / 8; grid-row: 1 / 4; }    /* 大・住友林業 */
.bento-b { grid-column: 8 / 13; grid-row: 1 / 3; }   /* 小・Podcast */
.bento-c { grid-column: 8 / 13; grid-row: 3 / 4; }   /* 小・TikTok */
.bento-d { grid-column: 1 / 5; grid-row: 4 / 6; }    /* 中・セキスイ */
.bento-e { grid-column: 5 / 9; grid-row: 4 / 6; }    /* 中・西部ガス */
.bento-f { grid-column: 9 / 13; grid-row: 4 / 5; }   /* 小・ガウディキャリア研究所 */
.bento-h { grid-column: 9 / 13; grid-row: 5 / 6; }   /* 小・インフルエンサー */
.bento-g { grid-column: 1 / 13; grid-row: 6 / 7; }   /* 横長・LEGO */

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  display: block;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Image (default + hover layer) */
.bento-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.bento-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.bento-img-default { opacity: 1; }
.bento-img-hover { opacity: 0; }
.bento-card:hover .bento-img-default { opacity: 0; transform: scale(1.03); }
.bento-card:hover .bento-img-hover { opacity: 1; transform: scale(1.03); }

/* Body (visible by default, hides on hover) */
.bento-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}
.bento-card:hover .bento-body { opacity: 0; }

.bento-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.bento-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.bento-a .bento-body h3 { font-size: 22px; }
.bento-g .bento-body h3 { font-size: 22px; }

/* Overlay (hover時にスライドアップ) */
.bento-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: rgba(17,17,17,0.92);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 3;
}
.bento-card:hover .bento-overlay {
  opacity: 1;
  transform: translateY(0);
}
.bento-overlay-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.bento-overlay-number {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}
.bento-a .bento-overlay-number { font-size: 52px; }
.bento-overlay p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* Kind-based accent (同色、種別ラベルだけ違う表記) */
.bento-card--kind-work .bento-tag,
.bento-card--kind-owned .bento-tag { color: rgba(255,255,255,0.85); }

/* H: Text-only card (インフルエンサー・パートナーシップ) */
.bento-card--text {
  background: var(--bg-dark);
  color: #fff;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.bento-text-inner {
  position: relative;
  z-index: 1;
}
.bento-card--text .bento-tag {
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: block;
}
.bento-big-number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.bento-big-num-value {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.bento-big-num-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.bento-card--text p {
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* Responsive: Bento → 簡素化 */
@media (max-width: 1024px) {
  .bento-grid { grid-auto-rows: 130px; gap: 14px; }
  .bento-overlay { padding: 20px; }
  .bento-overlay p { font-size: 12px; }
}

@media (max-width: 768px) {
  .creative { padding: 72px 0; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  /* モバイルは全カード等幅の2列グリッドに */
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f, .bento-h {
    grid-column: auto;
    grid-row: auto;
  }
  .bento-a { grid-column: span 2; grid-row: span 2; }  /* 住友林業だけ大きく */
  .bento-g { grid-column: span 2; grid-row: auto; }   /* LEGO横長キープ */
  .bento-body { padding: 14px 16px; }
  .bento-body h3 { font-size: 14px; }
  .bento-a .bento-body h3 { font-size: 18px; }
  .bento-g .bento-body h3 { font-size: 16px; }
  .bento-overlay { padding: 16px; }
  .bento-overlay-number { font-size: 32px; }
  .bento-a .bento-overlay-number { font-size: 38px; }
  .bento-overlay p { font-size: 11.5px; line-height: 1.7; }
  .bento-card--text { padding: 18px 20px; }
  .bento-big-num-value { font-size: 34px; }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .bento-a, .bento-g { grid-column: auto; grid-row: auto; }
  .bento-a { grid-row: span 2; }
}

/* Count-up animation helper */
.count-animated { transition: none; }

/* ===========================
   CREATIVE MARQUEE (2-row infinite scroll)
   =========================== */
.creative .marquee-row {
  overflow: hidden;
  margin-top: 20px;
  /* マスク: 両端をフェードアウトさせてエッジを柔らかく */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.creative .marquee-row:first-of-type { margin-top: 48px; }

.creative .marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.creative .marquee-row--ltr .marquee-track {
  animation: marqueeScrollLtr 55s linear infinite;
}
.creative .marquee-row--rtl .marquee-track {
  animation: marqueeScrollRtl 60s linear infinite;
}

@keyframes marqueeScrollLtr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes marqueeScrollRtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ホバーで一時停止（読みやすさのため） */
.creative .marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

/* Marquee card (全カード同サイズ) */
.marquee-card {
  flex: 0 0 auto;
  width: 320px;
  height: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.marquee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--text);
}

.marquee-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.marquee-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.marquee-card:hover .marquee-card-img img { transform: scale(1.05); }

.marquee-card-body {
  padding: 12px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.marquee-card-tag {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.marquee-card-body p {
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Influencer card: 2-avatar + 4+ badge */
.marquee-card-img--influencer {
  position: relative;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.marquee-card-img--influencer img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.influencer-more {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive: mobile */
@media (max-width: 768px) {
  .creative .marquee-row:first-of-type { margin-top: 32px; }
  .creative .marquee-track { gap: 14px; }
  .marquee-card { width: 260px; height: 210px; }
  .marquee-card-body { padding: 10px 14px 12px; }
  .marquee-card-body h3 { font-size: 13px; }
  .marquee-card-body p { font-size: 11px; }
  .marquee-card-img--influencer img { width: 60px; height: 60px; }
  .influencer-more { width: 40px; height: 40px; font-size: 13px; }
}

/* 動きを減らすユーザー設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .creative .marquee-row--ltr .marquee-track,
  .creative .marquee-row--rtl .marquee-track {
    animation-duration: 240s;
  }
}

/* ===========================
   SUB-PAGE COMMON
   =========================== */

/* Active nav state */
.header-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  position: relative;
}
.header-nav a[aria-current="page"]:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-coral);
  border-radius: 2px;
}

/* Subhero (sub-page hero) */
.subhero {
  padding: 140px 32px 72px;
  background: var(--bg-soft);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.subhero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.subhero-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}
.subhero-title {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.subhero-lead {
  font-size: clamp(14px, 1.15vw, 15px);
  color: var(--text-sub);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto;
}
.subhero-back {
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.subhero-back:hover { color: var(--text); }

/* Generic content section */
.content-section { padding: 96px 0; }
.content-section--soft { background: var(--bg-soft); }

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.stat-cell {
  background: #fff;
  padding: 32px 20px;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-value small { font-size: 16px; font-weight: 500; }
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.55;
}

/* Mechanism grid (Talent) */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.mechanism-item {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.mechanism-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 3px;
  background: var(--text);
}
.mechanism-num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-coral);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.mechanism-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.mechanism-item p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* Strength cards */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.strength-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.strength-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--c-coral);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.strength-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.45;
}
.strength-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* Member grid */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.member-item {
  text-align: center;
}
.member-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--bg-soft);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.member-role {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.member-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #D4AF37 0%, #C19820 100%);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(212,175,55,0.25);
}
.member-path {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* Accordion (Creative projects) */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.3s var(--ease);
}
.accordion-item.is-open {
  border-color: var(--text);
  box-shadow: var(--shadow);
}
.accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background 0.2s var(--ease);
}
.accordion-header:hover { background: var(--bg-soft); }
.accordion-thumb {
  flex-shrink: 0;
  width: 96px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-soft);
}
.accordion-thumb img { width: 100%; height: 100%; object-fit: cover; }
.accordion-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accordion-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.accordion-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accordion-status--current {
  background: rgba(95,173,125,0.15);
  color: #3D8558;
}
.accordion-status--past {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
}
.accordion-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.accordion-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 14px;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
}
.accordion-item.is-open .accordion-toggle {
  transform: rotate(180deg);
  background: var(--text);
  color: #fff;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-item.is-open .accordion-body { max-height: 1200px; }
.accordion-body-inner {
  padding: 4px 28px 32px 28px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 24px;
}
.accordion-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 20px;
}
.accordion-body-inner dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.accordion-body-inner dt {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.accordion-body-inner dd {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

/* Process steps */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.process-step {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.process-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-coral);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* Partner cards (Careers) */
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.partner-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.partner-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.partner-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.partner-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}
.partner-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 18px;
}
.partner-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-coral);
  transition: transform 0.25s var(--ease);
  display: inline-block;
}
.partner-card:hover .partner-link { transform: translateX(4px); }

/* Recruitment cards (Careers: salaried) */
.recruit-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.recruit-card__main { flex: 1; min-width: 280px; }
.recruit-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.recruit-card__desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
}
.recruit-card--unavailable {
  background: var(--bg-soft);
  border-style: dashed;
}
.recruit-card--unavailable h3 { color: var(--text-sub); }
.recruit-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.recruit-badge--open { background: rgba(95,173,125,0.15); color: #3D8558; }
.recruit-badge--closed { background: rgba(0,0,0,0.05); color: var(--text-muted); }
.recruit-card .btn-primary {
  display: inline-block;
  background: var(--text);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
}
.recruit-card .btn-primary:hover { background: #000; transform: translateY(-2px); }

/* Contact options (mailto type selection) */
.contact-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.contact-type-card {
  display: block;
  padding: 28px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-type-card:hover {
  border-color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-type-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-type-card h3 .arrow {
  font-family: var(--font-en);
  color: var(--c-coral);
  font-weight: 700;
  transition: transform 0.25s var(--ease);
}
.contact-type-card:hover h3 .arrow { transform: translateX(4px); }
.contact-type-card p {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* Direct contact info block */
.direct-info {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: center;
}
.direct-info h3 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.direct-info p {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
}
.direct-info a { color: var(--c-coral); font-weight: 600; }

/* Company info table */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.company-info-table th,
.company-info-table td {
  padding: 18px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.company-info-table th {
  width: 180px;
  font-weight: 600;
  color: var(--text-sub);
  font-size: 13px;
}
.company-info-table td { color: var(--text); line-height: 1.75; }

/* History timeline */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.history-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.history-year {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-coral);
  letter-spacing: 0.01em;
}
.history-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.history-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* CTA panel (sub-pages) */
.cta-panel {
  margin: 40px 0;
  padding: 56px 48px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
}
.cta-panel h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.cta-panel p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-panel-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-panel-buttons a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cta-panel-buttons .btn-primary {
  background: #fff;
  color: var(--bg-dark) !important;
}
.cta-panel-buttons .btn-primary:hover { background: #F0F0F5; transform: translateY(-2px); }
.cta-panel-buttons .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.cta-panel-buttons .btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* Sub-page responsive */
@media (max-width: 1024px) {
  .mechanism-grid, .strength-grid, .member-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .subhero { padding: 100px 20px 56px; }
  .content-section { padding: 64px 0; }
  .stat-row { grid-template-columns: 1fr; }
  .mechanism-grid, .strength-grid, .member-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .accordion-header { gap: 12px; padding: 16px 18px; }
  .accordion-thumb { width: 68px; height: 38px; }
  .accordion-title { font-size: 15px; }
  .accordion-body-inner { padding: 4px 18px 24px 18px; }
  .accordion-body-inner dl { grid-template-columns: 1fr; gap: 4px 0; }
  .accordion-body-inner dt { padding-top: 12px; }
  .partner-list { grid-template-columns: 1fr; }
  .contact-types { grid-template-columns: 1fr; }
  .recruit-card { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .history-item { grid-template-columns: 1fr; gap: 4px; }
  .cta-panel { padding: 40px 24px; }
  .company-info-table th { width: 120px; font-size: 12px; }
}

/* ===========================
   CREATIVE PAGE — Filmstrip / Timecode
   =========================== */

/* Filmstrip decoration (top & bottom of creative page) */
.filmstrip {
  height: 28px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.filmstrip::before,
.filmstrip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background-image: repeating-linear-gradient(90deg,
    #fff 0, #fff 12px,
    transparent 12px, transparent 28px);
  background-size: 28px 8px;
  opacity: 0.85;
}
.filmstrip::before { top: 6px; }
.filmstrip::after { bottom: 6px; }

/* TC (timecode) subhero label */
.subhero--creative { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.tc-label {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-coral);
  padding: 6px 12px;
  border: 1px solid var(--c-coral);
  border-radius: 3px;
  margin-bottom: 20px;
}
.tc-label::before {
  content: '● ';
  animation: recBlink 1.5s infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Section number in timecode format */
.section-num.tc {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Services Reel (filmstrip-style vertical layout) */
.services-reel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.service-frame {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s var(--ease);
}
.service-frame:nth-child(2n) { border-right: none; }
.service-frame:nth-last-child(-n+2) { border-bottom: none; }
.service-frame:hover { background: var(--bg-soft); }
.service-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-coral);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-frame:hover::before { opacity: 1; }

.service-no {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-coral);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.service-frame h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.service-frame p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 18px;
}
.service-clients {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .services-reel { grid-template-columns: 1fr; }
  .service-frame { border-right: none; }
  .service-frame:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--border); }
  .service-frame { padding: 24px 24px 28px; }
}

/* ===========================
   TALENT PAGE — Giant typography / Data viz
   =========================== */

/* Page-talent body hook for unique visual identity */
.page-talent .subhero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.page-talent .subhero::before {
  content: '';
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--c-coral-pale) 0%, transparent 70%);
  pointer-events: none;
}

/* Talent subhero title marker */
.talent-title .talent-title-mark {
  position: relative;
  display: inline-block;
}
.talent-title .talent-title-mark::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 12px;
  background: var(--c-coral);
  opacity: 0.28;
  z-index: -1;
  border-radius: 2px;
}

/* Overview KV (giant number) */
.talent-overview {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.talent-overview-kv {
  background: var(--text);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.talent-overview-kv::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,107,107,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.talent-kv-num {
  display: block;
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.talent-kv-num small { font-size: 22px; font-weight: 500; }
.talent-kv-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.talent-overview-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 14px;
}
.talent-overview-body p:last-child { margin-bottom: 0; }
.talent-overview-body strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 768px) {
  .talent-overview { grid-template-columns: 1fr; gap: 28px; }
  .talent-overview-kv { padding: 32px 24px; }
  .talent-kv-num { font-size: 72px; }
  .talent-kv-num small { font-size: 32px; }
}

/* Candidate Data Grid (giant % numbers + bar) */
.candidate-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.candidate-data-item {
  background: #fff;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  position: relative;
}
.candidate-num {
  display: block;
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 14px;
}
.candidate-num small {
  font-size: 20px;
  font-weight: 500;
  color: var(--c-coral);
  margin-left: 2px;
}
.candidate-label {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 18px;
}
.candidate-bar {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 2px;
  overflow: hidden;
}
.candidate-bar span {
  display: block;
  height: 100%;
  width: var(--v);
  background: linear-gradient(90deg, var(--c-coral) 0%, var(--text) 100%);
  border-radius: 2px;
  transform-origin: left center;
  animation: barGrow 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1024px) {
  .candidate-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .candidate-data-grid { grid-template-columns: 1fr; }
  .candidate-num { font-size: 56px; }
  .candidate-num small { font-size: 24px; }
}

/* Media Activity Grid (Talent: YouTube/TikTok/Podcast/Influencer) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.media-card {
  display: block;
  padding: 28px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.media-card:not(.media-card--static):hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.media-card-head {
  margin-bottom: 14px;
}
.media-card-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 8px;
}
.media-card-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.media-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 14px;
}
.media-card-arrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.25s var(--ease);
}
.media-card:hover .media-card-arrow { transform: translateX(4px); }
.media-card--static {
  background: var(--bg-soft);
  border-style: dashed;
}
.media-card-meta {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-coral);
  padding: 6px 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
}

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

/* Talent CTA split panel (candidates vs companies) */
.cta-panel--split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  padding: 48px 40px;
  text-align: left;
}
.cta-split-item {
  padding: 0 32px;
}
.cta-split-divider {
  width: 1px;
  height: 180px;
  background: rgba(255,255,255,0.15);
}
.cta-split-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-coral-soft);
  display: block;
  margin-bottom: 12px;
}
.cta-split-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.cta-split-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: none;
}
.cta-split-item a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

@media (max-width: 768px) {
  .cta-panel--split { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .cta-split-divider { display: none; }
  .cta-split-item { padding: 0; }
}

/* ===========================
   NAV DROPDOWN (事業メニュー)
   =========================== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-trigger {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s var(--ease);
}
.nav-trigger:hover,
.nav-dropdown.is-open .nav-trigger,
.nav-dropdown:hover .nav-trigger {
  color: var(--text);
}
.nav-trigger[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}
.nav-caret {
  font-size: 10px;
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  background: var(--bg-soft);
}

/* Mobile menu dropdown */
.header-nav.is-open .nav-dropdown { display: block; width: 100%; }
.header-nav.is-open .nav-trigger {
  width: 100%;
  text-align: left;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}
.header-nav.is-open .nav-dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0 0 8px 0;
  min-width: 0;
  background: transparent;
  display: none;
}
.header-nav.is-open .nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}
.header-nav.is-open .nav-dropdown-menu a {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--bg-soft);
}

/* ===========================
   AREA CARDS (Talent)
   =========================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.area-card {
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.area-card:hover {
  border-color: var(--c-coral);
  transform: translateY(-2px);
}
.area-card-icon {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-coral);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.area-card-name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.area-card-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-card { padding: 24px 14px; }
}

/* ===========================
   MEDIA CARD with image
   =========================== */
.media-card.has-img {
  padding: 0;
  overflow: hidden;
}
.media-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
}
.media-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.media-card.has-img:hover .media-card-img img { transform: scale(1.04); }
.media-card--influencer-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
}
.media-card--influencer-img img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.media-card--influencer-img .influencer-more-small {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-card-body {
  padding: 24px 28px 26px;
}
.media-card.has-img .media-card-head { margin-bottom: 12px; }

/* ===========================
   DOWNSTREAM hero (= TOP hero-visual reuse in sub-pages)
   TOPと同じ構造を下層で使うため、通常.heroスタイルをそのまま利用
   .subheroは廃止方向、残すとしてもスタイル継承外
   =========================== */
/* 下層ページHero は TOP と同じ .hero.hero-visual を使う */

/* ===========================
   Talent page — visual insert strips
   =========================== */

/* Area inline (Overview内にエリア情報を入れる時のコンパクトUI) */
.area-inline {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--c-coral);
}
.area-inline-label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.area-inline-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
}
.area-inline-text strong { font-weight: 700; }

/* Talent page visual band (画像ストリップで視覚の休憩) */
.talent-visual-band {
  height: 320px;
  background-size: cover;
  background-position: center;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.talent-visual-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%);
}
.talent-visual-band-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
}
.talent-visual-band-quote {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.02em;
  max-width: 640px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.talent-visual-band-quote small {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  text-shadow: none;
}

@media (max-width: 768px) {
  .talent-visual-band { height: 240px; }
  .talent-visual-band-quote { font-size: 18px; }
}

/* Illustrative accent marks (small SVG decorations) */
.deco-mark {
  position: absolute;
  pointer-events: none;
  color: var(--c-coral);
  opacity: 0.28;
}
.deco-mark--tl { top: 20px; left: 20px; width: 44px; height: 44px; }
.deco-mark--br { bottom: 20px; right: 20px; width: 44px; height: 44px; }

/* ===========================
   Talent in-container Quote (typography-first, minimal)
   =========================== */
.quote-section {
  padding: 72px 0;
}
.quote-section--alt {
  background: var(--bg-soft);
}
.talent-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.talent-quote-mark {
  display: block;
  font-family: var(--font-en);
  font-size: 64px;
  line-height: 1;
  color: var(--c-coral);
  opacity: 0.4;
  margin-bottom: 8px;
  font-weight: 700;
}
.talent-quote p {
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.talent-quote cite {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 768px) {
  .quote-section { padding: 48px 0; }
  .talent-quote-mark { font-size: 48px; }
}

/* ===========================
   Influencer Network Viz (SVG-based)
   =========================== */
.media-card--network-viz {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  position: relative;
}
.media-card--network-viz svg {
  width: 100%;
  height: 100%;
  max-height: 160px;
}

/* ===========================
   TALENT: Overview KV as logo
   =========================== */
.talent-overview-kv--logo {
  background: #18264E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 32px;
  min-height: 220px;
}
.talent-overview-kv--logo::before { display: none; }
.talent-overview-kv--logo img {
  max-width: 72%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.talent-overview-kv--logo .talent-kv-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ===========================
   Donut chart (Candidate Data) — conic-gradient
   ブラウザ標準のCSSのみで描画。SVG・JSに依存しない。
   =========================== */
.chart-donut {
  --pct: 0%;
  --coral: #FF6B6B;
  --track: #EEEAE0;
  --inner: #FFFFFF;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, var(--coral) 0 var(--pct), var(--track) var(--pct) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
}
.chart-donut::before {
  content: '';
  position: absolute;
  inset: 11px;
  background: var(--inner);
  border-radius: 50%;
}
.chart-donut-value {
  position: relative;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  z-index: 1;
}
.chart-donut-value small {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-coral);
  margin-left: 2px;
}
.candidate-data-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
}
.candidate-data-item .candidate-label {
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .chart-donut { width: 120px; height: 120px; }
  .chart-donut::before { inset: 10px; }
  .chart-donut-value { font-size: 26px; }
  .chart-donut-value small { font-size: 13px; }
}

/* ===========================
   VOICE: hero + stars + marquee
   =========================== */
.voice-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.voice-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
}
.voice-stars svg {
  filter: drop-shadow(0 1px 2px rgba(245,166,35,0.3));
}
.voice-rating {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.voice-rating strong {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}
.voice-headline {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* Voice Marquee row */
.voice-marquee-row {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.voice-marquee-row + .voice-marquee-row { margin-top: 4px; }
.voice-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.voice-marquee-row--ltr .voice-marquee-track {
  animation: voiceScrollLtr 80s linear infinite;
}
.voice-marquee-row--rtl .voice-marquee-track {
  animation: voiceScrollRtl 90s linear infinite;
}
@keyframes voiceScrollLtr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes voiceScrollRtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.voice-marquee-row:hover .voice-marquee-track {
  animation-play-state: paused;
}

/* Bubble style voice card */
.voice-bubble {
  flex: 0 0 auto;
  width: 340px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  transition: border-color 0.25s var(--ease);
}
.voice-bubble:hover { border-color: var(--c-coral); }
.voice-bubble::before {
  content: '"';
  position: absolute;
  top: 6px; left: 12px;
  font-family: Georgia, serif;
  font-size: 46px;
  color: var(--c-coral);
  opacity: 0.25;
  line-height: 1;
  font-weight: 700;
}
.voice-bubble p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 10px;
  padding-top: 6px;
}
.voice-bubble span {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.voice-footer {
  text-align: center;
  margin-top: 32px;
}
.voice-all-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--text-muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.voice-all-link:hover {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
}

@media (max-width: 768px) {
  .voice-bubble { width: 280px; padding: 18px 20px; }
  .voice-bubble p { font-size: 12.5px; }
  .voice-marquee-row--ltr .voice-marquee-track { animation-duration: 60s; }
  .voice-marquee-row--rtl .voice-marquee-track { animation-duration: 70s; }
}
@media (prefers-reduced-motion: reduce) {
  .voice-marquee-row--ltr .voice-marquee-track,
  .voice-marquee-row--rtl .voice-marquee-track {
    animation-duration: 400s;
  }
}

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   GRAFFITI SCRIBBLES (Multi-page)
   - 各下層ページに"ラクガキ"感の遊び心を少量加える汎用装飾
   - 既存の .about-highlight / .about-doodle と共存（干渉しない命名）
   =========================== */

/* 汎用の highlight container（相対配置・インラインブロック） */
.scribble {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

/* 波線アンダーライン（コーラル） */
.scribble-underline {
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  width: 100%;
  height: 9px;
  color: #FF6B6B;
  pointer-events: none;
  z-index: 0;
}

/* 手描きサークル囲み（コーラル） */
.scribble-circle {
  position: absolute;
  left: -12px; right: -12px;
  top: -8px; bottom: -6px;
  width: calc(100% + 24px);
  height: calc(100% + 14px);
  color: #FF6B6B;
  pointer-events: none;
  z-index: 0;
}

/* マーカー風ハイライト（コーラル薄色を文字背後に重ねる） */
.scribble-marker {
  background-image: linear-gradient(transparent 62%, rgba(255,107,107,0.28) 62%, rgba(255,107,107,0.28) 94%, transparent 94%);
  background-size: 100% 100%;
  padding: 0 2px;
}

/* 小ドゥードル（矢印・スター・クロス・アスタリスク等） */
.scribble-doodle {
  position: absolute;
  pointer-events: none;
  color: #FF6B6B;
  opacity: 0.75;
  z-index: 1;
}
.scribble-doodle--star {
  width: 18px; height: 18px;
  color: #1A1A1A;
  opacity: 0.55;
}
.scribble-doodle--star-spin {
  animation: scribbleSpin 14s linear infinite;
}
.scribble-doodle--arrow {
  width: 44px; height: 32px;
  transform: rotate(-6deg);
}
.scribble-doodle--cross {
  width: 14px; height: 14px;
  opacity: 0.6;
}
.scribble-doodle--asterisk {
  width: 16px; height: 16px;
  opacity: 0.55;
}
.scribble-doodle--film {
  /* フィルム穴ドット3個 */
  display: inline-flex;
  gap: 4px;
  opacity: 0.45;
}
.scribble-doodle--film span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1A1A1A;
  display: inline-block;
}

@keyframes scribbleSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* セクションヘッダー横の doodle 位置指定ヘルパー */
.section-header { position: relative; }
.section-header .scribble-doodle--star {
  top: -6px; right: -24px;
  transform: rotate(14deg);
}
.section-header .scribble-doodle--asterisk {
  top: -4px; right: -22px;
  transform: rotate(-10deg);
}
.section-header .scribble-doodle--cross {
  top: 8px; right: -20px;
  transform: rotate(8deg);
}
.section-header .scribble-doodle--film {
  top: 10px; right: -44px;
}

/* レスポンシブ: 狭いビューでは控えめに */
@media (max-width: 768px) {
  .section-header .scribble-doodle--star,
  .section-header .scribble-doodle--asterisk,
  .section-header .scribble-doodle--cross,
  .section-header .scribble-doodle--film {
    display: none;
  }
  .scribble-doodle--arrow { width: 36px; height: 26px; }
  .scribble-underline { bottom: -6px; height: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .scribble-doodle--star-spin { animation: none; }
}

/* ============================================================
   NEWS STRIP (Hero直下のお知らせ薄帯)
   ============================================================ */
.news-strip {
  padding: 18px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--bg);
}
.news-strip .container { max-width: 1280px; margin: 0 auto; }
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}
.news-item + .news-item { margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(0,0,0,0.06); }
.news-label {
  letter-spacing: 0.18em;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--c-coral);
  padding: 4px 10px;
  border: 1px solid var(--c-coral);
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-date {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-body { color: var(--text); }
.news-body a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.news-body a:hover {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
}
@media (max-width: 768px) {
  .news-strip { padding: 14px 16px; }
  .news-item { gap: 12px; flex-wrap: wrap; font-size: 12.5px; }
  .news-label { font-size: 10px; padding: 3px 8px; }
}

/* ============================================================
   ABOUT CTA (Wheels Upについて のCTAパネル)
   ============================================================ */
.about-cta { padding: 80px 32px; }
.about-cta .container { max-width: 1280px; margin: 0 auto; }
.about-cta--soft { background: var(--bg-soft); }

.about-cta-panel {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.about-cta-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.about-cta-bg { position: absolute; inset: 0; overflow: hidden; }
.about-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.75) 0%, rgba(15,15,15,0.50) 60%, rgba(15,15,15,0.65) 100%);
}
.about-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}
.about-cta-panel:hover .about-cta-bg img { transform: scale(1.06); }
.about-cta-body {
  position: relative;
  padding: 64px 56px;
  max-width: 760px;
}
.about-cta-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  opacity: 0.7;
  margin-bottom: 14px;
}
.about-cta-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
}
.about-cta-text {
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.9;
  margin: 0 0 26px;
  max-width: 600px;
  color: #fff;
}
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-coral);
  padding: 8px 0 10px;
  border-bottom: 1.5px solid var(--c-coral);
  transition: gap 0.3s var(--ease);
}
.about-cta-panel:hover .about-cta-link { gap: 14px; }

@media (max-width: 768px) {
  .about-cta { padding: 56px 16px; }
  .about-cta-panel { min-height: 280px; border-radius: 12px; }
  .about-cta-body { padding: 44px 28px; }
  .about-cta-title { font-size: 24px; }
  .about-cta-text { font-size: 13.5px; line-height: 1.75; }
  .about-cta-num { font-size: 10px; letter-spacing: 0.28em; }
}
@media (prefers-reduced-motion: reduce) {
  .about-cta-panel,
  .about-cta-bg img,
  .about-cta-link { transition: none; }
}

/* ============================================================
   ABOUT CTA GRID (2カラム: Wheels Upについて + 採用情報)
   ============================================================ */
.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-cta-grid > .about-cta-panel { min-height: 340px; }
.about-cta-grid > .about-cta-panel .about-cta-body {
  padding: 52px 44px;
  max-width: none;
}
.about-cta-grid > .about-cta-panel .about-cta-title { font-size: 27px; }
.about-cta-grid > .about-cta-panel .about-cta-text { font-size: 14px; line-height: 1.8; margin-bottom: 22px; }

@media (max-width: 900px) {
  .about-cta-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-cta-grid > .about-cta-panel .about-cta-body { padding: 44px 28px; }
  .about-cta-grid > .about-cta-panel .about-cta-title { font-size: 24px; }
  .about-cta-grid > .about-cta-panel .about-cta-text { font-size: 13.5px; }
}

/* ============================================================
   WHEELS UP STORIES (Wantedly editorial grid)
   creativeのマーキーと被らない、静的・テキスト主体のエディトリアル構成
   ============================================================ */
.stories { padding: 96px 32px; background: var(--bg); }
.stories .container { max-width: 1180px; margin: 0 auto; }
.stories .section-lead { margin-bottom: 48px; max-width: 680px; }

.stories-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}
.editorial-card {
  display: flex;
  flex-direction: column;
  padding: 44px 40px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  min-height: 300px;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s var(--ease);
}
.editorial-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 3px;
  background: var(--c-coral);
  transition: width 0.45s var(--ease);
}
.editorial-card:hover { background: #FFFFFF; }
.editorial-card:hover::before { width: 100%; }

.editorial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.editorial-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
}
.editorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.editorial-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-coral);
  border: 1px solid var(--c-coral);
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1;
}
.editorial-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.editorial-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 0 0 18px;
  color: var(--text);
}
.editorial-excerpt {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0 0 24px;
  flex-grow: 1;
}
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-coral);
  letter-spacing: 0.06em;
  margin-top: auto;
  transition: gap 0.3s var(--ease);
}
.editorial-card:hover .editorial-link { gap: 13px; }

.stories-more-wrap { margin-top: 48px; text-align: center; }
.stories-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--text);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), gap 0.3s var(--ease);
}
.stories-more:hover {
  background: var(--text);
  color: #fff;
  gap: 14px;
}

@media (max-width: 900px) {
  .stories { padding: 72px 16px; }
  .stories-editorial { grid-template-columns: 1fr; }
  .editorial-card { padding: 36px 24px; min-height: 240px; }
  .editorial-title { font-size: 17px; letter-spacing: 0.02em; }
  .editorial-title br { display: none; }
  .editorial-excerpt { font-size: 13px; }
  .stories-more { padding: 12px 22px; font-size: 12px; }
}
/* ============================================================
   STORIES CAROUSEL (2ページ自動スライド, 8記事を巡回)
   ============================================================ */
.stories-carousel { position: relative; }
.stories-carousel-viewport { overflow: hidden; }
.stories-carousel-track {
  display: flex;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}
.stories-carousel-page {
  flex: 0 0 100%;
  min-width: 0;
}
.stories-carousel[data-current="0"] .stories-carousel-track { transform: translateX(0%); }
.stories-carousel[data-current="1"] .stories-carousel-track { transform: translateX(-100%); }
.stories-carousel[data-current="2"] .stories-carousel-track { transform: translateX(-200%); }

.stories-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.stories-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  background: rgba(0,0,0,0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease), border-radius 0.3s var(--ease);
}
.stories-dot:hover { background: rgba(0,0,0,0.38); }
.stories-dot.is-active {
  background: var(--c-coral);
  width: 30px;
  border-radius: 5px;
}

/* stagger fade-in: 各ページ内で4カードが順番にスライドインする */
.editorial-card.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), background 0.3s var(--ease);
}
.editorial-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stories-carousel-page .editorial-card:nth-child(1).fade-in { transition-delay: 0s; }
.stories-carousel-page .editorial-card:nth-child(2).fade-in { transition-delay: 0.14s; }
.stories-carousel-page .editorial-card:nth-child(3).fade-in { transition-delay: 0.28s; }
.stories-carousel-page .editorial-card:nth-child(4).fade-in { transition-delay: 0.42s; }

@media (max-width: 900px) {
  .editorial-head { gap: 12px; margin-bottom: 18px; }
  .editorial-thumb { width: 48px; height: 48px; border-radius: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-card, .editorial-card::before, .editorial-link, .stories-more { transition: none; }
  .editorial-card.fade-in { opacity: 1; transform: none; transition: none; }
}




