    /* ── ページ固有スタイル ── */
    body { overflow: hidden; height: 100vh; }

    /* 研究室ビューポート */
    .lab-viewport {
      position: relative;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      cursor: default;
    }

    /* 研究室SVGラッパー */
    .lab-scene-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lab-scene-svg {
      width: 100%;
      height: 100%;
      max-width: 100vw;
      max-height: 100vh;
      object-fit: contain;
    }

    /* ── ヒーローオーバーレイ（左上） ── */
    .hero-overlay {
      position: absolute;
      top: calc(var(--nav-h) + 24px);
      left: clamp(20px, 5vw, 64px);
      z-index: 20;
      pointer-events: none;
      animation: heroFadeIn 1s var(--ease-out) 0.4s both;
    }

    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.60rem;
      color: var(--accent-teal);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      background: linear-gradient(135deg, var(--text-0) 0%, var(--accent-blue) 60%, var(--accent-teal) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }

    .hero-sub {
      font-size: 0.75rem;
      color: var(--text-1);
      line-height: 1.8;
    }

    /* ── クイックリンク（ヒーロー下） ── */
    .hero-quicklinks {
      position: absolute;
      top: calc(var(--nav-h) + 24px + 96px);
      left: clamp(20px, 5vw, 64px);
      z-index: 20;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      animation: heroFadeIn 1s var(--ease-out) 0.6s both;
    }
    .hero-quicklink {
      pointer-events: auto;
      font-family: var(--font-mono);
      font-size: 0.66rem;
      letter-spacing: 0.04em;
      color: var(--text-0);
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      padding: 6px 14px;
      border-radius: 999px;
      text-decoration: none;
      transition: background 0.15s ease, border-color 0.15s ease;
      backdrop-filter: blur(4px);
    }
    .hero-quicklink:hover {
      background: rgba(75,169,255,0.12);
      border-color: var(--accent-blue);
    }

    /* ── ヒントラベル（右下） ── */
    .explore-hint {
      position: absolute;
      bottom: 28px;
      right: clamp(20px, 5vw, 64px);
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: heroFadeIn 1.2s var(--ease-out) 1.2s both;
      pointer-events: none;
    }

    .explore-hint-text {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      color: var(--text-2);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .explore-hint-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-blue);
      animation: hintPulse 2s ease-in-out infinite;
    }

    @keyframes hintPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.3; transform: scale(0.6); }
    }

    /* ── ツールチップ ── */
    .lab-tooltip {
      position: fixed;
      z-index: 200;
      background: rgba(4, 12, 24, 0.92);
      border: 1px solid var(--border-m);
      border-radius: var(--r-md);
      padding: 10px 16px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      pointer-events: none;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
      white-space: nowrap;
    }

    .lab-tooltip.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .lab-tooltip-name {
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-0);
      margin-bottom: 2px;
    }

    .lab-tooltip-dest {
      font-family: var(--font-mono);
      font-size: 0.60rem;
      color: var(--accent-teal);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* ── クリッカブル設備：ホバーエフェクト ── */
    .lab-obj {
      cursor: pointer;
      transition: filter 0.22s var(--ease);
    }

    .lab-obj:hover {
      filter: brightness(1.3) drop-shadow(0 0 8px rgba(59,158,255,0.6));
    }

    .lab-obj:focus-visible {
      outline: none;
      filter: brightness(1.4) drop-shadow(0 0 12px rgba(59,158,255,0.9));
    }

    /* ── モバイル用ナビゲーションメニュー ── */
    .mobile-menu-btn {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 300;
      display: none;
      align-items: center;
      gap: 8px;
      background: rgba(4,12,24,0.90);
      border: 1px solid var(--border-m);
      border-radius: 99px;
      padding: 10px 22px;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--accent-blue);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: background var(--t), border-color var(--t);
    }

    .mobile-menu-btn:hover {
      background: rgba(59,158,255,0.10);
      border-color: var(--accent-blue);
    }

    .mobile-menu-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent-teal);
      animation: hintPulse 2s ease-in-out infinite;
    }

    /* モバイルメニュー（全画面グリッド） */
    .mobile-nav-sheet {
      position: fixed;
      inset: 0;
      z-index: 400;
      background: rgba(2,11,24,0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding: 40px 24px;
    }

    .mobile-nav-sheet.open {
      display: flex;
      animation: sheetIn 0.28s var(--ease-out) forwards;
    }

    @keyframes sheetIn {
      from { opacity: 0; transform: scale(0.97); }
      to   { opacity: 1; transform: scale(1); }
    }

    .mobile-nav-sheet-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: 1px solid var(--border-m);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      color: var(--text-1);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color var(--t), color var(--t);
    }

    .mobile-nav-sheet-close:hover {
      border-color: var(--accent-blue);
      color: var(--text-0);
    }

    .mobile-nav-title {
      font-family: var(--font-mono);
      font-size: 0.60rem;
      color: var(--accent-teal);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .mobile-nav-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      width: 100%;
      max-width: 340px;
    }

    .mobile-nav-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 20px 16px;
      text-align: center;
      text-decoration: none;
      color: var(--text-0);
      transition: border-color var(--t), background var(--t), transform var(--t) var(--ease);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .mobile-nav-item:hover {
      border-color: var(--border-m);
      background: var(--bg-card-hover);
      transform: translateY(-2px);
    }

    .mobile-nav-item-icon {
      width: 36px;
      height: 36px;
      color: var(--accent-blue);
    }

    .mobile-nav-item-label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      color: var(--accent-teal);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .mobile-nav-item-name {
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 700;
    }

    @media (max-width: 780px) {
      .mobile-menu-btn { display: flex; }
      .explore-hint { display: none; }
    }

    @media (max-width: 480px) {
      .hero-overlay { top: calc(var(--nav-h) + 16px); }
      .hero-title { font-size: 1.4rem; }
    }

    /* ══════════════════════════════════════════════
       モバイル操作性改善
       768px以下: SVG研究室を「眺めるだけ」の装飾に変更し、
       実際の操作はカード型グリッドメニューに一本化する。
       理由: 1枚の大きなSVGを縮小表示すると個々の設備が
       タップ判定的にも視認的にも極小になり、
       「どこを押せばいいかわからない」状態になるため。
    ══════════════════════════════════════════════ */
    @media (max-width: 768px) {

      .lab-viewport {
        height: auto;
        min-height: 46vh;
        max-height: 52vh;
        overflow: hidden;
      }

      /* SVG内の各設備はタップ不可・装飾専用に切り替え */
      .lab-obj {
        pointer-events: none;
      }

      .lab-obj:hover {
        filter: none;
      }

      .lab-scene-svg {
        object-fit: cover;
        object-position: center 30%;
      }

      /* ツールチップはモバイルで不要（ホバー前提のUIのため） */
      .lab-tooltip { display: none !important; }

      /* 探索ヒントの文言をタップ前提に変更 */
      .explore-hint { display: none; }

      /* ヒーローオーバーレイをコンパクトに */
      .hero-overlay {
        top: calc(var(--nav-h) + 14px);
        left: 16px;
        right: 16px;
      }

      .hero-sub {
        display: none;
      }

      /* モバイルメニューボタンを非表示にし、
         代わりにグリッドメニューを常時インライン表示する */
      .mobile-menu-btn { display: none !important; }

      /* モバイルナビシートをモーダルではなく
         ページ内コンテンツとして常時表示に変更 */
      .mobile-nav-sheet {
        position: static;
        inset: auto;
        display: flex !important;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 20px 16px 40px;
        animation: none;
        z-index: auto;
      }

      .mobile-nav-sheet-close { display: none; }

      .mobile-nav-title {
        margin-bottom: 16px;
        text-align: center;
        font-size: 0.62rem;
      }

      .mobile-nav-grid {
        max-width: 480px;
        margin: 0 auto;
        gap: 10px;
      }

      .mobile-nav-item {
        padding: 18px 12px;
        min-height: 92px;
        justify-content: center;
      }

      .mobile-nav-item-icon { width: 30px; height: 30px; }

      .mobile-nav-item-label { font-size: 0.56rem; }

      .mobile-nav-item-name { font-size: 0.78rem; }

      /* body のスクロール固定を解除（モバイルではページ全体をスクロールする構成に変更） */
      body { overflow: visible; height: auto; }
    }

    @media (max-width: 420px) {
      .mobile-nav-grid { grid-template-columns: 1fr 1fr; }
      .lab-viewport { min-height: 38vh; max-height: 42vh; }
    }