@charset "UTF-8";
/* ============================================================
   Galaxia サービス詳細ページ（デザインモック / Web consulting）
   導入事例 A〜D 全部入り
   ============================================================ */
:root {
  --accent-from: #3aa0ff;
  --accent-to: #2bd4d4;
  --accent: linear-gradient(90deg, #3aa0ff, #2bd4d4);
  --ink: #14141a;
  --ink-soft: #5a5a66;
  --ink-faint: #8a8a96;
  --line: #e7e7ee;
  --bg: #f5f6f8;
  --font: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.8; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 1080px; max-width: 90%; margin: 0 auto; }
.gx { background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* セクション共通 */
.sec { padding: 80px 0; }
.sec--tint { background: var(--bg); }
.sec__eyebrow { text-align: center; font-size: 13px; font-weight: 800; letter-spacing: .24em; margin: 0 0 12px; }
.sec__title { text-align: center; font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; margin: 0 0 14px; letter-spacing: .02em; }
.sec__lead { text-align: center; color: var(--ink-soft); font-size: 15px; margin: 0 auto 48px; max-width: 720px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 34px; border-radius: 999px;
  font-weight: 800; font-size: 15px; color: #fff; background: var(--accent);
  box-shadow: 0 14px 30px rgba(46,160,255,.3); transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(46,160,255,.4); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }

/* ---------- ① ヒーロー ---------- */
/* ヒーローの高さをトップページ（section.top .galaxia）と統一：desktop 44vw / mobile 64vw。
   文章量に関わらず一定の高さにし、内容は縦中央寄せ。内容が高い場合は min-height で伸びる。 */
.hero { position: relative; overflow: hidden; background: #0e0e14; color: #fff; min-height: 30.8vw; display: flex; align-items: center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../../images/img/works-color.webp") center/cover no-repeat; opacity: 1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(22,28,48,0.6) 0%, rgba(22,28,48,0.3) 45%, rgba(22,28,48,0.05) 100%);
}

/* ---------- ヘッダー（本体ページと統一：黒背景・白ロゴ・白ナビ・モバイルはハンバーガー） ---------- */
.svc-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #000;
  box-shadow: 0 2px 16px rgba(0,0,0,.18); transition: transform .18s ease-out; }
.svc-header.is-shown { transform: translateY(0); }
/* デモページは常時表示ヘッダー（高さ50px）ぶんの余白を確保 */
body { padding-top: 50px; }
/* 本体ヘッダー(.gx-fixed-header)と寸法・配置を完全一致させる */
.svc-header .svc-header__inner { position: relative; display: flex; align-items: center; height: 50px; width: 100%; max-width: 100%; }
.svc-header__logo { display: inline-flex; align-items: center; margin-left: 74px; }
.svc-header__logo img { width: 150px; display: block; filter: invert(1); }
.svc-nav { margin-left: auto; margin-right: 50px; display: flex; align-items: center; gap: clamp(18px, 2.6vw, 50px); }
.svc-nav a { font-size: clamp(12px, 1.15vw, 16px); font-weight: 700; color: #fff; white-space: nowrap; }
.svc-nav a:hover { color: var(--accent-to); }
/* 「サービス」ホバードロップダウン */
.svc-nav__has { position: relative; display: flex; align-items: center; }
.svc-dd {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  padding-top: 14px; min-width: 240px; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.svc-nav__has:hover .svc-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.svc-dd__card { position: relative; background: #fff; border-radius: 16px; box-shadow: 0 22px 56px rgba(20,30,70,.18); padding: 12px; min-width: 250px; }
.svc-dd__card::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-radius: 3px; }
.svc-dd__card a { display: block; position: relative; padding: 11px 18px; font-size: 14px; font-weight: 700; color: #14141a; border-radius: 11px; white-space: nowrap; transition: background .2s ease, padding-left .2s ease, color .2s ease; }
.svc-dd__card a:first-child { color: #2bd4d4; font-weight: 800; }
.svc-dd__card a:hover { background: linear-gradient(90deg, rgba(58,160,255,.12), rgba(43,212,212,.12)); padding-left: 24px; }
.svc-dd__card a:hover::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, #3aa0ff, #2bd4d4); }
/* ハンバーガー（モバイルのみ） */
.svc-burger__chk { display: none; }
.svc-burger { display: none; width: 40px; height: 40px; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); cursor: pointer; }
.svc-burger span, .svc-burger span::before, .svc-burger span::after {
  content: ""; position: absolute; left: 9px; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.svc-burger span { top: 19px; }
.svc-burger span::before { top: -7px; }
.svc-burger span::after { top: 7px; }
.svc-burger__chk:checked ~ .svc-burger span { background: transparent; }
.svc-burger__chk:checked ~ .svc-burger span::before { top: 0; transform: rotate(45deg); }
.svc-burger__chk:checked ~ .svc-burger span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 860px) {
  .svc-burger { display: block; }
  .svc-nav {
    position: fixed; top: 50px; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0e0e14; max-height: 0; overflow: hidden;
    transition: max-height .35s ease; box-shadow: 0 14px 30px rgba(0,0,0,.3);
  }
  .svc-burger__chk:checked ~ .svc-nav { max-height: 560px; overflow-y: auto; }
  .svc-nav > a, .svc-nav__has > a { padding: 15px 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 15px; }
  /* モバイルでは「サービス」のサブ項目を展開表示 */
  .svc-nav__has { display: block; }
  .svc-dd { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; padding: 0; min-width: 0; }
  .svc-dd__card { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
  .svc-dd__card::before { display: none; }
  .svc-dd__card a { color: #fff; padding: 13px 24px 13px 42px; border-top: 1px solid rgba(255,255,255,.08); font-size: 14px; border-radius: 0; }
  .svc-dd__card a:hover { background: transparent; padding-left: 46px; color: var(--accent-to); }
}
.hero__inner { position: relative; z-index: 1; padding: 96px 0 100px; width: 100%; }
.hero__en { font-size: clamp(34px, 6vw, 64px); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: .01em; }
.hero__ja { display: inline-block; margin: 14px 0 0; font-size: 15px; font-weight: 700; letter-spacing: .2em; color: #cfd2e6; }
.hero__catch { font-size: clamp(18px, 2.4vw, 26px); font-weight: 800; line-height: 1.6; margin: 26px 0 0; max-width: 760px; }
.hero__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- ② 課題 ---------- */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
.pain {
  position: relative; overflow: hidden; min-height: 130px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 30px 30px 28px; display: flex; gap: 20px; align-items: center;
  box-shadow: 0 6px 22px rgba(30,40,80,.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
/* ホバーで出る統計パネル */
.pain__stat {
  position: absolute; inset: 0; z-index: 3;
  background: var(--accent); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 22px 28px; gap: 6px;
  transform: translateY(101%); transition: transform .38s cubic-bezier(.2,.7,.3,1);
}
.pain:hover .pain__stat { transform: translateY(0); }
.pain__stat .n { font-size: 40px; font-weight: 800; line-height: 1; }
.pain__stat .n small { font-size: .5em; font-weight: 800; margin-left: 2px; }
.pain__stat .t { font-size: 14.5px; font-weight: 700; line-height: 1.6; }
.pain__stat .src { font-size: 10px; opacity: .85; margin-top: 4px; }
.pain::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); opacity: 0; transition: opacity .28s ease; }
.pain:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(30,40,80,.13); border-color: transparent; }
.pain:hover::before { opacity: 1; }
.pain__ico {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; background: var(--accent);
  display: grid; place-items: center; box-shadow: 0 10px 22px rgba(46,160,255,.28);
}
.pain__ico svg { width: 27px; height: 27px; color: #fff; }
.pain p { position: relative; z-index: 1; margin: 0; font-size: 17.5px; font-weight: 700; line-height: 1.65; }
.pain__num {
  position: absolute; right: 16px; bottom: -16px; z-index: 0;
  font-size: 76px; font-weight: 800; font-style: italic; line-height: 1;
  background: var(--accent); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; opacity: .1;
}
.pain .pc { display: inline; }
@media (max-width: 980px) { .pain .pc { display: none; } }

/* ---------- ③ 提供価値 ---------- */
.value { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.value__media { position: relative; aspect-ratio: 4/3; }
.mock-browser {
  position: absolute; left: 0; top: 4%; width: 86%;
  border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(20,30,70,.22);
}
.mock-browser__bar { height: 30px; background: #f1f2f6; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 13px; }
.mock-browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: #d6d8e0; }
.mock-browser__bar i:nth-child(1) { background: #ff5f57; }
.mock-browser__bar i:nth-child(2) { background: #febc2e; }
.mock-browser__bar i:nth-child(3) { background: #28c840; }
.mock-browser__screen { aspect-ratio: 16/10; overflow: hidden; }
.mock-browser__screen img { width: 100%; display: block; }
.mock-phone {
  position: absolute; right: 0; bottom: 0; width: 25%;
  border: 4px solid #14141a; border-radius: 20px; overflow: hidden; background: #14141a;
  box-shadow: 0 18px 40px rgba(20,30,70,.28);
}
.mock-phone img { width: 100%; display: block; }
.value ul { list-style: none; padding: 0; margin: 0; }
.value li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); font-size: 15.5px; font-weight: 700; }
.value li::before { content: "✓"; position: absolute; left: 4px; top: 13px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 12px; display: grid; place-items: center; }

/* ---------- ④ 特長 ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; }
.feature__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.feature__ico svg { width: 26px; height: 26px; color: #fff; }
.feature h3 { font-size: 18px; font-weight: 800; margin: 0 0 10px; }
.feature p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

/* ============================================================
   ⑤ 導入事例
   ============================================================ */
/* D: 実績サマリー＋ロゴ */
.stats-band { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; margin: 0 auto 44px; }
.stat-big { text-align: center; }
.stat-big__num { font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1; }
.stat-big__label { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 860px; margin: 0 auto 60px; }
.logos span { font-size: 12px; font-weight: 700; color: #6b6b78; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 8px 16px; }

/* A: 成果カード */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.case:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(40,50,90,.12); }
.case__thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.case__media { position: absolute; inset: 0; transition: transform .5s; }
.case:hover .case__media { transform: scale(1.08); }
.case__ind { position: absolute; left: 12px; top: 12px; z-index: 1; font-size: 11px; font-weight: 800; color: #fff; background: rgba(0,0,0,.4); border-radius: 999px; padding: 4px 11px; }
.case__body { padding: 20px 22px 24px; }
.case__result { font-size: 22px; font-weight: 800; }
.case__name { font-size: 14px; font-weight: 800; margin: 10px 0 6px; }
.case__sum { font-size: 13px; color: var(--ink-soft); line-height: 1.75; margin: 0; }

/* B: ビフォーアフター（深掘り） */
.deep { background: #0e0e14; color: #fff; border-radius: 24px; padding: 48px; margin-top: 64px; position: relative; overflow: hidden; }
.deep::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 0%, rgba(43,212,212,.3), transparent); }
.deep__inner { position: relative; z-index: 1; }
.deep__tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; background: rgba(255,255,255,.12); padding: 6px 14px; border-radius: 999px; }
.deep__title { font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; margin: 16px 0 0; line-height: 1.5; }
.deep__ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin: 36px 0 0; }
.ba-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 24px; }
.ba-box h4 { margin: 0 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .08em; color: #b9bff0; }
.ba-box p { margin: 0; font-size: 14px; line-height: 1.8; color: #d8dae8; }
.ba-arrow { font-size: 30px; background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.deep__metrics { display: flex; gap: 40px; flex-wrap: wrap; margin: 36px 0 0; }
.deep__metric .n { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.deep__metric .l { font-size: 12px; color: #b7bace; font-weight: 700; }

/* C: お客様の声（インタビュー） */
.voice { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: center; background: var(--bg); border-radius: 24px; padding: 44px; margin-top: 64px; }
.voice__photo { aspect-ratio: 1/1; border-radius: 16px; background: linear-gradient(135deg, #4568dc, #b06ab3); }
.voice__quote { font-size: clamp(17px, 2vw, 22px); font-weight: 800; line-height: 1.7; margin: 0 0 18px; }
.voice__quote .mark { background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.voice__text { font-size: 14px; color: var(--ink-soft); line-height: 1.85; margin: 0 0 18px; }
.voice__who { font-size: 13px; font-weight: 800; }
.voice__who span { display: block; color: var(--ink-faint); font-weight: 600; margin-top: 2px; }

.cases-more { text-align: center; margin-top: 44px; }

/* ---------- ⑥ 進め方 ---------- */
.flow { counter-reset: step; max-width: 820px; margin: 0 auto; }
.flow__item { position: relative; display: flex; gap: 22px; padding: 0 0 36px 0; }
.flow__item::before { counter-increment: step; content: counter(step); flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; display: grid; place-items: center; }
.flow__item:not(:last-child)::after { content: ""; position: absolute; left: 22px; top: 46px; bottom: 0; width: 2px; background: var(--line); }
.flow__item h3 { margin: 8px 0 6px; font-size: 17px; font-weight: 800; }
.flow__item p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- ⑧ CTA（黒の締めブロック） ---------- */
.cta { text-align: center; padding: 96px 0 84px; color: #fff; background:
  radial-gradient(900px 460px at 50% -10%, rgba(43,212,212,.18), transparent 70%), #0e0e14; }
.cta h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin: 0 0 14px; color: #fff; }
.cta p { color: rgba(255,255,255,.72); margin: 0 0 30px; }

/* ---------- ⑨ フッター ---------- */
.svc-footer { background: #0e0e14; color: #fff; }
.svc-footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding: 62px 0 50px; border-top: 1px solid rgba(255,255,255,.08);
}
.svc-footer__logo { display: inline-block; }
.svc-footer__logo img { width: 150px; display: block; filter: invert(100%); }
.svc-footer__tag { margin: 16px 0 0; font-size: 13px; line-height: 1.95; color: rgba(255,255,255,.55); max-width: 290px; }
.svc-footer__col h4 { margin: 0 0 16px; font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.svc-footer__col a { position: relative; display: block; width: fit-content; font-size: 14px; color: rgba(255,255,255,.74); padding: 7px 0; transition: color .2s ease, transform .2s ease; }
.svc-footer__col a:hover { color: #fff; transform: translateX(4px); }
.svc-footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.svc-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.svc-footer__copy { font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.45); }
.svc-footer__bar a { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.7); }
.svc-footer__bar a:hover { color: #fff; }
@media (max-width: 860px) {
  .svc-footer__inner { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding: 48px 0 40px; }
  .svc-footer__brand { grid-column: 1 / -1; }
  .svc-footer__tag { max-width: none; }
  .svc-footer__bar-inner { flex-direction: column; gap: 12px; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 860px) {
  .pains, .features, .cases { grid-template-columns: 1fr; }
  .value, .voice { grid-template-columns: 1fr; gap: 24px; }
  .deep { padding: 30px 22px; }
  .deep__ba { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .voice { padding: 28px 22px; }
  .voice__photo { max-width: 200px; }
  .sec { padding: 56px 0; }
  .hero { min-height: 44.8vw; }
  .hero__inner { padding: 64px 0 70px; }
}

/* ============================================================
   AIページ：価値セクションのダッシュボード風ビジュアル
   ============================================================ */
.ai-dash {
  position: relative; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(20,30,70,.12);
  padding: 24px 26px; display: flex; flex-direction: column; gap: 16px;
}
.ai-dash__head { display: flex; align-items: center; justify-content: space-between; }
.ai-dash__head h4 { margin: 0; font-size: 15px; font-weight: 800; }
.ai-dash__badge { font-size: 11px; font-weight: 800; color: #fff; background: var(--accent); border-radius: 999px; padding: 5px 12px; letter-spacing: .06em; }
.ai-dash__chart { flex: 1; display: flex; align-items: flex-end; gap: 10px; padding: 8px 0; }
.ai-dash__chart span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #3aa0ff, #2bd4d4); opacity: .85; }
.ai-dash__rows { display: flex; flex-direction: column; gap: 13px; }
.ai-dash__row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.ai-dash__row .k { color: var(--ink-soft); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ai-dash__row .k::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }
.ai-dash__row .v { font-weight: 800; font-size: 22px; line-height: 1; }
.ai-dash__row .v.up { background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ============================================================
   Softwareページ：業務システム連携フロー図（価値セクション）
   ============================================================ */
.sw-flow {
  position: relative; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(20,30,70,.12);
  padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.sw-node {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: #fff;
  position: relative;
}
.sw-node__ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--accent); display: grid; place-items: center; }
.sw-node__ico svg { width: 20px; height: 20px; color: #fff; }
.sw-node__t { font-size: 14px; font-weight: 800; }
.sw-node__t small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-soft); margin-top: 2px; }
.sw-arrow { text-align: center; font-size: 18px; line-height: .6; background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ============================================================
   SNSページ：投稿＋エンゲージメント風ビジュアル（価値セクション）
   ============================================================ */
.sns-card {
  position: relative; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(20,30,70,.12);
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
}
.sns-card__top { display: flex; align-items: center; gap: 10px; }
.sns-card__av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.sns-card__name { font-size: 13px; font-weight: 800; line-height: 1.3; }
.sns-card__name small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-faint); }
.sns-card__media { flex: 1; border-radius: 12px; overflow: hidden; background: var(--accent); }
.sns-card__media span { display: block; width: 100%; height: 100%; background-size: cover; background-position: center; }
.sns-card__acts { display: flex; align-items: center; gap: 18px; }
.sns-card__act { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: var(--ink-soft); }
.sns-card__act svg { width: 18px; height: 18px; }
.sns-card__grow { margin-left: auto; font-size: 12px; font-weight: 800; color: #fff; background: var(--accent); border-radius: 999px; padding: 5px 12px; }

/* ============================================================
   Recruit consultingページ：採用ファネル（価値セクション）
   ============================================================ */
.rc-funnel {
  position: relative; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(20,30,70,.12);
  padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.rc-step {
  margin: 0 auto; width: 100%; min-height: 52px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; box-shadow: 0 8px 18px rgba(46,160,255,.18);
}
.rc-step:nth-child(1) { width: 100%; }
.rc-step:nth-child(2) { width: 80%; opacity: .9; }
.rc-step:nth-child(3) { width: 60%; opacity: .82; }
.rc-step:nth-child(4) { width: 42%; opacity: .74; }
.rc-step .l { font-size: 14px; font-weight: 800; }
.rc-step .v { font-size: 14px; font-weight: 800; }

/* ============================================================
   Designページ：ブランドキット風ビジュアル（価値セクション）
   ============================================================ */
.dz-kit {
  position: relative; aspect-ratio: 4/3;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 26px 60px rgba(20,30,70,.12);
  padding: 26px 28px; display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.dz-kit__label { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--ink-faint); }
.dz-swatches { display: flex; gap: 10px; }
.dz-swatches span { flex: 1; height: 46px; border-radius: 10px; }
.dz-sw1 { background: #3aa0ff; } .dz-sw2 { background: #2bd4d4; } .dz-sw3 { background: #14141a; }
.dz-sw4 { background: #f0f2f6; border: 1px solid var(--line); } .dz-sw5 { background: #ff7a8a; }
.dz-type { display: flex; align-items: baseline; gap: 16px; }
.dz-type__aa { font-size: 46px; font-weight: 800; line-height: 1; background: var(--accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.dz-type__t .big { font-size: 16px; font-weight: 800; }
.dz-type__t .small { font-size: 12px; color: var(--ink-soft); }
.dz-comp { display: flex; align-items: center; gap: 12px; }
.dz-comp__btn { height: 40px; padding: 0 22px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; box-shadow: 0 8px 18px rgba(46,160,255,.25); }
.dz-comp__chip { font-size: 12px; font-weight: 700; color: #3a4a7a; background: #eef2fb; border: 1px solid #e0e7f5; border-radius: 8px; padding: 7px 14px; }

/* AIダッシュボード：スクロールで棒グラフが0から伸びる */
.ai-dash__chart span { transform: scaleY(0); transform-origin: bottom; transition: transform .9s cubic-bezier(.2,.7,.3,1); }
.ai-dash.is-in .ai-dash__chart span { transform: scaleY(1); }
.ai-dash__chart span:nth-child(1) { transition-delay: .05s; }
.ai-dash__chart span:nth-child(2) { transition-delay: .12s; }
.ai-dash__chart span:nth-child(3) { transition-delay: .19s; }
.ai-dash__chart span:nth-child(4) { transition-delay: .26s; }
.ai-dash__chart span:nth-child(5) { transition-delay: .33s; }
.ai-dash__chart span:nth-child(6) { transition-delay: .40s; }
.ai-dash__chart span:nth-child(7) { transition-delay: .47s; }

/* PICK UP：タイピング表示のカーソル */
.deep .is-typing::after { content: "｜"; margin-left: -2px; color: #8fd3ff; animation: dzCaret .7s step-end infinite; }
@keyframes dzCaret { 50% { opacity: 0; } }

/* PICK UP：①矢印 → ②カードが線で描かれる → ③タイピング */
.deep__ba .ba-box { position: relative; }
.deep__ba .ba-arrow { opacity: 0; transform: scale(.6); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.8,.3,1.4); }
.deep.show-arrow .ba-arrow { opacity: 1; transform: scale(1); }
@media (max-width: 860px) {
  .deep__ba .ba-arrow { transform: rotate(90deg) scale(.6); }
  .deep.show-arrow .ba-arrow { transform: rotate(90deg) scale(1); }
}
/* AFTERカードは最終サイズのまま。描画前は枠・背景・中身を隠す */
.ba-box--after { background: transparent; border-color: transparent; transition: background .5s ease, border-color .5s ease; }
.ba-box--after > *:not(.draw-svg) { opacity: 0; transition: opacity .5s ease; }
.ba-box--after.content-in { background: rgba(255,255,255,.06); }
.ba-box--after.content-in > *:not(.draw-svg) { opacity: 1; }
.draw-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.draw-svg path { fill: none; stroke-width: 2; stroke-linecap: round; }

/* 価値ビジュアルのスクロール表示（AI以外） */
.mock-browser, .mock-phone, .sw-flow, .sns-card, .rc-funnel, .dz-kit {
  opacity: 0; transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.3,1);
}
.mock-browser.is-in, .sw-flow.is-in, .sns-card.is-in, .rc-funnel.is-in, .dz-kit.is-in,
.mock-browser.is-in ~ .mock-phone {
  opacity: 1; transform: none;
}
.mock-browser.is-in ~ .mock-phone { transition-delay: .12s; }
