/* Disabled custom cursor */
.cursor { display: none !important; }
body, a, button { cursor: auto !important; }
a, button, [data-hover], .btn, .header__link, [role="button"] { cursor: pointer !important; }


    /* ============================================
       Goodpatch-leaning tokens — bold weights, crafted micro-interactions
       ============================================ */
    :root {
      --c-bg: #F6F6F6;            /* Goodpatch #f6f6f6 採用 */
      --c-bg-warm: #FAFAFA;
      --c-text: #111111;          /* より深い黒 */
      --c-text-2: #1A1A1A;
      --c-text-sub: #555555;
      --c-text-mute: #9A9A9A;
      --c-line: #E6E6E6;          /* Goodpatch #e6e6e6 採用 */
      --c-line-soft: #EFEFEF;
      --c-brand: #096FC8;         /* Goodpatch #096fc8 採用 */
      --c-brand-deep: #0556A0;
      --c-brand-2: #76B7ED;       /* Goodpatch #76b7ed 採用 */
      --c-accent: #FF7669;        /* Goodpatch #ff7669 採用 */
      --c-accent-2: #E2457A;      /* Goodpatch #e2457a 採用 */
      --c-surface: #FFFFFF;

      --f-en: 'Plus Jakarta Sans', system-ui, sans-serif;
      --f-ja: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
      --f-ja-bold: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;

      --ease-out: cubic-bezier(.22, 1, .36, 1);
      --ease-soft: cubic-bezier(.4, 0, .2, 1);
      --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

      --shadow-flat: 0 1px 2px rgba(10,15,30,.04);
      --shadow-rest: 0 1px 2px rgba(10,15,30,.04), 0 4px 12px rgba(10,15,30,.04);
      --shadow-hover: 0 1px 2px rgba(10,15,30,.04), 0 12px 32px rgba(10,15,30,.10), 0 32px 64px -16px rgba(9,111,200,.14);
      --shadow-deep: 0 30px 60px -20px rgba(9,111,200,.20);

      --radius-md: 1rem;
      --radius-lg: 1.5rem;
      --radius-xl: 2rem;
      --radius-pill: 999px;

      --container: calc(80rem + 5rem * 2);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 100%; scroll-behavior: smooth; }
    body {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.9375rem;
      line-height: 2;               /* Goodpatch 採用 */
      color: var(--c-text);
      background-color: var(--c-bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      font-feature-settings: "palt";
      position: relative;
      cursor: auto;                  /* カスタムカーソル */
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--c-text); color: var(--c-bg); }

    /* Restore native cursor on form-like / outside hero */
    @media (hover: none), (pointer: coarse) {
      body { cursor: auto; }
      .cursor { display: none; }
    }

    /* ============================================
       Custom cursor — Goodpatch風 minimal
       ============================================ */
    .cursor {
      position: fixed;
      top: 0; left: 0;
      width: 8px; height: 8px;
      background: var(--c-text);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .3s var(--ease-out), height .3s var(--ease-out), background-color .3s, opacity .3s;
      mix-blend-mode: difference;
    }
    .cursor.is-hover {
      width: 56px; height: 56px;
      background: rgba(255,255,255,.6);
      mix-blend-mode: difference;
    }
    .cursor.is-link {
      width: 36px; height: 36px;
      background: var(--c-accent);
      mix-blend-mode: normal;
    }

    /* Soft floating background */
    body::before {
      content: '';
      position: fixed;
      top: -10%; right: -10%;
      width: 50vw; height: 70vh;
      background: radial-gradient(circle, rgba(118,183,237,.20), transparent 60%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
      animation: bgFloat1 26s var(--ease-soft) infinite;
    }
    body::after {
      content: '';
      position: fixed;
      bottom: -15%; left: -10%;
      width: 40vw; height: 60vh;
      background: radial-gradient(circle, rgba(9,111,200,.08), transparent 60%);
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      animation: bgFloat2 32s var(--ease-soft) infinite;
    }
    @keyframes bgFloat1 {
      0%, 100% { transform: translate(0,0); }
      50% { transform: translate(-4%, 5%); }
    }
    @keyframes bgFloat2 {
      0%, 100% { transform: translate(0,0); }
      50% { transform: translate(5%, -4%); }
    }

    /* ============================================
       Header — Goodpatch風 fully transparent, left-anchored
       ============================================ */
    /* Floating pill header — 浮遊する丸み立体ヘッダー */
    .header {
      position: fixed;
      top: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 2rem);
      max-width: none;
      padding: 0.625rem 0.75rem 0.625rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      z-index: 100;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: saturate(180%) blur(24px);
      -webkit-backdrop-filter: saturate(180%) blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      box-shadow:
        0 1px 2px rgba(10, 15, 30, 0.04),
        0 8px 24px rgba(10, 15, 30, 0.08),
        0 24px 48px -16px rgba(10, 15, 30, 0.10);
      transition:
        padding .5s var(--ease-out),
        box-shadow .5s var(--ease-out),
        background-color .5s var(--ease-out),
        transform .5s var(--ease-out);
    }
    .header.scrolled {
      padding: 0.5rem 0.625rem 0.5rem 1.75rem;
      background: rgba(255, 255, 255, 0.92);
      box-shadow:
        0 2px 4px rgba(10, 15, 30, 0.06),
        0 12px 32px rgba(10, 15, 30, 0.12),
        0 32px 64px -16px rgba(9, 111, 200, 0.12);
    }
    .header__logo {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.02em;
      color: var(--c-text);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: opacity .3s;
    }
    .header__logo:hover { opacity: 0.6; }
    .header__logo::after {
      content: '';
      width: 0.4em; height: 0.4em;
      background: var(--c-accent);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 12px rgba(255,118,105,.5);
      animation: dotPulse 2.5s var(--ease-soft) infinite;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.7; }
    }
    .header__nav { display: flex; gap: 1rem; align-items: center; }
    .header__nav-divider { display: inline-block; width: 1px; height: 1.5rem; background: var(--c-line); margin: 0 0.5rem; }
    .header__link {
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--c-text);
      position: relative;
      padding: 0.5rem 0;
      display: inline-block;
      transition: color .3s var(--ease-out);
    }
    .header__link::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 0; height: 1px;
      background: var(--c-brand);
      transition: width .35s var(--ease-out);
    }
    .header__link:hover { color: var(--c-brand); }
    .header__link:hover::after { width: 100%; }

    /* Header CTA sub buttons (資料DL / 無料相談) — 目立たせる + サイズ統一 */
    .header__cta-sub {
      padding: 0.75rem 1.125rem;
      min-width: 7.5rem;
      background: transparent;
      color: var(--c-brand);
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      border-radius: var(--radius-pill);
      border: 1.5px solid var(--c-brand);
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      position: relative;
      overflow: hidden;
      transition: color .3s var(--ease-out), transform .3s var(--ease-spring), border-color .3s;
    }
    .header__cta-sub::before {
      content: ''; position: absolute; inset: 0;
      background: var(--c-brand);
      transform: scaleX(0); transform-origin: right;
      transition: transform .45s var(--ease-out);
    }
    .header__cta-sub > span { position: relative; z-index: 1; }
    .header__cta-sub:hover { color: #fff; transform: translateY(-2px); }
    .header__cta-sub:hover::before { transform: scaleX(1); transform-origin: left; }
    .header__cta-sub--accent {
      background: var(--c-brand);
      color: #fff;
      border-color: var(--c-brand);
      box-shadow: 0 4px 12px rgba(9,111,200,.30);
    }
    .header__cta-sub--accent::before { background: var(--c-brand-deep); }
    .header__cta-sub--accent:hover { box-shadow: 0 8px 20px rgba(9,111,200,.40); }
    .header__cta {
      padding: 0.75rem 1.25rem;
      min-width: 7.5rem;
      background: var(--c-text);
      color: var(--c-bg);
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      border-radius: var(--radius-pill);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: transform .4s var(--ease-spring);
    }
    .header__cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--c-brand);
      transform: translateY(100%);
      transition: transform .5s var(--ease-out);
    }
    .header__cta > span { position: relative; z-index: 1; }
    .header__cta:hover { transform: translateY(-2px); }
    .header__cta:hover::before { transform: translateY(0); }

    /* ============================================
       Hero — Goodpatch風 left-anchored, oversized type
       濃紺縁 + 白パネルで立体感 (for-sales と同じ構造)
       ============================================ */
    /* hero-wrap: 青グラデブロブ背景レイヤー (画面の縁) */
    .hero-wrap {
      position: relative;
      isolation: isolate;
      padding: 1.25rem 1rem 1rem;  /* この padding が縁の濃紺グラデになる */
    }
    .hero-wrap__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle 50vw at 0% 0%,   rgba(77, 175, 255, 0.55), transparent 50%),
        radial-gradient(circle 55vw at 100% 0%, rgba(127, 97, 255, 0.40), transparent 50%),
        radial-gradient(circle 60vw at 100% 100%, rgba(25, 118, 210, 0.65), transparent 50%),
        radial-gradient(circle 45vw at 0% 100%,  rgba(5, 86, 160, 0.55), transparent 50%),
        radial-gradient(circle 35vw at 50% 50%,  rgba(255, 107, 91, 0.18), transparent 60%),
        #0A2A6B;
      background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
      animation: heroBgFlow 22s ease-in-out infinite alternate;
    }
    .hero {
      position: relative;
      min-height: calc(100vh - 2.25rem);  /* wrap padding (1.25 + 1 = 2.25rem) を差し引いて FV 内に収める */
      padding: 8rem 4rem 3rem;
      max-width: none;
      margin: 0;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 2rem;
      z-index: 1;
      background: #FFFFFF;
      border-radius: 28px;
      box-shadow:
        0 24px 60px -12px rgba(0,0,0,0.32),
        0 10px 24px -6px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);
    }
    /* (hero-wrap でラップしたので、::before / .hero__decor / .hero__panel は不要) */
    @keyframes heroBgFlow {
      0%   { background-position: 0% 0%,   100% 0%, 100% 100%, 0% 100%, 50% 50%, 0 0; }
      50%  { background-position: 60% 40%, 40% 60%, 50% 70%,  50% 30%, 70% 30%, 0 0; }
      100% { background-position: 100% 100%, 0% 100%, 0% 0%,  100% 0%, 30% 70%, 0 0; }
    }
    /* Side index vertical */
    .hero__index {
      position: absolute;
      top: 13.5rem; left: 1.75rem;
      writing-mode: vertical-rl;
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      z-index: 3;
    }
    .hero__index::before {
      content: '';
      display: inline-block;
      width: 1px; height: 2.5rem;
      background: var(--c-text-mute);
      margin-bottom: 0.875rem;
    }
    .hero__label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text-sub);
      text-transform: uppercase;
      align-self: end;
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
      opacity: 0;
      animation: fadeIn 1s var(--ease-out) .3s forwards;
    }
    .hero__label::before {
      content: '';
      width: 2.5rem; height: 1px;
      background: var(--c-text-sub);
    }
    @keyframes fadeIn { to { opacity: 1; } }

    /* Title — Goodpatch HeroCopy specs */
    .hero__title {
      font-family: var(--f-en);
      font-weight: 700;
      /* 「めっちゃいい」サイズ感を維持。container内幅 1255-1384pxに収まる max 9.5rem */
      font-size: clamp(3rem, 11.5vw, 10rem);
      line-height: 1;                           /* clip根絶のため最低1 */
      letter-spacing: -0.04em;                  /* Goodpatch準拠 */
      color: var(--c-text);
      align-self: center;
      will-change: transform;
      max-width: 100%;
    }
    .hero__title .line { display: block; }     /* overflow: hidden 削除 — italic clip 根絶 */
    .hero__title .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(40%);
      animation: charRise 1.1s var(--ease-out) forwards;
    }
    .hero__title .accent {
      /* italic廃止: italicの傾きが視認性問題を生んでいたため normal に固定 */
      font-style: normal;
      font-weight: 700;
      color: var(--c-brand);
    }
    .hero__title .period {
      display: inline-block;
      width: .12em; height: .12em;
      background-color: var(--c-accent);       /* GP coral period */
      border-radius: 50%;
      vertical-align: 0.06em;
      margin-left: 0.06em;
    }
    @keyframes charRise {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Below-the-fold info block */
    .hero__info {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.1fr);
      gap: 4rem;
      padding-top: 3rem;
      border-top: 1px solid var(--c-line);
      position: relative;
      z-index: 2;
    }
    .hero__info-block {
      display: grid;
      gap: 1.25rem;
      align-content: start;
    }
    .hero__info-label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
    }
    .hero__info-text {
      font-family: var(--f-ja-bold);
      font-weight: 700;                        /* 太字 */
      font-size: 1rem;
      line-height: 1.9;
      letter-spacing: 0.08em;
      color: var(--c-text);
    }
    .hero__info-text--sub {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 2.1;
      color: var(--c-text-sub);
      letter-spacing: 0.06em;
    }
    .hero__actions {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
    }

    /* ============================================
       Button — Goodpatch風 minimal yet rich
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.625rem;
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      border-radius: var(--radius-pill);
      position: relative;
      overflow: hidden;
      transition: transform .35s var(--ease-spring), color .4s var(--ease-out);
      cursor: auto;
    }
    .btn > span { position: relative; z-index: 2; }
    .btn--primary {
      background: var(--c-text);
      color: var(--c-bg);
      box-shadow: 0 4px 16px rgba(10,15,30,.18);
    }
    .btn--primary::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      background: var(--c-brand);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width .55s var(--ease-out), height .55s var(--ease-out);
      z-index: 1;
    }
    .btn--primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(9,111,200,.30);
    }
    .btn--primary:hover::before { width: 240%; height: 600%; }
    .btn--primary::after {
      content: '→';
      font-family: var(--f-en);
      font-weight: 500;
      transition: transform .4s var(--ease-spring);
      position: relative; z-index: 2;
    }
    .btn--primary:hover::after { transform: translateX(5px); }
    .btn--secondary {
      background: transparent;
      color: var(--c-text);
      border: 1.5px solid var(--c-text);
    }
    .btn--secondary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--c-text);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .55s var(--ease-out);
      z-index: 0;
    }
    .btn--secondary > span { position: relative; z-index: 2; color: inherit; }
    .btn--secondary:hover,
    .btn--secondary:hover > span {
      color: #FFFFFF !important;
    }
    .btn--secondary:hover {
      transform: translateY(-3px);
    }
    .btn--secondary:hover::before { transform: scaleX(1); transform-origin: left; }

    /* Hero meta footer */
    /* Hero scroll indicator — FV右側に縦書きで配置 */
    .hero__scroll {
      position: absolute;
      right: 1.75rem;
      bottom: 4rem;
      writing-mode: vertical-rl;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text);
      text-transform: uppercase;
      animation: bobV 2.4s var(--ease-soft) 1.3s infinite both;
      z-index: 3;
    }
    @keyframes bobV {
      0%   { transform: translateY(0); opacity: 0; }
      20%  { opacity: 1; }
      50%  { transform: translateY(6px); opacity: 1; }
      100% { transform: translateY(0); opacity: 1; }
    }
    .hero__scroll-line {
      position: relative;
      display: block;
      width: 1px; height: 4rem;
      background-color: var(--c-line);
      overflow: hidden;
    }
    .hero__scroll-line::after {
      content: '';
      position: absolute; inset: 0;
      background: var(--c-text);
      transform: scaleY(0);
      transform-origin: top;
      animation: scrollSweepV 3s var(--ease-soft) infinite;
    }
    @keyframes scrollSweepV {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      50.01% { transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ============================================
       Section common
       ============================================ */
    .section {
      position: relative;
      padding: 9rem 2.5rem;
      max-width: var(--container);
      margin: 0 auto;
      z-index: 1;
    }
    .section__head {
      display: grid;
      grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
      gap: 4rem;
      align-items: start;
      margin-bottom: 6rem;
      padding-top: 4rem;
      border-top: 1px solid var(--c-line);
    }
    .section__label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
    }
    .section__label::before {
      content: '';
      display: block;
      width: 2rem; height: 1px;
      background: var(--c-text-mute);
    }
    .section__head-body { max-width: 48rem; }
    .section__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;                        /* 太字 */
      font-size: clamp(1.625rem, 2.8vw, 2.25rem);
      line-height: 1.6;
      letter-spacing: 0.04em;
      color: var(--c-text);
      margin-bottom: 1.75rem;
    }
    .section__title em {
      /* 親フォント・サイズ・字間をそのまま継承 (フォント切替なし) */
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: 1em;
      letter-spacing: inherit;
      margin: 0 0.05em;
      background: linear-gradient(110deg,
        var(--c-brand-deep) 0%,
        var(--c-brand) 25%,
        #4A95E0 50%,
        var(--c-brand-2) 75%,
        var(--c-brand) 100%
      );
      background-size: 250% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: emShimmer 7s linear infinite;
    }
    @keyframes emShimmer {
      0%   { background-position: 0% 50%; }
      100% { background-position: 250% 50%; }
    }
    /* Hero title accent — 単色 + breathing animation で常時動的に */
    .hero__title .char.accent {
      color: var(--c-brand);
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      -webkit-text-fill-color: currentColor;
      animation: charRise 1.4s var(--ease-out) forwards, aiBreath 3.6s ease-in-out 2.4s infinite;
      transform-origin: center bottom;
      will-change: transform, color, filter;
    }
    @keyframes aiBreath {
      0%, 100% { color: var(--c-brand); transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
      50% { color: var(--c-brand-deep); transform: scale(1.05); filter: drop-shadow(0 6px 24px rgba(9,111,200,.35)); }
    }
    .section__lead {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
    }

    /* ============================================
       Approach — minimal cards with bold hover
       ============================================ */
    .approach__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);   /* 3 サービスを 1 行に */
      gap: 1.5rem;
    }
    /* 横スワイプ用ヒント (SP のみ表示) */
    .approach__swipe-hint {
      display: none;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.34em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .approach__swipe-hint::before {
      content: '';
      width: 1.75rem;
      height: 1px;
      background: var(--c-text-mute);
    }
    .approach__card {
      background: var(--c-surface);
      padding: 3rem 2.5rem;
      position: relative;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-rest);
      transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
      cursor: auto;
      overflow: hidden;
    }
    .approach__card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(9,111,200,.06), transparent 50%);
      opacity: 0;
      transition: opacity .6s var(--ease-out);
      pointer-events: none;
    }
    .approach__card::after {
      content: '↗';
      position: absolute;
      top: 2rem; right: 2rem;
      font-family: var(--f-en);
      font-weight: 400;
      font-size: 1.25rem;
      color: var(--c-text-mute);
      transform: translate(-4px, 4px);
      opacity: 0;
      transition: transform .5s var(--ease-spring), opacity .5s var(--ease-out), color .5s;
    }
    .approach__card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    .approach__card:hover::before { opacity: 1; }
    .approach__card:hover::after { transform: translate(0,0); opacity: 1; color: var(--c-brand); }
    .approach__card-head {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 3.5rem;
    }
    .approach__card-num {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
    }
    .approach__card-en {
      font-family: var(--f-en);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--c-brand);
      font-style: italic;
    }
    .approach__card-title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.5rem;
      line-height: 1.5;
      letter-spacing: 0.06em;
      color: var(--c-text);
      margin-bottom: 1.75rem;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid var(--c-line);
    }
    .approach__card-desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
    }

    /* ============================================
       Coverage — 4 zones
       ============================================ */
    .coverage__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
    .coverage__card {
      background: var(--c-surface);
      padding: 2.25rem 1.75rem 2rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-rest);
      transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
      position: relative;
      overflow: hidden;
      cursor: auto;
    }
    /* Animated illustration area */
    .coverage__card-vis {
      position: relative;
      height: 6.25rem;
      margin: -0.5rem -0.5rem 1.5rem;
      border-radius: 0.875rem;
      background: linear-gradient(135deg, rgba(9,111,200,.05), rgba(118,183,237,.05));
      overflow: hidden;
      display: grid;
      place-items: center;
    }
    .coverage__card-vis::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 30%, rgba(9,111,200,.10), transparent 55%),
        radial-gradient(circle at 30% 80%, rgba(118,183,237,.10), transparent 55%);
      transition: opacity .5s var(--ease-out);
    }
    .coverage__card:hover .coverage__card-vis::before {
      opacity: 1.4;
    }
    .coverage__card-vis svg {
      position: relative;
      z-index: 1;
      width: 4rem;
      height: 4rem;
      color: var(--c-brand);
    }
    /* Sales icon — animated cursor + chart bars */
    @keyframes covSalesBar1 { 0%, 100% { transform: scaleY(.7); } 50% { transform: scaleY(1); } }
    @keyframes covSalesBar2 { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.6); } }
    @keyframes covSalesBar3 { 0%, 100% { transform: scaleY(.8); } 50% { transform: scaleY(1.1); } }
    .cov-sales-bar { transform-origin: bottom center; transform-box: fill-box; }
    .cov-sales-bar--1 { animation: covSalesBar1 3s var(--ease-soft) infinite; }
    .cov-sales-bar--2 { animation: covSalesBar2 3s var(--ease-soft) infinite .4s; }
    .cov-sales-bar--3 { animation: covSalesBar3 3s var(--ease-soft) infinite .8s; }

    /* Marketing icon — pulse ring + dot */
    @keyframes covMkPulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
    .cov-mk-ring { transform-origin: center; transform-box: fill-box; animation: covMkPulse 2.4s ease-out infinite; }
    .cov-mk-ring--2 { animation-delay: .8s; }
    .cov-mk-ring--3 { animation-delay: 1.6s; }

    /* CS icon — chat bubble bounce */
    @keyframes covCsBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
    .cov-cs-b1 { animation: covCsBounce 2.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
    .cov-cs-b2 { animation: covCsBounce 2.2s ease-in-out infinite .35s; transform-origin: center; transform-box: fill-box; }

    /* Back office icon — doc check */
    @keyframes covBoCheck { 0%, 100% { stroke-dashoffset: 0; } 30% { stroke-dashoffset: 30; } 70% { stroke-dashoffset: 0; } }
    .cov-bo-check {
      stroke-dasharray: 30;
      animation: covBoCheck 3.6s ease-in-out infinite;
    }
    @keyframes covBoLine { 0%, 100% { stroke-dashoffset: 0; } 50% { stroke-dashoffset: 20; } }
    .cov-bo-line {
      stroke-dasharray: 20;
      animation: covBoLine 2.8s ease-in-out infinite;
    }
    .coverage__card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--c-brand);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .6s var(--ease-out);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .coverage__card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .coverage__card:hover::before { transform: scaleX(1); }
    .coverage__card-title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      letter-spacing: 0.1em;
      color: var(--c-text);
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--c-line);
    }
    .coverage__card-list {
      list-style: none;
      display: grid;
      gap: 0.875rem;
    }
    .coverage__card-list li {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 1.7;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
      padding-left: 1.25rem;
      position: relative;
      transition: color .3s, padding-left .3s var(--ease-out);
    }
    .coverage__card-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.85em;
      width: 0.5rem; height: 1px;
      background: var(--c-brand);
      transition: width .3s var(--ease-out);
    }
    .coverage__card:hover .coverage__card-list li { color: var(--c-text); }
    .coverage__card:hover .coverage__card-list li::before { width: 0.875rem; }

    /* ============================================
       Expertise — stats panel
       ============================================ */
    /* (旧: expertise__values — Value Strip は Pillar とマージして削除) */

    /* Expertise — qualitative pillars (差別化訴求 × 4軸) */
    .expertise__pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 6rem;
    }
    .pillar {
      position: relative;
      padding: 2rem 1.5rem 1.875rem;
      background: var(--c-surface);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-rest);
      overflow: hidden;
      transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
      cursor: auto;
      display: flex;
      flex-direction: column;
    }
    .pillar::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--c-brand) 0%, var(--c-accent) 100%);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .6s var(--ease-out);
    }
    .pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .pillar:hover::before { transform: scaleY(1); }
    .pillar__head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .pillar__num {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 0.625rem;
      letter-spacing: 0.24em;
      color: var(--c-brand);
      text-transform: uppercase;
      white-space: nowrap;
    }
    .pillar__divider {
      flex: 1;
      height: 1px;
      background: var(--c-line);
    }
    .pillar__icon {
      width: 2.25rem; height: 2.25rem;
      display: grid;
      place-items: center;
      border-radius: 0.5rem;
      background: linear-gradient(135deg, rgba(9,111,200,.10) 0%, rgba(118,183,237,.10) 100%);
      border: 1px solid rgba(9,111,200,.12);
      color: var(--c-brand);
      flex-shrink: 0;
    }
    .pillar__icon svg { width: 1.25rem; height: 1.25rem; }
    .pillar__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      line-height: 1.55;
      letter-spacing: 0.04em;
      color: var(--c-text);
      margin-bottom: 0.875rem;
    }
    .pillar__title em {
      font-style: normal;
      color: var(--c-brand);
    }
    .pillar__desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 1.9;
      letter-spacing: 0.04em;
      color: var(--c-text-sub);
      margin-bottom: 1.25rem;
      flex: 1 1 auto;
    }
    .pillar__contrast {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px dashed var(--c-line);
      margin-top: auto;
    }
    .pillar__contrast-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.5rem;
      align-items: start;
      font-family: var(--f-ja);
      font-size: 0.6875rem;
      font-weight: 600;
      line-height: 1.65;
      letter-spacing: 0.03em;
    }
    .pillar__contrast-mark {
      display: inline-grid;
      place-items: center;
      width: 1.125rem; height: 1.125rem;
      border-radius: 50%;
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    .pillar__contrast-mark--ng {
      background: rgba(0,0,0,.04);
      color: var(--c-text-mute);
    }
    .pillar__contrast-mark--ok {
      background: var(--c-brand);
      color: #fff;
    }
    .pillar__contrast-row--ng span:last-child { color: var(--c-text-mute); text-decoration: line-through; text-decoration-thickness: 1px; text-decoration-color: rgba(0,0,0,.2); }
    .pillar__contrast-row--ok span:last-child { color: var(--c-text); font-weight: 700; }

    /* Industries — サブセクション導入 */
    .expertise__industries-intro {
      max-width: 48rem;
      margin: 0 0 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px dashed var(--c-line);
    }
    .expertise__industries-intro-label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-brand);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .expertise__industries-intro-title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      line-height: 1.6;
      letter-spacing: 0.04em;
      color: var(--c-text);
      margin-bottom: 1rem;
    }
    .expertise__industries-intro-title em {
      font-style: normal;
      font-weight: 900;
      color: var(--c-brand);
    }
    .expertise__industries-intro-desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 2;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
    }

    /* Industries — slider 形式 */
    .expertise__industries-wrap { position: relative; }
    .expertise__industries {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 1.5rem) / 2);
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 0.5rem;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .expertise__industries::-webkit-scrollbar { display: none; }
    .expertise__industries .industry { scroll-snap-align: start; }
    .industries__nav {
      display: flex;
      justify-content: center;
      gap: 0.875rem;
      margin-top: 2rem;
    }
    .industries__btn {
      width: 2.75rem; height: 2.75rem;
      border-radius: 50%;
      border: 1.5px solid var(--c-line);
      background: var(--c-surface);
      display: grid; place-items: center;
      cursor: auto;
      font-family: var(--f-en);
      font-weight: 600;
      font-size: 1rem;
      color: var(--c-text);
      transition: border-color .3s var(--ease-out), background-color .3s, color .3s, transform .3s var(--ease-spring);
    }
    .industries__btn:hover { border-color: var(--c-text); background: var(--c-text); color: #fff; transform: translateY(-2px); }
    .industries__btn[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }
    .industries__progress {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      padding: 0 1rem;
    }
    .industries__progress-bar {
      width: 6rem;
      height: 2px;
      background: var(--c-line);
      border-radius: 999px;
      overflow: hidden;
      position: relative;
    }
    .industries__progress-bar-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: var(--c-brand);
      width: 0%;
      transition: width .35s var(--ease-out), left .35s var(--ease-out);
    }
    .industry {
      padding: 2.25rem 2.25rem 2.25rem 2rem;
      background: var(--c-surface);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-rest);
      display: grid;
      grid-template-columns: 4.5rem 1fr;
      gap: 1.5rem;
      align-items: start;
      transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
      cursor: auto;
    }
    .industry:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .industry__icon {
      width: 4.5rem; height: 4.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-bg-warm), var(--c-bg));
      border: 1px solid var(--c-line);
      display: grid;
      place-items: center;
      color: var(--c-brand);
      transition: background .5s var(--ease-out), border-color .5s, color .5s, transform .5s var(--ease-spring);
      position: relative;
      overflow: hidden;
    }
    .industry__icon svg {
      width: 60%; height: 60%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      position: relative;
      z-index: 1;
      transition: transform .5s var(--ease-spring);
    }
    .industry:hover .industry__icon {
      background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep));
      border-color: transparent;
      color: #fff;
      transform: scale(1.05) rotate(-3deg);
      box-shadow: 0 12px 24px -8px rgba(9,111,200,.40);
    }
    .industry:hover .industry__icon svg { transform: scale(1.1); }
    .industry__body {
      display: grid;
      gap: 0.875rem;
    }
    .industry__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      line-height: 1.7;
      letter-spacing: 0.08em;
      color: var(--c-text);
    }
    .industry__desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
    }

    /* ============================================
       Products / Cases — Goodpatch風 fullbleed slider
       ============================================ */
    .products {
      max-width: none;
      margin: 0;
      padding: 0;
      position: relative;
      background: var(--c-brand);
      color: #fff;
      overflow: hidden;
      transition: background-color 1.1s var(--ease-soft);
      z-index: 1;
    }
    .products[data-active="0"] { background: var(--c-brand); }
    .products[data-active="1"] { background: #BE4F2A; }
    .products[data-active="2"] { background: #1F2D55; }
    .products__viewport {
      position: relative;
      min-height: 100vh;
      padding: 9rem 0 8rem;
    }
    .products__bg-type {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--f-en);
      font-weight: 800;
      font-size: clamp(14rem, 30vw, 30rem);
      line-height: 0.8;
      letter-spacing: -0.05em;
      color: rgba(255,255,255,.06);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0;
      transition: opacity .9s var(--ease-soft);
    }
    .products__bg-type.is-active { opacity: 1; }
    .products__topbar {
      position: absolute;
      top: 5.5rem; left: 0; right: 0;
      display: flex;
      justify-content: center;
      gap: 1rem;
      z-index: 5;
    }
    .products__topbar-label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(255,255,255,.85);
      text-transform: uppercase;
    }
    .products__slides {
      position: relative;
      width: 100%;
    }
    .product-slide {
      position: relative;
      width: 100%;
      display: none;
      grid-template-rows: auto auto auto;
      align-content: center;
      gap: 2.5rem;
      padding: 2rem 2.5rem 0;
    }
    .product-slide.is-active {
      display: grid;
      animation: slideIn .9s var(--ease-out);
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .product-slide__head {
      text-align: center;
      max-width: 56rem;
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }
    .product-slide__category {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(255,255,255,.75);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: block;
    }
    .product-slide__heading {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: clamp(1.5rem, 3.2vw, 2.25rem);
      line-height: 1.6;
      letter-spacing: 0.04em;
      color: #fff;
      max-width: 30em;
      margin: 0 auto;
    }
    .product-slide__device-wrap {
      position: relative;
      max-width: 56rem;
      margin: 0 auto;
      z-index: 3;
      perspective: 1400px;
    }
    .product-slide__device {
      position: relative;
      aspect-ratio: 16 / 10;
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 40px 80px -20px rgba(0,0,0,.40), 0 80px 160px -40px rgba(0,0,0,.35);
      transform: rotateX(6deg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: deviceFloat 8s var(--ease-soft) infinite;
    }
    @keyframes deviceFloat {
      0%, 100% { transform: rotateX(6deg) translateY(0); }
      50% { transform: rotateX(6deg) translateY(-10px); }
    }
    /* スクリーン反射光 */
    .product-slide__device::after {
      content: '';
      position: absolute;
      top: 0; left: -30%;
      width: 50%; height: 100%;
      background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
      animation: deviceSheen 9s var(--ease-soft) infinite;
      pointer-events: none;
      z-index: 4;
    }
    @keyframes deviceSheen {
      0%, 100% { transform: translateX(0); opacity: 0; }
      40%      { opacity: 0.7; }
      80%      { transform: translateX(280%); opacity: 0; }
    }
    .product-slide__device-bar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.125rem;
      background: #F0F0F2;
      border-bottom: 1px solid #E0E0E4;
    }
    .product-slide__device-dot {
      width: 0.625rem; height: 0.625rem;
      border-radius: 50%;
    }
    .product-slide__device-dot:nth-child(1) { background: #FF5F57; }
    .product-slide__device-dot:nth-child(2) { background: #FEBC2E; }
    .product-slide__device-dot:nth-child(3) { background: #28C840; }
    .product-slide__device-url {
      flex: 1;
      margin-left: 0.75rem;
      max-width: 22rem;
      height: 1.375rem;
      background: #fff;
      border-radius: 0.4375rem;
      padding: 0 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.4375rem;
      font-family: var(--f-en);
      font-size: 0.5625rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: #6B6F7A;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
    }
    .product-slide__device-url::before {
      content: '🔒';
      font-size: 0.5rem;
      filter: grayscale(1);
    }
    .product-slide__device-screen {
      flex: 1;
      display: grid;
      grid-template-columns: 11rem 1fr;
      gap: 1rem;
      padding: 1rem;
      background: linear-gradient(180deg, #FAFBFC, #F0F2F5);
      position: relative;
    }
    /* サイドバー — リッチ化 */
    .product-slide__device-side {
      background: #fff;
      border-radius: 0.625rem;
      padding: 0.875rem;
      display: grid;
      gap: 0.625rem;
      align-content: start;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
    }
    .product-slide__device-side-header {
      display: flex;
      align-items: center;
      gap: 0.4375rem;
      padding-bottom: 0.625rem;
      border-bottom: 1px solid #ECEEF4;
      margin-bottom: 0.25rem;
    }
    .product-slide__device-side-avatar {
      width: 1.5rem; height: 1.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-brand), var(--c-brand-2));
      display: grid;
      place-items: center;
      color: #fff;
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 0.5625rem;
    }
    .product-slide__device-side-info {
      display: grid;
      gap: 0.125rem;
      min-width: 0;
    }
    .product-slide__device-side-name {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.5625rem;
      letter-spacing: 0.02em;
      color: var(--c-text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .product-slide__device-side-role {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #909096;
      text-transform: uppercase;
    }
    .product-slide__device-row {
      height: 0.5rem;
      background: #ECEEF4;
      border-radius: 999px;
      position: relative;
      overflow: hidden;
    }
    .product-slide__device-row::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
      transform: translateX(-100%);
      animation: rowShimmer 3s var(--ease-soft) infinite;
    }
    @keyframes rowShimmer {
      0%, 60%, 100% { transform: translateX(-100%); }
      30%           { transform: translateX(100%); }
    }
    .product-slide__device-row--active { background: linear-gradient(90deg, var(--c-brand), var(--c-brand-2)); }
    .product-slide__device-row--short { width: 65%; }
    .product-slide__device-row--mid { width: 80%; }

    /* メイン領域 */
    .product-slide__device-main {
      background: #fff;
      border-radius: 0.625rem;
      padding: 0.875rem;
      display: grid;
      gap: 0.625rem;
      align-content: start;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
      position: relative;
    }
    .product-slide__device-main-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #ECEEF4;
    }
    .product-slide__device-main-title {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.625rem;
      letter-spacing: 0.04em;
      color: var(--c-text);
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }
    .product-slide__device-main-title::before {
      content: '●';
      color: #28C840;
      font-size: 0.5rem;
      animation: blink 1.6s ease-in-out infinite;
    }
    .product-slide__device-main-actions {
      display: flex;
      gap: 0.25rem;
    }
    .product-slide__device-action-btn {
      width: 1rem; height: 1rem;
      border-radius: 0.25rem;
      background: #F4F5F8;
      display: grid;
      place-items: center;
      color: #909096;
      font-size: 0.4375rem;
      font-weight: 700;
    }

    .product-slide__device-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }
    .product-slide__device-cell {
      background: linear-gradient(180deg, #F8F9FB, #F4F5F8);
      border: 1px solid #ECEEF4;
      border-radius: 0.4375rem;
      padding: 0.625rem 0.625rem 0.5rem;
      position: relative;
      overflow: hidden;
    }
    .product-slide__device-cell-trend {
      position: absolute;
      top: 0.375rem; right: 0.375rem;
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 800;
      padding: 0.0625rem 0.3125rem;
      border-radius: 999px;
    }
    .product-slide__device-cell-trend--up {
      background: rgba(18,138,92,.12);
      color: #128A5C;
    }
    .product-slide__device-cell-trend--down {
      background: rgba(224,50,80,.12);
      color: #E03250;
    }
    .product-slide__device-num {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 1.0625rem;
      line-height: 1;
      color: var(--c-text);
      margin-bottom: 0.375rem;
      letter-spacing: -0.02em;
    }
    .product-slide__device-num--green { color: #128A5C; }
    .product-slide__device-num--red { color: #E03250; }
    .product-slide__device-cell-label {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #909096;
      text-transform: uppercase;
    }
    .product-slide__device-cell-spark {
      margin-top: 0.4375rem;
      height: 0.875rem;
      width: 100%;
    }
    .product-slide__device-cell-spark svg {
      width: 100%; height: 100%;
      display: block;
    }
    .product-slide__device-cell-spark path {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
      animation: sparkDraw 2.5s var(--ease-out) forwards;
    }
    .product-slide__device-cell:nth-child(2) .product-slide__device-cell-spark path { animation-delay: 0.3s; }
    .product-slide__device-cell:nth-child(3) .product-slide__device-cell-spark path { animation-delay: 0.6s; }
    @keyframes sparkDraw {
      to { stroke-dashoffset: 0; }
    }

    .product-slide__device-chart {
      height: 5.5rem;
      background: linear-gradient(180deg, #FBFCFD, #F8F9FB);
      border: 1px solid #ECEEF4;
      border-radius: 0.4375rem;
      padding: 0.625rem 0.75rem;
      position: relative;
      overflow: hidden;
    }
    .product-slide__device-chart::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image:
        linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px);
      background-size: 100% 1.25rem;
      pointer-events: none;
    }
    .product-slide__device-chart svg {
      width: 100%; height: 100%;
      display: block;
      position: relative;
      z-index: 1;
    }
    .product-slide__device-chart-line {
      stroke-dasharray: 800;
      stroke-dashoffset: 800;
      animation: chartDraw 2.5s var(--ease-out) 0.3s forwards;
    }
    @keyframes chartDraw {
      to { stroke-dashoffset: 0; }
    }
    .product-slide__device-chart-area {
      opacity: 0;
      animation: chartFade .8s var(--ease-out) 2.6s forwards;
    }
    @keyframes chartFade {
      to { opacity: 1; }
    }

    /* 浮遊バッジ — 達成バッジ */
    .product-slide__device-badge {
      position: absolute;
      top: 22%; right: 4%;
      z-index: 5;
      padding: 0.4375rem 0.75rem;
      background: linear-gradient(135deg, #28C840 0%, #1AA834 100%);
      color: #fff;
      font-family: var(--f-ja-bold);
      font-size: 0.5625rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      border-radius: 999px;
      box-shadow: 0 10px 24px -6px rgba(40,200,64,.5);
      display: inline-flex;
      align-items: center;
      gap: 0.3125rem;
      animation: badgePopFloat 4s var(--ease-soft) infinite 2s;
      opacity: 0;
    }
    .product-slide__device-badge::before {
      content: '✓';
      width: 0.75rem; height: 0.75rem;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.3);
      font-size: 0.5rem;
      font-weight: 900;
    }
    @keyframes badgePopFloat {
      0%, 100% { opacity: 0; transform: translateY(8px) scale(0.85); }
      15%      { opacity: 1; transform: translateY(0) scale(1); }
      75%      { opacity: 1; transform: translateY(-3px) scale(1); }
      90%      { opacity: 0; transform: translateY(-10px) scale(0.95); }
    }

    /* ============================================
       Slide 2 — Chat conversation UI (RAG Chat Support)
       ============================================ */
    .product-slide__chat {
      flex: 1;
      display: grid;
      grid-template-columns: 11rem 1fr;
      gap: 1rem;
      padding: 1rem;
      background: linear-gradient(180deg, #FAFBFC, #F0F2F5);
    }
    .product-slide__chat-side {
      background: #fff;
      border-radius: 0.625rem;
      padding: 0.875rem;
      display: grid;
      gap: 0.625rem;
      align-content: start;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
    }
    .product-slide__chat-side-stats {
      display: grid;
      gap: 0.625rem;
      padding-bottom: 0.625rem;
      border-bottom: 1px solid #ECEEF4;
    }
    .product-slide__chat-stat {
      display: grid;
      gap: 0.1875rem;
    }
    .product-slide__chat-stat-val {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 1rem;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #128A5C;
    }
    .product-slide__chat-stat-val--coral { color: #BE4F2A; }
    .product-slide__chat-stat-val--brand { color: var(--c-brand); }
    .product-slide__chat-stat-label {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #909096;
      text-transform: uppercase;
    }
    .product-slide__chat-side-list {
      display: grid;
      gap: 0.375rem;
    }
    .product-slide__chat-side-item {
      display: grid;
      grid-template-columns: 1rem 1fr;
      gap: 0.4375rem;
      align-items: center;
      font-family: var(--f-ja);
      font-size: 0.5rem;
      font-weight: 600;
      color: #6B6F7A;
      letter-spacing: 0.04em;
      padding: 0.375rem 0;
      border-radius: 0.25rem;
    }
    .product-slide__chat-side-item.is-active {
      background: rgba(190, 79, 42, 0.08);
      padding: 0.375rem 0.4375rem;
      color: #BE4F2A;
      font-weight: 700;
    }
    .product-slide__chat-side-dot {
      width: 0.5rem; height: 0.5rem;
      border-radius: 50%;
      background: #D1D5DB;
    }
    .product-slide__chat-side-item.is-active .product-slide__chat-side-dot {
      background: #BE4F2A;
      box-shadow: 0 0 6px rgba(190,79,42,.5);
    }

    .product-slide__chat-main {
      background: #fff;
      border-radius: 0.625rem;
      padding: 0.875rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
      overflow: hidden;
    }
    .product-slide__chat-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #ECEEF4;
    }
    .product-slide__chat-header-avatar {
      width: 1.375rem; height: 1.375rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #BE4F2A, #E07A4F);
      display: grid;
      place-items: center;
      color: #fff;
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 0.4375rem;
    }
    .product-slide__chat-header-info {
      display: grid;
      gap: 0;
    }
    .product-slide__chat-header-name {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.5625rem;
      color: var(--c-text);
    }
    .product-slide__chat-header-status {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #28C840;
      text-transform: uppercase;
    }
    .product-slide__chat-header-status::before {
      content: '●';
      margin-right: 0.25rem;
      animation: blink 1.6s ease-in-out infinite;
    }
    .product-slide__chat-msgs {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.4375rem;
      overflow: hidden;
      align-content: end;
    }
    .product-slide__chat-msg {
      padding: 0.4375rem 0.625rem;
      border-radius: 0.625rem;
      font-family: var(--f-ja);
      font-size: 0.5rem;
      line-height: 1.5;
      letter-spacing: 0.04em;
      max-width: 80%;
      opacity: 0;
      transform: translateY(6px);
      animation: chatMsgIn 0.4s var(--ease-out) forwards;
    }
    @keyframes chatMsgIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .product-slide__chat-msg--user {
      background: #F4F5F8;
      color: var(--c-text);
      align-self: flex-end;
      border-bottom-right-radius: 0.1875rem;
    }
    .product-slide__chat-msg--bot {
      background: linear-gradient(135deg, #BE4F2A, #D6663E);
      color: #fff;
      align-self: flex-start;
      border-bottom-left-radius: 0.1875rem;
    }
    .product-slide__chat-msg--bot strong {
      background: rgba(255,255,255,.22);
      padding: 0 0.25rem;
      border-radius: 0.1875rem;
      font-weight: 700;
    }
    .product-slide__chat-msg:nth-child(1) { animation-delay: 0.3s; }
    .product-slide__chat-msg:nth-child(2) { animation-delay: 1.0s; }
    .product-slide__chat-msg:nth-child(3) { animation-delay: 1.7s; }
    .product-slide__chat-msg:nth-child(4) { animation-delay: 2.4s; }
    .product-slide__chat-typing {
      align-self: flex-start;
      display: flex;
      gap: 0.1875rem;
      padding: 0.4375rem 0.625rem;
      background: #F4F5F8;
      border-radius: 0.625rem;
      border-bottom-left-radius: 0.1875rem;
      opacity: 0;
      animation: chatMsgIn 0.4s var(--ease-out) 3.1s forwards;
    }
    .product-slide__chat-typing span {
      width: 0.25rem; height: 0.25rem;
      border-radius: 50%;
      background: #909096;
      animation: chatTyping 1.4s ease-in-out infinite;
    }
    .product-slide__chat-typing span:nth-child(2) { animation-delay: 0.2s; }
    .product-slide__chat-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes chatTyping {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30%           { transform: translateY(-3px); opacity: 1; }
    }
    .product-slide__chat-input {
      display: flex;
      align-items: center;
      gap: 0.4375rem;
      padding: 0.4375rem 0.5rem;
      background: #F8F9FB;
      border: 1px solid #ECEEF4;
      border-radius: 999px;
      margin-top: 0.375rem;
    }
    .product-slide__chat-input-placeholder {
      flex: 1;
      font-family: var(--f-ja);
      font-size: 0.4375rem;
      color: #909096;
      letter-spacing: 0.04em;
    }
    .product-slide__chat-input-send {
      width: 0.875rem; height: 0.875rem;
      border-radius: 50%;
      background: #BE4F2A;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 0.4375rem;
      font-weight: 700;
    }

    /* ============================================
       Slide 3 — Voice AI / Phone call UI
       ============================================ */
    .product-slide__voice {
      flex: 1;
      padding: 1.25rem 1.5rem;
      background: linear-gradient(180deg, #FAFBFC, #F0F2F5);
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 0.75rem;
    }
    .product-slide__voice-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.625rem 0.875rem;
      background: rgba(9,111,200,.06);
      border: 1px solid rgba(9,111,200,.12);
      border-radius: 0.5rem;
    }
    .product-slide__voice-header-left {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .product-slide__voice-phone-icon {
      width: 1.5rem; height: 1.5rem;
      border-radius: 50%;
      background: var(--c-brand);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 0.6875rem;
      animation: phoneShake 1.4s var(--ease-soft) infinite;
    }
    @keyframes phoneShake {
      0%, 100% { transform: rotate(0); }
      10%      { transform: rotate(-12deg); }
      20%      { transform: rotate(12deg); }
      30%      { transform: rotate(-8deg); }
      40%      { transform: rotate(8deg); }
      50%      { transform: rotate(0); }
    }
    .product-slide__voice-status {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.5625rem;
      color: var(--c-text);
      letter-spacing: 0.04em;
    }
    .product-slide__voice-status small {
      display: block;
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      color: #28C840;
      letter-spacing: 0.16em;
      margin-top: 0.0625rem;
    }
    .product-slide__voice-status small::before {
      content: '●';
      margin-right: 0.25rem;
      animation: blink 1.6s ease-in-out infinite;
    }
    .product-slide__voice-duration {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 0.6875rem;
      color: var(--c-text);
      letter-spacing: -0.01em;
    }

    /* 中央: 波形 + メイン情報 */
    .product-slide__voice-main {
      background: #fff;
      border-radius: 0.625rem;
      padding: 1rem;
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 0.625rem;
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
    }
    .product-slide__voice-caller {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .product-slide__voice-caller-name {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.625rem;
      color: var(--c-text);
    }
    .product-slide__voice-caller-num {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      color: #909096;
      letter-spacing: 0.08em;
    }
    .product-slide__voice-wave {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.1875rem;
      height: 1.5rem;
    }
    .product-slide__voice-wave-bar {
      width: 0.1875rem;
      background: linear-gradient(180deg, var(--c-brand) 0%, var(--c-brand-2) 100%);
      border-radius: 999px;
      animation: voiceWave 1.2s var(--ease-soft) infinite;
    }
    .product-slide__voice-wave-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
    .product-slide__voice-wave-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
    .product-slide__voice-wave-bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
    .product-slide__voice-wave-bar:nth-child(4) { height: 70%; animation-delay: 0.3s; }
    .product-slide__voice-wave-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
    .product-slide__voice-wave-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
    .product-slide__voice-wave-bar:nth-child(7) { height: 50%; animation-delay: 0.6s; }
    .product-slide__voice-wave-bar:nth-child(8) { height: 90%; animation-delay: 0.7s; }
    .product-slide__voice-wave-bar:nth-child(9) { height: 60%; animation-delay: 0.8s; }
    .product-slide__voice-wave-bar:nth-child(10) { height: 35%; animation-delay: 0.9s; }
    .product-slide__voice-wave-bar:nth-child(11) { height: 75%; animation-delay: 1.0s; }
    .product-slide__voice-wave-bar:nth-child(12) { height: 45%; animation-delay: 1.1s; }
    @keyframes voiceWave {
      0%, 100% { transform: scaleY(0.5); }
      50%      { transform: scaleY(1); }
    }

    /* トランスクリプト */
    .product-slide__voice-transcript {
      display: flex;
      flex-direction: column;
      gap: 0.3125rem;
      max-height: 5rem;
      overflow: hidden;
      padding: 0.5rem;
      background: linear-gradient(180deg, #F8F9FB, #F0F2F5);
      border-radius: 0.4375rem;
    }
    .product-slide__voice-line {
      display: flex;
      gap: 0.4375rem;
      font-family: var(--f-ja);
      font-size: 0.4375rem;
      line-height: 1.45;
      letter-spacing: 0.04em;
      opacity: 0;
      animation: transcriptIn 0.4s var(--ease-out) forwards;
    }
    @keyframes transcriptIn {
      to { opacity: 1; }
    }
    .product-slide__voice-line:nth-child(1) { animation-delay: 0.4s; }
    .product-slide__voice-line:nth-child(2) { animation-delay: 1.2s; }
    .product-slide__voice-line:nth-child(3) { animation-delay: 2.0s; }
    .product-slide__voice-line-who {
      font-family: var(--f-en);
      font-size: 0.375rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #909096;
      text-transform: uppercase;
      min-width: 1.5rem;
      flex-shrink: 0;
    }
    .product-slide__voice-line--ai .product-slide__voice-line-who { color: var(--c-brand); }
    .product-slide__voice-line-text { color: var(--c-text-sub); }
    .product-slide__voice-line--ai .product-slide__voice-line-text {
      color: var(--c-text);
      font-weight: 600;
    }

    /* 下部メトリクス */
    .product-slide__voice-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.4375rem;
    }
    .product-slide__voice-stat {
      background: rgba(9,111,200,.05);
      border: 1px solid rgba(9,111,200,.10);
      border-radius: 0.375rem;
      padding: 0.4375rem 0.5rem;
      text-align: center;
    }
    .product-slide__voice-stat-val {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 0.8125rem;
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--c-text);
    }
    .product-slide__voice-stat-val--green { color: #128A5C; }
    .product-slide__voice-stat-label {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #909096;
      text-transform: uppercase;
      margin-top: 0.1875rem;
    }

    .product-slide__view {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 7rem; height: 7rem;
      background: var(--c-brand);
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      grid-auto-flow: column;
      gap: 0.25rem;
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      z-index: 4;
      box-shadow: 0 16px 40px rgba(0,0,0,.30);
      transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-out);
      cursor: auto;
    }
    .product-slide__view::after {
      content: '↗';
      font-size: 0.875rem;
    }
    .product-slide__view:hover {
      transform: translate(-50%, -50%) scale(1.12);
      box-shadow: 0 20px 48px rgba(0,0,0,.40);
    }
    .product-slide__corner {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(255,255,255,.75);
      text-transform: uppercase;
      display: flex;
      justify-content: space-between;
      align-items: end;
      padding: 0 2.5rem;
      position: relative;
      z-index: 3;
    }
    .product-slide__metric {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 1.625rem;
      letter-spacing: -0.02em;
      color: #fff;
    }
    .product-slide__big {
      position: absolute;
      right: 2.5rem; bottom: 7rem;
      font-family: var(--f-en);
      font-weight: 700;
      font-size: clamp(2.5rem, 5.5vw, 5rem);
      line-height: 0.9;
      letter-spacing: -0.05em;
      color: rgba(255,255,255,.15);
      text-align: right;
      z-index: 2;
      pointer-events: none;
    }
    .product-slide__big em {
      display: block;
      font-style: italic;
      color: rgba(255,255,255,.28);
      font-weight: 700;
    }
    .products__nav {
      position: absolute;
      bottom: 3rem; left: 0; right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      z-index: 5;
    }
    .products__dots {
      display: flex;
      gap: 0.625rem;
      align-items: center;
    }
    .products__dot {
      width: 2rem; height: 2px;
      background: rgba(255,255,255,.30);
      border: none;
      border-radius: 999px;
      cursor: auto;
      transition: background-color .35s, width .35s var(--ease-out);
      padding: 0;
      font-size: 0;
    }
    .products__dot.is-active {
      background: #fff;
      width: 3.5rem;
    }
    .products__arrow {
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.30);
      background: transparent;
      color: #fff;
      display: grid;
      place-items: center;
      cursor: auto;
      font-family: var(--f-en);
      font-size: 1.125rem;
      transition: background-color .3s, border-color .3s, transform .4s var(--ease-spring);
    }
    .products__arrow:hover {
      background: rgba(255,255,255,.15);
      border-color: #fff;
      transform: scale(1.1);
    }
    .products__progress {
      position: absolute;
      bottom: 0; left: 0;
      height: 2px;
      background: rgba(255,255,255,.6);
      z-index: 5;
      transition: width 5.5s linear;
    }
    .products__progress.is-resetting { transition: none; width: 0; }

    /* ============================================
       Ventures — AI事業展開リッチカード
       ============================================ */
    .ventures__list {
      display: grid;
      gap: 2.5rem;
    }

    /* AI LP Agent ミニステージ（venture__visualの内側） */
    .lp-mini-stage {
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      height: 100%;
    }
    @keyframes lpMiniAppear {
      0%, 18%  { opacity: 0; transform: translateX(-8px); }
      24%, 90% { opacity: 1; transform: translateX(0); }
      100%     { opacity: 0; transform: translateX(4px); }
    }
    .lp-mini-stage__row {
      height: 0.625rem;
      border-radius: 0.25rem;
      background: linear-gradient(90deg, rgba(9,111,200,.22) 0%, rgba(91,108,255,.12) 100%);
      animation: lpMiniAppear 5s ease-in-out infinite;
      transform-origin: left center;
    }
    .lp-mini-stage__row--lg {
      height: 1.125rem;
      width: 75%;
      background: linear-gradient(90deg, rgba(9,111,200,.36) 0%, rgba(91,108,255,.18) 100%);
      animation-delay: 0s;
    }
    .lp-mini-stage__row--md { width: 90%; animation-delay: .4s; }
    .lp-mini-stage__row--sm { width: 55%; animation-delay: .8s; }
    .lp-mini-stage__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.4rem;
      margin-top: 0.5rem;
    }
    .lp-mini-stage__card {
      height: 2rem;
      border-radius: 0.375rem;
      background: linear-gradient(135deg, #E8F1FB 0%, #D5E3F5 100%);
      border: 1px solid rgba(9,111,200,.18);
      animation: lpMiniAppear 5s ease-in-out infinite;
    }
    .lp-mini-stage__card:nth-child(1) { animation-delay: 1.0s; }
    .lp-mini-stage__card:nth-child(2) { animation-delay: 1.4s; }
    .lp-mini-stage__card:nth-child(3) { animation-delay: 1.8s; }
    .lp-mini-stage__cta {
      margin-top: 0.5rem;
      height: 1.25rem;
      width: 50%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-2) 100%);
      animation: lpMiniAppear 5s ease-in-out infinite;
      animation-delay: 2.2s;
      box-shadow: 0 4px 10px -2px rgba(9,111,200,.45);
    }

    /* スワイプヒント（モバイルのみ表示） */
    .ventures__swipe-hint {
      display: none;
    }
    @media (max-width: 768px) {
      .ventures__swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        margin: 0 0 1.25rem;
        padding: 0.625rem 1rem;
        background: linear-gradient(120deg, rgba(9,111,200,.08), rgba(118,183,237,.10));
        border: 1px solid rgba(9,111,200,.20);
        border-radius: 999px;
        font-family: var(--f-ja);
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--c-brand-deep);
        letter-spacing: 0.04em;
      }
      .ventures__swipe-hint__icon {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        animation: swipeHintMove 1.8s ease-in-out infinite;
      }
      .ventures__swipe-hint__icon::before {
        content: '';
        width: 1rem; height: 1rem;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230556A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11V6a2 2 0 0 1 4 0v5'/%3E%3Cpath d='M13 11V4a2 2 0 0 1 4 0v9'/%3E%3Cpath d='M17 13V8a2 2 0 0 1 4 0v8a6 6 0 0 1-6 6h-2.5a4 4 0 0 1-3.46-2L4 14'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
      }
      @keyframes swipeHintMove {
        0%, 100% { transform: translateX(-6px); opacity: .7; }
        50%      { transform: translateX(6px); opacity: 1; }
      }

      /* Ventures Live スライダー化 */
      .ventures__list {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        margin: 0 -1.25rem;
        padding: 0.25rem 1.25rem 1.5rem;
        scroll-padding-left: 1.25rem;
      }
      .ventures__list::-webkit-scrollbar {
        height: 4px;
      }
      .ventures__list::-webkit-scrollbar-track {
        background: rgba(9,111,200,.08);
        border-radius: 999px;
      }
      .ventures__list::-webkit-scrollbar-thumb {
        background: var(--c-brand);
        border-radius: 999px;
      }
      .ventures__list > .venture {
        flex: 0 0 88%;
        scroll-snap-align: start;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
      }
      .ventures__list > .venture--coming {
        flex: 0 0 88%;
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
      }
      .ventures__list > .venture--reverse .venture__info { order: 1; }
      .ventures__list > .venture--reverse .venture__visual { order: 2; }
    }
    .venture {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 4rem;
      align-items: center;
      background: var(--c-surface);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-rest);
      overflow: hidden;
      padding: 4rem 4.5rem;
      transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
      cursor: auto;
    }
    .venture:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .venture--reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    }
    .venture--reverse .venture__info { order: 2; }
    .venture--reverse .venture__visual { order: 1; }
    .venture--coming {
      background: transparent;
      box-shadow: none;
      border: 1.5px dashed var(--c-line);
      padding: 3rem 4.5rem;
      grid-template-columns: 8rem 1fr auto;
      gap: 2rem;
    }
    .venture--coming:hover {
      transform: none;
      box-shadow: none;
      border-color: var(--c-brand);
    }
    .venture--coming:hover .venture__coming-label { color: var(--c-brand); }

    .venture__info {
      display: grid;
      gap: 1.75rem;
      align-content: start;
    }
    .venture__head {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .venture__num {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 3rem;
      line-height: 1;
      letter-spacing: -0.05em;
      background: linear-gradient(110deg, var(--c-brand-deep), var(--c-brand), var(--c-brand-2));
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: emShimmer 8s linear infinite;
    }
    .venture__pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 0.875rem;
      background: rgba(9,111,200,.08);
      border-radius: var(--radius-pill);
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--c-brand);
      text-transform: uppercase;
    }
    .venture__pill::before {
      content: '';
      width: 0.5rem; height: 0.5rem;
      background: var(--c-brand);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(9,111,200,.6);
      animation: dotPulse 2s var(--ease-soft) infinite;
    }
    .venture__pill--coming {
      background: rgba(154,154,154,.10);
      color: var(--c-text-mute);
    }
    .venture__pill--coming::before {
      background: var(--c-text-mute);
      box-shadow: none;
      animation: none;
    }
    .venture__en {
      font-family: var(--f-en);
      font-weight: 700;
      font-style: italic;
      font-size: 0.9375rem;
      letter-spacing: 0.04em;
      color: var(--c-brand);
    }
    .venture__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      line-height: 1.5;
      letter-spacing: 0.04em;
      color: var(--c-text);
    }
    .venture__title em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      font-size: 1em;
      letter-spacing: inherit;
      margin: 0 0.05em;
      background: linear-gradient(110deg,
        var(--c-brand-deep) 0%,
        var(--c-brand) 25%,
        #4A95E0 50%,
        var(--c-brand-2) 75%,
        var(--c-brand) 100%);
      background-size: 250% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: emShimmer 7s linear infinite;
    }
    .venture__desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.9375rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
      max-width: 32em;
    }
    .venture__metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      padding: 1.5rem 0;
      border-top: 1px solid var(--c-line);
      border-bottom: 1px solid var(--c-line);
    }
    .venture__metric {
      display: grid;
      gap: 0.375rem;
    }
    .venture__metric-num {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--c-text);
    }
    .venture__metric-num small {
      font-size: 0.5em;
      font-weight: 600;
      color: var(--c-text-mute);
      margin-left: 0.1em;
      letter-spacing: 0;
    }
    .venture__metric-label {
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--c-text-mute);
      text-transform: uppercase;
    }
    .venture__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.625rem;
      background: var(--c-text);
      color: var(--c-bg);
      border-radius: var(--radius-pill);
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      transition: transform .4s var(--ease-spring), background-color .4s;
      align-self: start;
      position: relative;
      overflow: hidden;
      cursor: auto;
    }
    .venture__cta > span { position: relative; z-index: 2; }
    .venture__cta::after {
      content: '→';
      font-family: var(--f-en);
      transition: transform .4s var(--ease-spring);
      position: relative; z-index: 2;
    }
    .venture__cta::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      background: var(--c-brand);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width .55s var(--ease-out), height .55s var(--ease-out);
      z-index: 1;
    }
    .venture__cta:hover { transform: translateY(-3px); }
    .venture__cta:hover::after { transform: translateX(5px); }
    .venture__cta:hover::before { width: 240%; height: 600%; }

    /* Visual: PC dashboard mockup — AIエージェントが営業活動を実行する立体的演出 */
    .venture__visual {
      position: relative;
      aspect-ratio: 5 / 4;
      background: linear-gradient(135deg, #F4F7FB 0%, #E8F0FA 50%, #DCE8F5 100%);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 48px -16px rgba(9,111,200,.18);
      perspective: 1400px;
      padding: 2rem 1.75rem;
      display: grid;
      place-items: center;
    }
    .venture__visual-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 20%, rgba(9,111,200,.10), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(118,183,237,.12), transparent 55%);
      animation: ventureBg 12s var(--ease-soft) infinite;
    }
    @keyframes ventureBg {
      0%, 100% { transform: scale(1) rotate(0deg); }
      50% { transform: scale(1.1) rotate(2deg); }
    }
    .venture__visual-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    /* MacBook風 PCモック */
    .venture__visual-pc {
      position: relative;
      width: 92%;
      max-width: 28rem;
      transform: rotateX(8deg) rotateY(-4deg);
      transform-style: preserve-3d;
      z-index: 2;
      animation: pcFloat 6s var(--ease-soft) infinite;
    }
    @keyframes pcFloat {
      0%, 100% { transform: rotateX(8deg) rotateY(-4deg) translateY(0); }
      50%      { transform: rotateX(6deg) rotateY(-3deg) translateY(-6px); }
    }
    .venture__visual-pc__screen {
      aspect-ratio: 16 / 10;
      background: linear-gradient(180deg, #0F1E36 0%, #122849 100%);
      border-radius: 0.75rem 0.75rem 0 0;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow:
        0 30px 60px -20px rgba(9,111,200,.35),
        0 0 0 2px rgba(255,255,255,.04),
        inset 0 0 0 1px rgba(255,255,255,.06);
      padding: 1rem 1rem 0.75rem;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 0.75rem;
      overflow: hidden;
      position: relative;
    }
    .venture__visual-pc__screen::before {
      /* 画面背景のソフトブルーグロー (どすグロイ青→澄んだ青) */
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(118,183,237,.18), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(9,111,200,.18), transparent 55%);
      pointer-events: none;
    }
    .venture__visual-pc__screen::after {
      /* 画面反射光 */
      content: '';
      position: absolute;
      top: 0; left: -30%;
      width: 60%; height: 100%;
      background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.08) 50%, transparent 65%);
      animation: screenSheen 7s var(--ease-soft) infinite;
      pointer-events: none;
    }
    @keyframes screenSheen {
      0%, 100% { transform: translateX(0); opacity: 0; }
      30%      { opacity: 0.8; }
      70%      { transform: translateX(220%); opacity: 0; }
    }
    /* キーボードベース */
    .venture__visual-pc__base {
      height: 0.625rem;
      background: linear-gradient(180deg, #C8D2E0 0%, #8B97AB 50%, #5C6779 100%);
      border-radius: 0 0 0.75rem 0.75rem;
      transform: scaleX(1.06) translateY(-1px);
      box-shadow: 0 18px 28px -12px rgba(0,0,0,.5);
      position: relative;
    }
    .venture__visual-pc__notch {
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 18%;
      height: 0.25rem;
      background: rgba(0,0,0,.35);
      border-radius: 0 0 0.375rem 0.375rem;
    }
    /* 上部バー (信号機ドット + アドレスバー風) */
    .venture__visual-pc__bar {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }
    .venture__visual-pc__dots {
      display: inline-flex;
      gap: 0.3125rem;
    }
    .venture__visual-pc__dot {
      width: 0.5rem; height: 0.5rem;
      border-radius: 50%;
      background: rgba(255,255,255,.22);
    }
    .venture__visual-pc__dot:nth-child(2) { background: rgba(255,255,255,.22); }
    .venture__visual-pc__dot:nth-child(3) { background: var(--c-brand-2); box-shadow: 0 0 6px rgba(118,183,237,.5); }
    .venture__visual-pc__tab {
      flex: 1;
      height: 0.875rem;
      background: rgba(255,255,255,.08);
      border-radius: 0.25rem;
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,.5);
      display: flex;
      align-items: center;
      padding: 0 0.5rem;
      gap: 0.375rem;
    }
    .venture__visual-pc__tab::before {
      content: '●';
      color: #28C840;
      font-size: 0.5rem;
      animation: blink 1.6s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* 画面コンテンツ — 複数シーンを切替 */
    .venture__visual-pc__scenes {
      position: relative;
      overflow: hidden;
    }
    .venture__visual-pc__scene {
      position: absolute;
      inset: 0;
      display: grid;
      gap: 0.4375rem;
      align-content: start;
      opacity: 0;
      transform: translateY(8px);
      animation: pcSceneCycle 14s var(--ease-soft) infinite;
    }
    .venture__visual-pc__scene--feed { animation-delay: 0s; }
    .venture__visual-pc__scene--chat { animation-delay: 7s; }
    @keyframes pcSceneCycle {
      0%, 45%, 100% { opacity: 0; transform: translateY(8px); }
      4%, 41%       { opacity: 1; transform: translateY(0); }
    }
    .venture__visual-pc__feed {
      display: grid;
      gap: 0.4375rem;
      align-content: start;
      overflow: hidden;
      mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
    }

    /* チャット会話シーン (B) */
    .venture__visual-pc__chat {
      display: flex;
      flex-direction: column;
      gap: 0.3125rem;
      overflow: hidden;
      mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
      -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
    }
    .venture__visual-pc__chat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.3125rem 0.5rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 0.3125rem;
      margin-bottom: 0.1875rem;
    }
    .venture__visual-pc__chat-head-name {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,.85);
      display: inline-flex; align-items: center; gap: 0.3125rem;
    }
    .venture__visual-pc__chat-head-name::before {
      content: '';
      width: 0.375rem; height: 0.375rem;
      border-radius: 50%;
      background: #28C840;
      box-shadow: 0 0 4px rgba(40,200,64,.6);
    }
    .venture__visual-pc__chat-head-co {
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,.45);
    }
    .venture__visual-pc__bubble {
      max-width: 76%;
      padding: 0.3125rem 0.5rem;
      border-radius: 0.4375rem;
      font-family: var(--f-ja);
      font-size: 0.4375rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(4px);
    }
    .venture__visual-pc__bubble--ai {
      background: var(--c-brand);
      color: #fff;
      align-self: flex-start;
      border-bottom-left-radius: 0.125rem;
    }
    .venture__visual-pc__bubble--user {
      background: rgba(255,255,255,.10);
      color: rgba(255,255,255,.92);
      align-self: flex-end;
      border-bottom-right-radius: 0.125rem;
    }
    .venture__visual-pc__scene--chat.is-running .venture__visual-pc__bubble {
      animation: pcChatBubbleIn .4s var(--ease-out) forwards;
    }
    /* デフォルトでも会話を順次表示 (シーン切替前提) */
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble {
      animation: pcChatBubbleIn .5s var(--ease-out) forwards;
    }
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble:nth-child(2) { animation-delay: 7.2s; }
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble:nth-child(3) { animation-delay: 7.9s; }
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble:nth-child(4) { animation-delay: 8.7s; }
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble:nth-child(5) { animation-delay: 9.5s; }
    .venture__visual-pc__scene--chat .venture__visual-pc__bubble:nth-child(6) { animation-delay: 10.4s; }
    @keyframes pcChatBubbleIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .venture__visual-pc__typing {
      align-self: flex-start;
      display: inline-flex;
      gap: 0.1875rem;
      padding: 0.375rem 0.5rem;
      background: rgba(255,255,255,.10);
      border-radius: 0.4375rem;
      border-bottom-left-radius: 0.125rem;
      opacity: 0;
      animation: pcChatBubbleIn .5s var(--ease-out) 11s forwards;
    }
    .venture__visual-pc__typing span {
      width: 0.25rem; height: 0.25rem;
      border-radius: 50%;
      background: rgba(255,255,255,.55);
      animation: pcChatTyping 1.2s ease-in-out infinite;
    }
    .venture__visual-pc__typing span:nth-child(2) { animation-delay: .15s; }
    .venture__visual-pc__typing span:nth-child(3) { animation-delay: .3s; }
    @keyframes pcChatTyping {
      0%, 60%, 100% { transform: translateY(0); opacity: .4; }
      30%           { transform: translateY(-3px); opacity: 1; }
    }
    .venture__visual-pc__row {
      display: grid;
      grid-template-columns: 0.5rem 1fr auto;
      gap: 0.5rem;
      align-items: center;
      padding: 0.4375rem 0.5rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 0.3125rem;
      font-family: var(--f-en);
      font-size: 0.4375rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,.72);
      opacity: 0;
      transform: translateY(8px);
      animation: feedRowIn 0.5s var(--ease-out) forwards;
    }
    @keyframes feedRowIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .venture__visual-pc__row:nth-child(1) { animation-delay: 0.4s; }
    .venture__visual-pc__row:nth-child(2) { animation-delay: 1.2s; }
    .venture__visual-pc__row:nth-child(3) { animation-delay: 2.0s; }
    .venture__visual-pc__row:nth-child(4) { animation-delay: 2.8s; }
    .venture__visual-pc__row:nth-child(5) { animation-delay: 3.6s; }
    .venture__visual-pc__status-dot {
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: var(--c-brand-2);
      box-shadow: 0 0 6px rgba(118,183,237,.5);
    }
    .venture__visual-pc__row--success .venture__visual-pc__status-dot {
      background: #28C840;
      box-shadow: 0 0 6px rgba(40,200,64,.55);
    }
    .venture__visual-pc__row--working .venture__visual-pc__status-dot {
      background: var(--c-brand);
      box-shadow: 0 0 6px rgba(9,111,200,.55);
    }
    /* 単一の柔らかいパルス (色の点滅は廃止、サイズのみ脈動) */
    @keyframes statusPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%      { transform: scale(1.25); opacity: 0.85; }
    }
    .venture__visual-pc__row--working .venture__visual-pc__status-dot,
    .venture__visual-pc__row--success .venture__visual-pc__status-dot {
      animation: statusPulse 2.4s var(--ease-soft) infinite;
    }
    .venture__visual-pc__co {
      color: rgba(255,255,255,.88);
      font-weight: 700;
    }
    .venture__visual-pc__tag {
      padding: 0.0625rem 0.4375rem;
      border-radius: 999px;
      font-family: var(--f-en);
      font-size: 0.375rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .venture__visual-pc__tag--booked {
      background: rgba(40,200,64,.18);
      color: #6FE08A;
      border: 1px solid rgba(40,200,64,.35);
    }
    .venture__visual-pc__tag--calling {
      background: rgba(9,111,200,.18);
      color: var(--c-brand-2);
      border: 1px solid rgba(9,111,200,.35);
    }
    .venture__visual-pc__tag--scanning {
      background: rgba(118,183,237,.14);
      color: var(--c-brand-2);
      border: 1px solid rgba(118,183,237,.30);
    }
    .venture__visual-pc__tag--chat {
      background: rgba(118,183,237,.18);
      color: var(--c-brand-2);
      border: 1px solid rgba(118,183,237,.35);
    }

    /* AIカーソル — 画面上を動くカーソル */
    .venture__visual-pc__cursor {
      position: absolute;
      top: 35%;
      left: 30%;
      width: 0.875rem; height: 0.875rem;
      pointer-events: none;
      z-index: 3;
      animation: cursorPath 8s var(--ease-soft) infinite;
      filter: drop-shadow(0 0 6px rgba(118,183,237,.7));
    }
    .venture__visual-pc__cursor svg { width: 100%; height: 100%; fill: #fff; }
    @keyframes cursorPath {
      0%   { top: 25%; left: 20%; }
      20%  { top: 30%; left: 70%; }
      40%  { top: 50%; left: 55%; }
      60%  { top: 65%; left: 25%; }
      80%  { top: 45%; left: 80%; }
      100% { top: 25%; left: 20%; }
    }

    /* クリック波紋 */
    .venture__visual-pc__click {
      position: absolute;
      top: 25%; left: 20%;
      width: 1.5rem; height: 1.5rem;
      border-radius: 50%;
      border: 1.5px solid rgba(118,183,237,.7);
      transform: translate(-50%, -50%) scale(0);
      pointer-events: none;
      z-index: 3;
      animation: cursorClick 8s var(--ease-soft) infinite;
    }
    @keyframes cursorClick {
      0%, 4%   { transform: translate(-50%, -50%) scale(0); opacity: 1; top: 25%; left: 20%; }
      8%       { transform: translate(-50%, -50%) scale(1.6); opacity: 0; top: 25%; left: 20%; }
      20%, 24% { transform: translate(-50%, -50%) scale(0); opacity: 1; top: 30%; left: 70%; }
      28%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; top: 30%; left: 70%; }
      40%, 44% { transform: translate(-50%, -50%) scale(0); opacity: 1; top: 50%; left: 55%; }
      48%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; top: 50%; left: 55%; }
      60%, 64% { transform: translate(-50%, -50%) scale(0); opacity: 1; top: 65%; left: 25%; }
      68%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; top: 65%; left: 25%; }
      80%, 84% { transform: translate(-50%, -50%) scale(0); opacity: 1; top: 45%; left: 80%; }
      88%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; top: 45%; left: 80%; }
      100%     { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    }

    /* 浮遊バッジ — 「Booked!」が浮き上がる */
    .venture__visual-badge {
      position: absolute;
      z-index: 4;
      padding: 0.4375rem 0.875rem;
      background: linear-gradient(135deg, #28C840 0%, #1AA834 100%);
      color: #fff;
      font-family: var(--f-ja-bold);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      border-radius: 999px;
      box-shadow: 0 10px 24px -6px rgba(40,200,64,.55);
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      opacity: 0;
      animation: badgeFloat 8s var(--ease-soft) infinite;
    }
    .venture__visual-badge::before {
      content: '✓';
      width: 0.875rem; height: 0.875rem;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      font-size: 0.5625rem;
      font-weight: 800;
    }
    .venture__visual-badge--1 {
      top: 11%; right: 7%;
      animation-delay: 1.5s;
    }
    .venture__visual-badge--2 {
      bottom: 16%; left: 5%;
      animation-delay: 5.5s;
      background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
      box-shadow: 0 10px 24px -6px rgba(9,111,200,.55);
    }
    .venture__visual-badge--3 {
      top: 42%; right: 4%;
      animation-delay: 9.5s;
      background: linear-gradient(135deg, var(--c-brand-2) 0%, var(--c-brand) 100%);
      box-shadow: 0 10px 24px -6px rgba(118,183,237,.55);
    }
    .venture__visual-badge--3::before {
      content: '✉';
      background: rgba(255,255,255,.25);
    }
    @keyframes badgeFloat {
      0%, 100% { opacity: 0; transform: translateY(20px) scale(0.8); }
      15%      { opacity: 1; transform: translateY(0) scale(1); }
      45%      { opacity: 1; transform: translateY(-8px) scale(1); }
      60%      { opacity: 0; transform: translateY(-16px) scale(0.95); }
    }

    /* 下部ステータスバー — 24時間稼働 / 初期費用0 */
    .venture__visual-status {
      position: absolute;
      left: 1rem; right: 1rem; bottom: 1rem;
      z-index: 3;
      padding: 0.625rem 0.875rem;
      background: rgba(10,15,30,.55);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 0.625rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--f-en);
      font-size: 0.5625rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.78);
    }
    .venture__visual-status-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4375rem;
    }
    .venture__visual-status-item::before {
      content: '';
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: #28C840;
      box-shadow: 0 0 6px rgba(40,200,64,.7);
      animation: statusPulse 2s var(--ease-soft) infinite;
    }

    .venture__coming-label {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      transition: color .4s;
    }
    .venture__coming-title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.125rem;
      letter-spacing: 0.06em;
      color: var(--c-text);
    }
    .venture__coming-desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      color: var(--c-text-sub);
      letter-spacing: 0.04em;
    }
    .venture__coming-eta {
      font-family: var(--f-en);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      align-self: center;
    }

    /* ============================================
       Media / Resources preview (top page)
       ============================================ */
    .section__head--with-link {
      display: grid;
      grid-template-columns: 14rem 1fr auto;
      gap: 4rem;
      align-items: end;
    }
    .section__view-more {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.12em;
      color: var(--c-text);
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.875rem 1.5rem;
      border: 1.5px solid var(--c-text);
      border-radius: 999px;
      transition: background-color .3s, color .3s, transform .3s var(--ease-spring), box-shadow .3s;
      white-space: nowrap;
      align-self: end;
      margin-bottom: 0.25rem;
    }
    .section__view-more::after {
      content: '→';
      font-family: var(--f-en);
      font-weight: 400;
      transition: transform .35s var(--ease-spring);
    }
    .section__view-more:hover {
      background: var(--c-text);
      color: var(--c-bg);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }
    .section__view-more:hover::after { transform: translateX(4px); }

    /* Media preview cards (top) */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
    .media-card {
      display: flex;
      flex-direction: column;
      cursor: auto;
      transition: transform .5s var(--ease-out);
    }
    .media-card:hover { transform: translateY(-6px); }
    .media-card__visual {
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      margin-bottom: 1.5rem;
    }
    .media-card__visual-bg {
      position: absolute;
      inset: 0;
      transition: transform 1s var(--ease-out);
    }
    .media-card:hover .media-card__visual-bg { transform: scale(1.06); }
    .media-card__visual--1 .media-card__visual-bg { background: linear-gradient(135deg, var(--c-brand-deep), var(--c-brand)); }
    .media-card__visual--2 .media-card__visual-bg { background: linear-gradient(135deg, var(--c-brand), var(--c-brand-2)); }
    .media-card__visual--3 .media-card__visual-bg { background: linear-gradient(135deg, #BE4F2A, var(--c-accent)); }
    /* featured_media (アイキャッチ画像) を直接表示するパターン */
    .media-card__visual--img { background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 1s var(--ease-out); }
    .media-card:hover .media-card__visual--img { transform: scale(1.04); }
    .media-card__visual-pattern {
      position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255,255,255,.18), transparent 60%);
      pointer-events: none;
    }
    .media-card__cat {
      position: absolute; top: 1rem; left: 1rem;
      padding: 0.375rem 0.875rem;
      background: rgba(255,255,255,.95);
      border-radius: 999px;
      font-family: var(--f-en);
      font-size: 0.625rem; font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--c-text);
      text-transform: uppercase;
      z-index: 1;
    }
    .media-card__date {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: var(--c-text-mute);
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .media-card__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      line-height: 1.7;
      letter-spacing: 0.06em;
      color: var(--c-text);
      margin-bottom: 0.875rem;
      transition: color .3s;
    }
    .media-card:hover .media-card__title { color: var(--c-brand); }
    .media-card__lead {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 1.95;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
    }

    /* Resources preview cards (top) */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .resource-card {
      background: var(--c-surface);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-rest);
      transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
      cursor: auto;
      display: flex;
      flex-direction: column;
    }
    .resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .resource-card__thumb {
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--c-brand-deep), var(--c-brand));
    }
    .resource-card__thumb--orange { background: linear-gradient(135deg, #BE4F2A, var(--c-accent)); }
    .resource-card__thumb--dark { background: linear-gradient(135deg, #0F1A33, var(--c-brand)); }
    .resource-card__thumb-pattern {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 60%);
    }
    .resource-card__thumb-icon {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 4rem; height: 4rem;
      color: rgba(255,255,255,.85);
    }
    .resource-card__badge {
      position: absolute; top: 1rem; left: 1rem;
      padding: 0.375rem 0.875rem;
      background: rgba(255,255,255,.95);
      border-radius: 999px;
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--c-text);
      text-transform: uppercase;
      z-index: 1;
    }
    .resource-card__pages {
      position: absolute; top: 1rem; right: 1rem;
      padding: 0.375rem 0.875rem;
      background: rgba(0,0,0,.4);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 999px;
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #fff;
      text-transform: uppercase;
      z-index: 1;
      backdrop-filter: blur(8px);
    }
    .resource-card__body {
      padding: 1.75rem 1.75rem 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .resource-card__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      line-height: 1.65;
      letter-spacing: 0.06em;
      color: var(--c-text);
      margin-bottom: 1rem;
    }
    .resource-card__lead {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 1.9;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
      margin-bottom: 1.5rem;
      flex: 1;
    }
    .resource-card__cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 0.875rem 1.25rem;
      background: var(--c-text);
      color: var(--c-bg);
      font-family: var(--f-ja-bold);
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      border-radius: var(--radius-pill);
      transition: background-color .25s, transform .25s;
    }
    .resource-card:hover .resource-card__cta { background: var(--c-brand); transform: translateY(-2px); }
    .resource-card__cta::after {
      content: '↓';
      position: absolute;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--f-en);
      font-weight: 400;
      transition: transform .35s var(--ease-spring);
    }
    .resource-card:hover .resource-card__cta::after {
      transform: translateY(-50%) translateY(3px);
    }

    /* ============================================
       Process — rounded list with bold accents
       ============================================ */
    .process__list {
      display: grid;
      gap: 1.25rem;
      counter-reset: process-step;
    }
    .process__item {
      background: var(--c-surface);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-rest);
      display: grid;
      grid-template-columns: 6rem 16rem 1fr auto;
      gap: 2.5rem;
      align-items: center;
      padding: 2.25rem 2.5rem;
      transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
      position: relative;
      overflow: hidden;
      cursor: auto;
    }
    .process__item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--c-brand);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .6s var(--ease-out);
    }
    .process__item:hover {
      transform: translateX(8px);
      box-shadow: var(--shadow-hover);
    }
    .process__item:hover::before { transform: scaleY(1); }
    .process__num {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: 3rem;
      line-height: 1;
      letter-spacing: -0.05em;
      color: var(--c-brand);
    }
    .process__body { display: grid; gap: 0.625rem; }
    .process__phase {
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      color: var(--c-text-mute);
      text-transform: uppercase;
    }
    .process__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 1.0625rem;
      line-height: 1.6;
      letter-spacing: 0.06em;
      color: var(--c-text);
    }
    .process__title small {
      display: inline-block;
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--c-text-mute);
      margin-left: 0.25rem;
      letter-spacing: 0.04em;
    }
    .process__desc {
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
      max-width: 32em;
    }
    /* Phase アイコン (クリック不可・静的) */
    .process__arrow {
      width: 3rem; height: 3rem;
      border-radius: 0.875rem;
      background: linear-gradient(135deg, rgba(9,111,200,.10) 0%, rgba(118,183,237,.10) 100%);
      border: 1px solid rgba(9,111,200,.12);
      display: grid;
      place-items: center;
      color: var(--c-brand);
      pointer-events: none;
    }
    .process__arrow svg { width: 1.375rem; height: 1.375rem; }
    .process__item:hover .process__arrow {
      background: linear-gradient(135deg, rgba(9,111,200,.18) 0%, rgba(118,183,237,.18) 100%);
      border-color: rgba(9,111,200,.24);
    }

    /* ============================================
       FAQ
       ============================================ */
    .faq__list {
      max-width: 56rem;
      margin: 0 auto;
      background: var(--c-surface);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-rest);
      overflow: hidden;
    }
    .faq__item {
      border-bottom: 1px solid var(--c-line);
    }
    .faq__item:last-child { border-bottom: none; }
    .faq__summary {
      padding: 1.75rem 4.5rem 1.75rem 2.5rem;
      cursor: auto;
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 0.9375rem;
      letter-spacing: 0.08em;
      list-style: none;
      position: relative;
      color: var(--c-text);
      transition: background-color .3s var(--ease-out);
    }
    .faq__summary::-webkit-details-marker { display: none; }
    .faq__summary:hover { background-color: var(--c-bg-warm); }
    .faq__summary::after, .faq__summary::before {
      content: '';
      position: absolute;
      right: 2.5rem; top: 50%;
      width: 0.875rem; height: 2px;
      background: var(--c-text);
      border-radius: 1px;
      transition: transform .4s var(--ease-spring), opacity .4s, background-color .4s;
    }
    .faq__summary::before { transform: rotate(90deg); }
    .faq__item[open] .faq__summary { color: var(--c-brand); }
    .faq__item[open] .faq__summary::after { background: var(--c-brand); }
    .faq__item[open] .faq__summary::before { transform: rotate(0); opacity: 0; }
    .faq__body {
      padding: 0 2.5rem 1.75rem;
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 2.1;
      letter-spacing: 0.06em;
      color: var(--c-text-sub);
      animation: faqOpen .4s var(--ease-out);
    }
    @keyframes faqOpen {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ============================================
       Final CTA — Goodpatch dark statement panel
       ============================================ */
    .cta {
      padding: 4rem 2.5rem 10rem;
      max-width: var(--container);
      margin: 0 auto;
    }
    .cta__inner {
      padding: 7rem 4rem;
      background: linear-gradient(135deg, #0A0F1C 0%, #0F1A33 50%, #1F2D55 100%);
      border-radius: var(--radius-xl);
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-deep);
    }
    .cta__inner::before {
      content: '';
      position: absolute;
      top: 20%; left: 50%;
      transform: translateX(-50%);
      width: 70%; height: 60%;
      background: radial-gradient(circle, rgba(118,183,237,.40), transparent 60%);
      filter: blur(60px);
      animation: ctaGlow 8s var(--ease-soft) infinite;
      pointer-events: none;
    }
    .cta__inner::after {
      content: '';
      position: absolute;
      bottom: -30%; right: -10%;
      width: 50%; height: 80%;
      background: radial-gradient(circle, rgba(255,118,105,.30), transparent 60%);
      filter: blur(70px);
      animation: ctaGlow 10s var(--ease-soft) infinite reverse;
      pointer-events: none;
    }
    @keyframes ctaGlow {
      0%, 100% { opacity: .6; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    }
    .cta__inner > * { position: relative; z-index: 1; }
    .cta__label {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.32em;
      color: rgba(255,255,255,.7);
      text-transform: uppercase;
      margin-bottom: 2.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
    }
    .cta__label::before, .cta__label::after {
      content: '';
      display: block;
      width: 2rem; height: 1px;
      background: rgba(255,255,255,.4);
    }
    .cta__title {
      font-family: var(--f-en);
      font-weight: 700;
      font-size: clamp(2.25rem, 6vw, 4.75rem);
      line-height: 1;
      letter-spacing: -0.04em;
      color: #fff;
      margin-bottom: 2rem;
    }
    .cta__title .accent {
      /* 抜本的修正: italic/グラデすべて廃止、単色塗りに */
      font-style: normal;
      color: var(--c-brand-2);
      background: none;
      -webkit-text-fill-color: currentColor;
    }
    .cta__title .period {
      display: inline-block;
      width: .12em; height: .12em;
      background-color: var(--c-accent);
      border-radius: 50%;
      vertical-align: 0.06em;
      margin-left: 0.06em;
      box-shadow: 0 0 32px var(--c-accent);
    }
    .cta__sub {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.9375rem;
      line-height: 2.1;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,.85);
      max-width: 32em;
      margin: 0 auto 3.5rem;
    }
    .cta__actions {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .cta .btn--primary {
      background: #fff;
      color: var(--c-text);
    }
    .cta .btn--primary::before { background: var(--c-accent); }
    .cta .btn--primary:hover { color: #fff; }
    .cta .btn--secondary {
      color: #fff;
      border-color: rgba(255,255,255,.4);
    }
    .cta .btn--secondary::before { background: #fff; }
    .cta .btn--secondary:hover { color: var(--c-text); }

    /* ============================================
       Footer
       ============================================ */
    .footer {
      padding: 4rem 2.5rem 3rem;
      max-width: var(--container);
      margin: 0 auto;
      border-top: 1px solid var(--c-line);
    }
    /* View more CTA after Cases slider */
    .cases-view-more { text-align: center; padding: 3.5rem 2.5rem 1rem; max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
    .cases-view-more .btn { font-size: 0.875rem; padding: 1.125rem 2rem; }

    /* Footer — シンプル統一フッター */
    .footer__inner {
      display: grid;
      grid-template-columns: 1.4fr auto;
      gap: 4rem;
      align-items: start;
      padding-bottom: 3rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--c-line);
    }
    .footer__brand { display: grid; gap: 1.25rem; max-width: 22rem; }
    .footer__tagline { font-family: var(--f-ja); font-weight: 500; font-size: 0.8125rem; line-height: 1.95; letter-spacing: 0.06em; color: var(--c-text-sub); }
    .footer__logo {
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 1.0625rem;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer__logo::after {
      content: '';
      width: 0.4em; height: 0.4em;
      background: var(--c-accent);
      border-radius: 50%;
    }
    /* Footer nav (一番上の階層のリンクのみ) */
    .footer__nav {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: max-content;
      gap: 2.5rem;
      align-items: start;
    }
    .footer__nav a {
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.08em;
      color: var(--c-text);
      position: relative;
      transition: color .25s;
    }
    .footer__nav a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -4px;
      width: 0; height: 1px;
      background: var(--c-brand);
      transition: width .35s var(--ease-out);
    }
    .footer__nav a:hover { color: var(--c-brand); }
    .footer__nav a:hover::after { width: 100%; }
    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer__meta {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      letter-spacing: 0.32em;
      color: var(--c-text-mute);
      text-transform: uppercase;
    }
    .footer__legal-links { display: flex; gap: 1.5rem; }
    .footer__legal-links a {
      font-family: var(--f-en); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.24em; color: var(--c-text-mute); text-transform: uppercase;
      transition: color .25s;
    }
    .footer__legal-links a:hover { color: var(--c-text); }
    @media (max-width: 960px) { .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; } .footer__nav { grid-auto-flow: row; gap: 1rem; } }
    @media (max-width: 480px) { .footer__bottom { flex-direction: column; align-items: flex-start; } }

    /* ============================================
       Reveal
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal.delay-1 { transition-delay: .1s; }
    .reveal.delay-2 { transition-delay: .2s; }
    .reveal.delay-3 { transition-delay: .3s; }
    .reveal.delay-4 { transition-delay: .4s; }

    /* ============================================
       Chatbot Widget — 右下フローティング AI チャット
       ============================================ */
    .chatbot {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      z-index: 90;
      font-family: var(--f-ja);
    }
    /* トグルボタン (閉時) */
    .chatbot__toggle {
      position: relative;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-brand-deep), var(--c-brand) 60%, var(--c-brand-2));
      color: #fff;
      border: none;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow:
        0 12px 32px -8px rgba(9,111,200,.55),
        0 0 0 0 rgba(9,111,200,.4);
      transition: transform .4s var(--ease-spring), box-shadow .4s;
      animation: chatbotBob 4s var(--ease-soft) infinite;
    }
    @keyframes chatbotBob {
      0%, 100% { transform: translateY(0); box-shadow: 0 12px 32px -8px rgba(9,111,200,.55), 0 0 0 0 rgba(9,111,200,.4); }
      50%      { transform: translateY(-4px); box-shadow: 0 18px 40px -8px rgba(9,111,200,.65), 0 0 0 12px rgba(9,111,200,.06); }
    }
    .chatbot__toggle:hover {
      transform: translateY(-4px) scale(1.06);
      animation-play-state: paused;
    }
    .chatbot__toggle svg {
      width: 1.75rem;
      height: 1.75rem;
      transition: transform .35s var(--ease-spring);
    }
    .chatbot.is-open .chatbot__toggle {
      animation: none;
      transform: rotate(90deg) scale(0.92);
    }
    .chatbot.is-open .chatbot__toggle .chatbot__icon-chat { display: none; }
    .chatbot.is-open .chatbot__toggle .chatbot__icon-close { display: block; }
    .chatbot__toggle .chatbot__icon-close { display: none; }

    /* 未読バッジ */
    .chatbot__badge {
      position: absolute;
      top: -0.25rem; right: -0.25rem;
      min-width: 1.25rem;
      height: 1.25rem;
      padding: 0 0.375rem;
      background: var(--c-accent);
      color: #fff;
      font-family: var(--f-en);
      font-size: 0.625rem;
      font-weight: 800;
      border-radius: 999px;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 8px -2px rgba(255,118,105,.6);
      animation: chatbotBadgePop .6s var(--ease-spring) 1.2s both;
    }
    @keyframes chatbotBadgePop {
      0%   { opacity: 0; transform: scale(0); }
      60%  { opacity: 1; transform: scale(1.2); }
      100% { opacity: 1; transform: scale(1); }
    }
    .chatbot.is-open .chatbot__badge { display: none; }

    /* チャットウィンドウ */
    .chatbot__window {
      position: absolute;
      bottom: 5rem;
      right: 0;
      width: 22rem;
      max-width: calc(100vw - 3rem);
      height: 32rem;
      max-height: calc(100vh - 8rem);
      background: var(--c-surface);
      border-radius: var(--radius-lg);
      box-shadow:
        0 4px 12px rgba(10,15,30,.08),
        0 24px 48px -8px rgba(10,15,30,.20),
        0 48px 96px -24px rgba(9,111,200,.15);
      display: grid;
      grid-template-rows: auto 1fr auto;
      overflow: hidden;
      transform-origin: bottom right;
      transform: scale(0.85) translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: transform .35s var(--ease-spring), opacity .3s var(--ease-out);
    }
    .chatbot.is-open .chatbot__window {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    /* ヘッダー */
    .chatbot__header {
      padding: 1.25rem 1.5rem 1rem;
      background: linear-gradient(135deg, var(--c-brand-deep) 0%, var(--c-brand) 100%);
      color: #fff;
      position: relative;
    }
    .chatbot__header-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.25rem;
    }
    .chatbot__avatar {
      width: 2.25rem; height: 2.25rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-brand-2), #fff);
      display: grid;
      place-items: center;
      color: var(--c-brand-deep);
      font-family: var(--f-en);
      font-weight: 800;
      font-size: 0.875rem;
      letter-spacing: -0.02em;
      box-shadow: 0 0 0 2px rgba(255,255,255,.35);
      position: relative;
    }
    .chatbot__avatar::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 0.625rem; height: 0.625rem;
      border-radius: 50%;
      background: #28C840;
      border: 2px solid #fff;
    }
    .chatbot__title {
      font-family: var(--f-ja-bold);
      font-weight: 900;
      font-size: 0.9375rem;
      letter-spacing: 0.04em;
    }
    .chatbot__status {
      font-family: var(--f-en);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,.78);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.4375rem;
    }
    .chatbot__status::before {
      content: '';
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: #28C840;
      box-shadow: 0 0 6px rgba(40,200,64,.8);
    }

    /* メッセージエリア */
    .chatbot__body {
      padding: 1.25rem 1.25rem 0.5rem;
      overflow-y: auto;
      scroll-behavior: smooth;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      background: var(--c-bg-warm);
      scrollbar-width: thin;
      scrollbar-color: rgba(0,0,0,.15) transparent;
    }
    .chatbot__body::-webkit-scrollbar { width: 6px; }
    .chatbot__body::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 3px; }

    .chatbot__msg {
      max-width: 85%;
      padding: 0.75rem 1rem;
      border-radius: 1rem;
      font-family: var(--f-ja);
      font-size: 0.8125rem;
      line-height: 1.7;
      letter-spacing: 0.04em;
      animation: chatbotMsgIn .35s var(--ease-out) both;
    }
    @keyframes chatbotMsgIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .chatbot__msg--bot {
      background: var(--c-surface);
      color: var(--c-text);
      align-self: flex-start;
      border-bottom-left-radius: 0.25rem;
      box-shadow: 0 1px 4px rgba(10,15,30,.05);
    }
    .chatbot__msg--user {
      background: var(--c-brand);
      color: #fff;
      align-self: flex-end;
      border-bottom-right-radius: 0.25rem;
      font-weight: 600;
    }
    .chatbot__msg strong { font-weight: 900; color: var(--c-brand); }
    .chatbot__msg--user strong { color: #fff; }

    /* タイピングインジケーター */
    .chatbot__typing {
      display: flex;
      gap: 0.25rem;
      padding: 0.875rem 1rem;
      background: var(--c-surface);
      border-radius: 1rem;
      border-bottom-left-radius: 0.25rem;
      align-self: flex-start;
      box-shadow: 0 1px 4px rgba(10,15,30,.05);
    }
    .chatbot__typing span {
      width: 0.4375rem; height: 0.4375rem;
      border-radius: 50%;
      background: var(--c-text-mute);
      animation: chatbotTyping 1.4s ease-in-out infinite;
    }
    .chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
    .chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes chatbotTyping {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30%           { transform: translateY(-4px); opacity: 1; }
    }

    /* クイック返信ボタン */
    .chatbot__quick {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4375rem;
      padding: 0 0 0.25rem;
      align-self: flex-start;
      max-width: 100%;
    }
    .chatbot__quick-btn {
      padding: 0.5rem 0.875rem;
      background: var(--c-surface);
      border: 1.5px solid var(--c-brand);
      border-radius: 999px;
      font-family: var(--f-ja-bold);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: var(--c-brand);
      cursor: pointer;
      transition: background-color .2s, color .2s, transform .2s var(--ease-spring);
    }
    .chatbot__quick-btn:hover {
      background: var(--c-brand);
      color: #fff;
      transform: translateY(-2px);
    }

    /* 入力エリア */
    .chatbot__footer {
      padding: 0.875rem 1rem 1rem;
      border-top: 1px solid var(--c-line);
      background: var(--c-surface);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.5rem;
      align-items: center;
    }
    .chatbot__input {
      padding: 0.625rem 0.875rem;
      background: var(--c-bg-warm);
      border: 1px solid var(--c-line);
      border-radius: 999px;
      font-family: var(--f-ja);
      font-weight: 500;
      font-size: 0.8125rem;
      letter-spacing: 0.04em;
      color: var(--c-text);
      transition: border-color .2s, background-color .2s;
    }
    .chatbot__input:focus {
      outline: none;
      border-color: var(--c-brand);
      background: var(--c-surface);
    }
    .chatbot__send {
      width: 2.25rem; height: 2.25rem;
      border-radius: 50%;
      background: var(--c-brand);
      color: #fff;
      border: none;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform .2s var(--ease-spring), background-color .2s;
    }
    .chatbot__send:hover { background: var(--c-brand-deep); transform: scale(1.08); }
    .chatbot__send svg { width: 1rem; height: 1rem; }
    .chatbot__send:disabled { background: var(--c-text-mute); cursor: not-allowed; transform: none; }
    .chatbot__notice {
      grid-column: 1 / -1;
      font-family: var(--f-ja);
      font-size: 0.625rem;
      color: var(--c-text-mute);
      letter-spacing: 0.04em;
      text-align: center;
      margin-top: 0.25rem;
    }

    @media (max-width: 480px) {
      .chatbot { right: 1rem; bottom: 1rem; }
      /* iOS 100vh問題対策: ツールバー表示時も実効高さに収め、開いた時の上端見切れを防ぐ。dvh非対応は共通定義の100vhにフォールバック */
      .chatbot__window { width: calc(100vw - 2rem); right: 0; height: 28rem; max-height: calc(100dvh - 7rem); }
      /* iOS入力ズーム防止: 入力欄が16px未満だとフォーカス時に自動ズームしてしまうため */
      .chatbot__input { font-size: 16px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .chatbot__toggle { animation: none; }
      .chatbot__msg { animation: none; }
    }

    /* ============================================
       Responsive
       ============================================ */
    @media (max-width: 1024px) {
      .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
      .section, .cta, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
      .hero__info { grid-template-columns: 1fr; gap: 2.5rem; }
      .section__head { grid-template-columns: 1fr; gap: 1.5rem; }
      .section__head--with-link { grid-template-columns: 1fr; gap: 1.5rem; }
      .media-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .resources-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
    }
    @media (max-width: 640px) {
      .media-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .resources-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    }
    /* Pillars: 4-col → 2-col (タブレット) → 1-col (モバイル) */
    @media (max-width: 1100px) {
      .expertise__pillars { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      /* FV白パネル(.hero)の横端を固定ヘッダーピル(左右0.75rem)に揃える。角丸は28pxで既に一致 */
      .hero-wrap { padding-left: 0.75rem; padding-right: 0.75rem; }
    }
    @media (max-width: 768px) {
      body { cursor: auto; }
      .cursor { display: none; }
      .btn, .header__cta, .approach__card, .coverage__card, .case-card, .industry, .process__item, .faq__summary, .cases__cta a { cursor: pointer; }
      .header { padding: 1rem 1.25rem; }
      .header__nav { gap: 1rem; }
      .header__nav .header__link { display: none; }
      .hero { padding-top: 7rem; padding-bottom: 2rem; }
      .hero__title { font-size: clamp(3rem, 14vw, 5.5rem); line-height: 1; }
      .hero__index { display: none; }
      .hero__scroll { right: 1rem; bottom: 2rem; font-size: 0.625rem; }
      .hero__scroll-line { height: 3rem; }
      .section { padding: 5rem 1.5rem; }
      .section__head { margin-bottom: 3rem; padding-top: 3rem; }
      .coverage__grid, .cases__grid, .expertise__industries { grid-template-columns: 1fr; }
      /* === SP: approach (サービス) を横スワイプカルーセル化 === */
      .approach__swipe-hint { display: inline-flex !important; }
      .approach__grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0.875rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0.5rem 1.5rem 1rem !important;
        margin: 0 -1.5rem !important;        /* セクション padding を打ち消して画面端まで */
        scroll-padding-left: 1.5rem !important;
      }
      .approach__grid::-webkit-scrollbar { display: none !important; }
      .approach__grid .approach__card {
        flex: 0 0 82% !important;             /* 1 枚 = 画面の 82%、 次のカードがチラ見え */
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        padding: 2.25rem 1.75rem !important;
      }
      .approach__grid .approach__card-head { margin-bottom: 2rem !important; }
      .approach__grid .approach__card-title { font-size: 1.25rem !important; margin-bottom: 1.25rem !important; padding-bottom: 1.25rem !important; }
      .approach__grid .approach__card-desc { font-size: 0.75rem !important; line-height: 1.95 !important; }
      .expertise__pillars { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 4rem; }
      .pillar { padding: 2rem 1.75rem; }
      .pillar__title { font-size: 1.1875rem; }
      .industry { grid-template-columns: 1fr; gap: 1rem; padding: 2rem; }
      .process__item { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 1.5rem; }
      .cta__inner { padding: 4rem 1.5rem; }
      .cta { padding: 4rem 1.5rem; }
    }
  