﻿/* ============================================================
       CSS変数・ベース
    ============================================================ */
    body#fan-price-page {
      --c-navy:        #003a70;
      --c-navy-mid:    #004986;
      --c-navy-light:  #0a5fa8;
      --c-sky:         #e8f2fc;
      --c-sky-pale:    #f4f8fd;
      --c-white:       #ffffff;
      --c-bg:          #f0f4f8;
      --c-text:        #1a2236;
      --c-sub:         #56657a;
      --c-border:      #d0dae8;
      --c-green:       #06c755;
      --c-red:         #b5251a;
      --c-shadow-card: 0 4px 24px rgba(0,58,112,.12);
      --c-shadow-hover: 0 8px 36px rgba(0,58,112,.2);
      --c-shadow-accordion: 0 2px 10px rgba(0, 58, 112, 0.14);
      --c-radius:      12px;
      --c-inner:       1080px;
      color: var(--c-text);
      background: #ffffff;
      font-family: 'Noto Sans JP', sans-serif;
    }
    /* 本文ベース拡大（老眼配慮・40代以上向け） */
    body#fan-price-page main.contents {
      font-size: 1.0625rem; /* 17px 前後 */
      line-height: 1.75;
    }
    body#fan-price-page main.contents p,
    body#fan-price-page main.contents li {
      font-size: 1.0625rem; /* 16px〜18pxレンジの中間 */
    }
    /* ページ最上段の英字は既存下層デザイン（sub.css）の階層を維持 */
    body#fan-price-page main.contents .atcl-ttl p.en {
      font-size: 1rem;
    }

    /* ---- 共通レイアウト ---- */
    .fp-inner {
      max-width: var(--c-inner);
      margin: 0 auto;
      padding: 0 24px;
    }
    .fp-section {
      padding: 72px 0;
    }
    .fp-section--gray {
      background: var(--c-bg);
    }
    .fp-section--sky {
      background: var(--c-sky-pale);
    }

    /* ---- セクション見出し（共通） ---- */
    .fp-h2 {
      font-size: 1.72rem;
      font-weight: 900;
      color: var(--c-navy-mid);
      margin-bottom: 8px;
      line-height: 1.35;
      letter-spacing: .02em;
    }
    .fp-h2 .fp-en {
      display: block;
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem;
      color: #8fa3bc;
      font-weight: 400;
      letter-spacing: .18em;
      margin-bottom: 4px;
    }
    .fp-h2-bar {
      display: block;
      width: 40px;
      height: 4px;
      background: var(--c-navy-mid);
      border-radius: 2px;
      margin: 12px 0 28px;
    }

    /* ============================================================
       リード文セクション（グラデーション背景）
    ============================================================ */
    .fp-hero {
      background: linear-gradient(130deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
      color: var(--c-white);
      padding: 60px 0;
    }
    .fp-hero-lede {
      font-size: 1.25rem;
      font-weight: bold;
      line-height: 1.85;
      margin: 0 0 32px;
      opacity: .96;
    }
    .fp-hero-blocks {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 720px) {
      .fp-hero-blocks {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }
    .fp-hero-block {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: var(--c-radius);
      padding: 22px 24px 20px;
      backdrop-filter: blur(4px);
    }
    .fp-hero-block-title {
      font-size: 1.02rem;
      font-weight: bold;
      color: rgba(255,255,255,.85);
      margin: 0 0 10px;
      letter-spacing: .03em;
    }
    .fp-hero-block-title::before {
      content: '▍';
      color: rgba(255,255,255,.5);
      margin-right: 6px;
    }
    .fp-hero-block-p {
      font-size: 1.02rem;
      line-height: 1.85;
      color: rgba(255,255,255,.88);
      margin: 0;
    }
    /* お問い合わせボタン：リード下部 */
    .fp-hero-actions {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 540px;
      margin: 28px auto 0;
    }
    @media (min-width: 600px) {
      .fp-hero-actions {
        flex-direction: row;
      }
    }
    .fp-hero-actions .fp-btn-line,
    .fp-hero-actions .fp-btn-mail {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      min-height: 52px;
      border-radius: 6px;
      font-size: 1.05rem;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      padding: 14px 20px;
      box-sizing: border-box;
      transition: opacity .18s;
    }
    .fp-hero-actions .fp-btn-line:hover,
    .fp-hero-actions .fp-btn-mail:hover {
      opacity: .85;
    }
    .fp-btn-line { background: var(--c-green); color: var(--c-white); }
    .fp-btn-mail { background: var(--c-white); color: var(--c-navy-mid); }

    /* ============================================================
       タイプ別カードセクション
    ============================================================ */
    .fp-identify {
      padding: 72px 0;
      background: var(--c-bg);
    }

    /* 大分類グループ */
    .fp-group {
      margin-bottom: 56px;
    }
    .fp-group:last-of-type {
      margin-bottom: 0;
    }
    .fp-group-head {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--c-navy);
      padding: 16px 20px 16px 20px;
      margin-bottom: 32px;
      border: 2px solid var(--c-navy-mid);
      border-radius: 10px;
      box-shadow: var(--c-shadow-accordion);
      background: var(--c-white);
      letter-spacing: .02em;
      user-select: none;
    }
    .fp-group-arrow {
      display: none;
    }

    /* カードグリッド */
    .fp-type-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    @media (min-width: 680px) {
      .fp-type-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    }

    /* カード本体（ホバーエフェクトは無効化・固定状態） */
    .fp-type-card {
      background: var(--c-white);
      border-radius: var(--c-radius);
      box-shadow: var(--c-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* カードヘッダー：グラデーション */
    .fp-type-card-head {
      background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
      color: var(--c-white);
      padding: 15px 20px 13px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .fp-type-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.55);
      font-size: 0.78rem;
      font-weight: 900;
      flex-shrink: 0;
      font-family: 'Jost', sans-serif;
    }
    .fp-type-card-head h2 {
      font-size: 1.05rem;
      font-weight: bold;
      line-height: 1.4;
      flex: 1;
    }

    /* カード画像 */
    .fp-type-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #ecf2f8;
    }
    .fp-type-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* カード本文 */
    .fp-type-body {
      padding: 20px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .fp-type-desc {
      font-size: 1.02rem;
      color: var(--c-sub);
      line-height: 1.85;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--c-border);
      flex: 1;
    }

    /* 価格リスト（2倍サイズのアクセント価格） */
    .fp-price-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .fp-price-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--c-border);
    }
    .fp-price-row:last-child { border-bottom: none; padding-bottom: 0; }
    .fp-price-model {
      font-size: 0.97rem;
      color: var(--c-text);
      font-weight: bold;
      flex: 1;
      line-height: 1.4;
    }
    .fp-price-model small {
      display: block;
      font-size: 0.78em;
      color: var(--c-sub);
      font-weight: normal;
      margin-top: 2px;
    }
    /* ★ 価格を現在の2倍サイズに */
    .fp-price-amount {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--c-navy-mid);
      white-space: nowrap;
      flex-shrink: 0;
      line-height: 1;
      font-family: 'Jost', 'Noto Sans JP', sans-serif;
      letter-spacing: -.02em;
    }
    .fp-price-amount .fp-tax {
      display: block;
      font-size: 0.56rem;
      font-weight: normal;
      color: var(--c-sub);
      text-align: right;
      margin-top: 2px;
      letter-spacing: 0;
    }
    .fp-price-foot {
      margin-top: 12px;
      font-size: 0.95rem;
      color: var(--c-sub);
      line-height: 1.75;
    }

    /* 店舗・施設向け案内ブロック */
    .fp-commercial-notice {
      margin-top: 36px;
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--c-radius);
      padding: 24px 26px 22px;
      box-shadow: var(--c-shadow-card);
    }
    .fp-commercial-notice h3 {
      font-size: 1.1rem;
      font-weight: bold;
      color: var(--c-navy-mid);
      margin-bottom: 10px;
      line-height: 1.5;
    }
    .fp-commercial-notice p {
      font-size: 1.02rem;
      color: var(--c-sub);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .fp-commercial-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .fp-commercial-btns a {
      display: inline-block;
      padding: 11px 22px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
    }
    .fp-commercial-btns .fp-cm-mail {
      background: var(--c-navy-mid);
      color: var(--c-white);
    }
    .fp-commercial-btns .fp-cm-line {
      background: var(--c-green);
      color: var(--c-white);
    }

    /* ============================================================
       総額表示バナー（フルグラデーション）
    ============================================================ */
    .fp-total-banner {
      background: linear-gradient(130deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
      padding: 72px 24px;
      text-align: center;
      color: var(--c-white);
    }
    .fp-total-banner .fp-h2 {
      color: var(--c-white);
    }
    .fp-total-banner .fp-h2 .fp-en {
      color: rgba(255,255,255,.55);
    }
    .fp-total-banner .fp-h2-bar {
      background: rgba(255,255,255,.5);
      margin: 12px auto 32px;
    }
    .fp-total-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 680px;
      margin: 0 auto 28px;
    }
    @media (min-width: 640px) {
      .fp-total-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .fp-total-item {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 10px;
      padding: 22px 12px 18px;
    }
    .fp-total-icon {
      display: block;
      font-size: 2rem;
      margin-bottom: 10px;
      line-height: 1;
    }
    .fp-total-label {
      font-size: 0.88rem;
      font-weight: bold;
      color: rgba(255,255,255,.9);
      line-height: 1.5;
    }
    .fp-total-note {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 1.02rem;
      color: rgba(255,255,255,.9);
      line-height: 1.9;
      max-width: 760px;
      margin: 0 auto;
    }
    .fp-total-note strong {
      color: #fff;
      font-weight: bold;
    }

    /* ============================================================
       追加工事が必要になる場合
    ============================================================ */
    .fp-extra-note {
      font-size: 1.02rem;
      color: var(--c-sub);
      line-height: 1.9;
      margin-bottom: 22px;
    }
    .fp-extra-note strong { color: var(--c-text); font-weight: bold; }
    .fp-extra-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    @media (min-width: 720px) {
      .fp-extra-cards { grid-template-columns: repeat(2, 1fr); }
    }
    .fp-extra-card {
      background: var(--c-white);
      border-radius: var(--c-radius);
      box-shadow: var(--c-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .fp-extra-img {
      width: 100%;
      aspect-ratio: 16 / 8;
      object-fit: cover;
      display: block;
    }
    .fp-extra-body {
      padding: 18px 20px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .fp-extra-label {
      font-size: 1.15rem; /* 従来比 約1.2倍 */
      font-weight: bold;
      color: var(--c-text);
      line-height: 1.55;
      margin-bottom: 6px;
    }
    .fp-extra-label small {
      display: block;
      font-size: 1.0625rem; /* 従来比 約1.5倍、本文基準に近い視認性 */
      font-weight: normal;
      color: var(--c-sub);
      margin-top: 4px;
      line-height: 1.75;
    }
    .fp-extra-price {
      margin-top: auto;
      padding-top: 12px;
      font-size: 1.45rem;
      font-weight: 900;
      color: var(--c-red);
      font-family: 'Jost', 'Noto Sans JP', sans-serif;
      letter-spacing: -.01em;
    }
    .fp-extra-price small {
      font-size: 0.58em;
      font-weight: normal;
      color: var(--c-sub);
      letter-spacing: 0;
      margin-left: 2px;
    }
    .fp-extra-promise {
      background: #fff8f0;
      border: none;
      border-radius: var(--c-radius);
      padding: 18px 20px;
      font-size: 1.02rem;
      color: var(--c-text);
      line-height: 1.85;
      box-shadow: var(--c-shadow-card);
    }

    /* ============================================================
       機種別詳細料金
    ============================================================ */
    .fp-detail-intro {
      font-size: 1.02rem;
      color: var(--c-sub);
      line-height: 1.9;
      margin-bottom: 32px;
      padding: 18px 22px;
      background: #ffffff;
      border-radius: var(--c-radius);
      border: none;
      box-shadow: var(--c-shadow-card);
    }
    .fp-detail-category {
      margin-bottom: 40px;
    }
    .fp-detail-cat-head {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      padding-left: 4px;
      border-bottom: 2px solid var(--c-border);
      border-left: none;
      flex-wrap: wrap;
    }
    .fp-detail-cat-head h3 {
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--c-navy);
      white-space: nowrap;
    }
    .fp-detail-cat-desc {
      font-size: 0.95rem;
      color: var(--c-sub);
    }
    /* 機種カードグリッド */
    .fp-detail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 640px) {
      .fp-detail-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 960px) {
      .fp-detail-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .fp-detail-card {
      background: var(--c-white);
      border-radius: var(--c-radius);
      border: 1px solid var(--c-border);
      box-shadow: var(--c-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .fp-detail-img-wrap {
      background: #f0f4f8;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 160px;
      overflow: hidden;
    }
    .fp-detail-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 12px;
      box-sizing: border-box;
    }
    .fp-detail-body {
      padding: 16px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .fp-detail-logo {
      height: 14px;
      width: auto;
      display: block;
      margin-bottom: 6px;
      object-fit: contain;
      object-position: left;
    }
    .fp-detail-model {
      font-size: 1.12rem;
      font-weight: bold;
      color: var(--c-text);
      line-height: 1.35;
    }
    .fp-detail-note {
      font-size: 0.9rem; /* 最低 14px 前後 */
      color: var(--c-sub);
      line-height: 1.6;
      margin-top: 4px;
    }
    /* ★ 詳細価格も大きく */
    .fp-detail-price {
      display: block;
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--c-navy-mid);
      font-family: 'Jost', 'Noto Sans JP', sans-serif;
      letter-spacing: -.02em;
      margin-top: auto;
      padding-top: 12px;
      text-align: right;
    }
    .fp-detail-price .fp-unit {
      font-size: 0.82rem;
      font-weight: bold;
      color: var(--c-sub);
    }
    .fp-detail-price .fp-tax {
      display: block;
      font-size: 0.6rem;
      font-weight: normal;
      color: var(--c-sub);
      text-align: right;
    }
    /* 追加工事費行 */
    .fp-detail-add-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px dashed var(--c-border);
    }
    .fp-detail-add-row:last-child { border-bottom: none; }
    .fp-detail-add-label {
      font-size: 1.02rem;
      color: var(--c-text);
      flex: 1;
      line-height: 1.5;
    }
    .fp-detail-add-price {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--c-red);
      white-space: nowrap;
      flex-shrink: 0;
      font-family: 'Jost', 'Noto Sans JP', sans-serif;
    }
    .fp-detail-add-price span {
      font-size: 0.7em;
      font-weight: normal;
      color: var(--c-sub);
    }

    /* ============================================================
       保証・お支払い
    ============================================================ */
    .fp-guarantee-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 680px) {
      .fp-guarantee-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .fp-guarantee-item {
      background: var(--c-white);
      border-radius: var(--c-radius);
      padding: 24px 24px 22px;
      border: 1px solid var(--c-border);
      box-shadow: var(--c-shadow-card);
    }
    .fp-guarantee-item h3 {
      font-size: 1.1rem;
      font-weight: bold;
      color: var(--c-navy-mid);
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--c-sky);
    }
    .fp-guarantee-item p {
      font-size: 1.02rem;
      color: var(--c-text);
      line-height: 1.9;
    }

    /* ============================================================
       写真・型番不明な方向け
    ============================================================ */
    .fp-photo-box {
      background: var(--c-sky-pale);
      border: 1px solid var(--c-border);
      border-radius: var(--c-radius);
      padding: 24px 26px 22px;
    }
    .fp-photo-box h3 {
      font-size: 1.12rem;
      font-weight: bold;
      color: var(--c-navy-mid);
      margin-bottom: 14px;
    }
    .fp-photo-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .fp-photo-list li {
      font-size: 1.02rem;
      color: var(--c-text);
      line-height: 1.8;
      padding-left: 1.6em;
      position: relative;
      margin-bottom: 6px;
    }
    .fp-photo-list li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: var(--c-navy-mid);
      font-size: 0.8em;
      top: .18em;
    }
    .fp-photo-sub {
      margin-top: 16px;
      font-size: 1.02rem;
      color: var(--c-sub);
      line-height: 1.9;
      padding-top: 14px;
      border-top: 1px solid var(--c-border);
    }

    /* ============================================================
       CTA（フルグラデーション）
    ============================================================ */
    .fp-cta {
      background: linear-gradient(130deg, #002a5c 0%, var(--c-navy-mid) 100%);
      padding: 60px 24px;
      text-align: center;
    }
    .fp-cta-title {
      color: var(--c-white);
      font-size: 1.25rem;
      font-weight: bold;
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .fp-cta-title span {
      display: block;
      font-size: 0.85rem;
      font-weight: normal;
      opacity: .7;
      margin-bottom: 4px;
    }
    .fp-cta-btns {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 440px;
      margin: 0 auto;
    }
    @media (min-width: 600px) {
      .fp-cta-btns { flex-direction: row; max-width: 640px; }
    }
    .fp-cta-btn-mail,
    .fp-cta-btn-line {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      min-height: 54px;
      border-radius: 6px;
      font-size: 1.0rem;
      font-weight: bold;
      text-decoration: none;
      transition: opacity .18s, transform .18s;
    }
    .fp-cta-btn-mail:hover,
    .fp-cta-btn-line:hover {
      opacity: .85;
      transform: translateY(-2px);
    }
    .fp-cta-btn-mail { background: var(--c-white); color: var(--c-navy-mid); }
    .fp-cta-btn-line { background: var(--c-green); color: var(--c-white); }

    /* ============================================================
       スマホ大分類アコーディオン（max-width: 679px のみ）
       PC では .fp-group-body は常時表示
    ============================================================ */
    @media (max-width: 679px) {
      /* 各セクション見出し（section 内 h2）のみスマホで従来サイズ相当に戻す ※総額バナー内 .fp-h2 は div 配下のため除外 */
      body#fan-price-page section .fp-h2 {
        font-size: 1.55rem;
        line-height: 1.32;
        letter-spacing: 0.01em;
      }
      .fp-group {
        margin-bottom: 12px;
      }
      .fp-group-head {
        font-size: 1.08rem;
        cursor: pointer;
        background: var(--c-sky-pale);
        border: 4px solid var(--c-navy-mid);
        border-radius: 10px;
        box-shadow: var(--c-shadow-accordion);
        padding: 14px 16px 14px 18px;
        margin-bottom: 0;
      }
      .fp-group-arrow {
        display: inline-block;
        margin-left: auto;
        flex-shrink: 0;
        font-size: 2.4rem;
        color: var(--c-navy-mid);
        transition: transform .25s ease;
        line-height: 1;
      }
      .fp-group.is-open .fp-group-arrow {
        transform: rotate(180deg);
      }
      .fp-group-body {
        display: none;
        padding-top: 16px;
      }
      .fp-group.is-open .fp-group-body {
        display: block;
      }
      /* カード見出しを1.3倍に拡大 */
      .fp-type-card-head h2 {
        font-size: 1.2rem;
      }
      /* モバイルでの詳細カードを2列→1列＋段間余白 */
      .fp-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    /* ============================================================
       タイプ選択セクション：見出し直下の案内テキスト
    ============================================================ */
    .fp-identify-note {
      font-size: 1.02rem;
      line-height: 1.9;
      color: #444;
      background: #ffffff;
      border: none;
      border-radius: var(--c-radius);
      padding: 22px 28px;
      margin: 0 0 40px;
      box-shadow: var(--c-shadow-card);
    }

/* ============================================================
   gemini2price.php 用追加スタイル（元ページ内 <style> から移行）
   ※ body#fan-price-page でスコープ
   ============================================================ */
    /* ---- ヒーロー箇条書きリスト ---- */
    body#fan-price-page .fp-hero-list {
      list-style: none;
      margin: 0 0 32px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    body#fan-price-page .fp-hero-list > li {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: rgba(255,255,255,.92);
      padding-left: 1.8em;
      position: relative;
    }
    body#fan-price-page .fp-hero-list > li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: #ffffff;       /* スマホ・PC共通：純白 */
      font-weight: 900;
      font-size: 0.9em;
      top: .12em;
    }
    body#fan-price-page .fp-hero-list-sub {
      display: block;
      font-size: 0.8rem;
      color: rgba(255,255,255,.72);
      margin-top: 6px;
      line-height: 1.7;
    }
    body#fan-price-page .fp-hero-list-link {
      display: inline-block;
      color: rgba(255,255,255,.82);
      text-decoration: underline;
      font-size: 0.8125rem;
      margin-top: 5px;
      transition: color .15s;
    }
    body#fan-price-page .fp-hero-list-link:hover {
      color: #fff;
    }
    /* PC：テキスト約1.5倍・max-width解除 */
    @media (min-width: 768px) {
      body#fan-price-page .fp-hero-list {
        max-width: none;
        gap: 28px;
      }
      body#fan-price-page .fp-hero-list > li {
        font-size: 1.625rem;   /* 約26px */
        line-height: 1.65;
        padding-left: 2.0em;
      }
      body#fan-price-page .fp-hero-list-sub {
        font-size: 1.125rem;   /* 約18px */
        margin-top: 10px;
        line-height: 1.75;
      }
      body#fan-price-page .fp-hero-list-link {
        font-size: 1.0rem;
        margin-top: 8px;
      }
    }

    /* ---- 強調テキスト（安心感の核心文） ---- */
    body#fan-price-page .fp-emphasis-note {
      color: var(--c-navy-mid);
      font-weight: bold;
    }

    /* ---- アコーディオン案内文（スマホのみ表示） ---- */
    body#fan-price-page .fp-accordion-guide {
      display: none;
    }

    /* ---- スマホ時のアコーディオン＆ボタン調整 ---- */
    @media (max-width: 679px) {
      /* アコーディオン案内文を表示 */
      body#fan-price-page .fp-accordion-guide {
        display: block;
        text-align: center;
        font-size: 0.9375rem;
        font-weight: bold;
        color: var(--c-navy-mid);
        margin: 0 0 14px;
        letter-spacing: .04em;
      }
      /* 背景を薄黄色（sky-pale 上書き） */
      body#fan-price-page .fp-group-head {
        background: #fffdf0;
      }
      /* 開いたときは白に戻してメリハリ */
      body#fan-price-page .fp-group.is-open .fp-group-head {
        background: #fff;
      }
      /* 店舗向けボタンを縦積み・横幅いっぱいに */
      body#fan-price-page .fp-commercial-btns {
        flex-direction: column;
        gap: 10px;
      }
      body#fan-price-page .fp-commercial-btns a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
      }
    }