    /* コンテンツエリア */
    .faq-page-section { padding: 56px 0 96px; }
    .faq-page-wrap { max-width: 860px; margin: 0 auto; padding: 0 20px; }

    /* クイックナビ */
    .faq-quicknav {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-bottom: 56px;
    }
    .faq-quicknav-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 20px;
      border: 1.5px solid var(--border-solid); background: var(--white);
      font-size: 13px; font-weight: 700; color: var(--text);
      text-decoration: none; transition: all 0.2s var(--ease);
      white-space: nowrap;
    }
    .faq-quicknav-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
    .faq-quicknav-num {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--navy); color: #fff;
      font-size: 10px; font-weight: 700; font-family: var(--font-en);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    /* カテゴリブロック */
    .faq-category { margin-bottom: 52px; }
    .faq-category:last-of-type { margin-bottom: 0; }
    .faq-cat-head {
      display: flex; align-items: center; gap: 14px;
      padding-bottom: 18px; margin-bottom: 4px;
      border-bottom: 2px solid var(--border);
    }
    .faq-cat-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
      color: var(--blue-mist);
      display: flex; align-items: center; justify-content: center;
    }
    .faq-cat-icon svg { width: 22px; height: 22px; }
    .faq-cat-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      color: var(--text-mid); text-transform: uppercase; margin-bottom: 3px;
    }
    .faq-cat-title { font-size: 17px; font-weight: 900; color: var(--navy); }

    /* アコーディオン */
    .faq-list { }
    .faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      gap: 16px; padding: 20px 0; font-size: 14px; font-weight: 700;
      color: var(--text); background: none; border: none; cursor: pointer;
      text-align: left; font-family: var(--font-jp); line-height: 1.6;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--orange); }
    .faq-q-mark {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: rgba(232,93,38,0.1); color: var(--orange);
      font-size: 12px; font-weight: 900; font-family: var(--font-en);
      display: flex; align-items: center; justify-content: center; margin-right: 4px;
    }
    .faq-q-text { flex: 1; }
    .faq-q-arrow {
      flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
      border: 1.5px solid var(--border-solid); color: var(--text-mid);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; line-height: 1; transition: all 0.25s var(--ease);
    }
    .faq-item.open .faq-q-arrow { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
    .faq-a {
      display: none; padding: 0 0 22px 30px;
      font-size: 14px; color: var(--text-mid); line-height: 1.95;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-a a { color: var(--navy-light); text-decoration: underline; }
    .faq-a a:hover { color: var(--navy); }

    /* 末尾CTA */
    .faq-cta {
      margin-top: 64px; background: var(--navy);
      border-radius: var(--radius-lg); padding: 48px 40px;
      text-align: center; position: relative; overflow: hidden;
    }
    .faq-cta::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(126,184,247,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,184,247,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .faq-cta > * { position: relative; z-index: 1; }
    .faq-cta h2 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 900; color: #fff; margin-bottom: 12px; }
    .faq-cta p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.8; }
    .faq-cta .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    @media (max-width: 768px) {
      .faq-quicknav-btn { font-size: 12px; padding: 7px 14px; }
      .faq-cta { padding: 36px 24px; }
      .faq-a { padding-left: 0; }
    }
