    /* ========================================
       CSS変数（設計書準拠）
    ======================================== */
    :root {
      --ivory: #FFF8EF;
      --cream: #FFFDF8;
      --soft-beige: #F7EBDD;
      --text-main: #4A3027;
      --text-sub: #6B4D3F;
      --gold: #B8893E;
      --light-gold: #D9B46A;
      --champagne: #C9963E;
      --coral: #FF6F61;
      --rose: #E87970;
      --soft-rose: #F3B6AE;
      --line: #E8CFA7;
      --shadow: rgba(104, 70, 42, 0.08);

      /* ===== Lucide Icon System ===== */
      --icon-coral: #FF6F61;          /* メイン（白背景でのアクセント） */
      --icon-body:  #333333;          /* 本文中のアイコン */
      --icon-on-coral: #FFFFFF;       /* coral背景時 */
      --icon-sm: 24px;                /* 通常サイズ */
      --icon-md: 32px;                /* カード見出し */
      --icon-lg: 40px;                /* メイン訴求 */
      --icon-stroke: 2;               /* 線幅（1.8〜2） */
    }

    /* Lucide統一ユーティリティ — 必要に応じて class 指定 */
    .hc-icon          { width: var(--icon-sm); height: var(--icon-sm); stroke-width: var(--icon-stroke); }
    .hc-icon--md      { width: var(--icon-md); height: var(--icon-md); }
    .hc-icon--lg      { width: var(--icon-lg); height: var(--icon-lg); }
    .hc-icon--coral   { color: var(--icon-coral); }
    .hc-icon--body    { color: var(--icon-body); }
    .hc-icon--on-coral{ color: var(--icon-on-coral); }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      font-family: 'Lora', 'Noto Serif JP', serif;
      background: #d8cec4;
      color: var(--text-main);
    }

    /* ========================================
       PCレイアウト：サイドバー + メイン
    ======================================== */
    .page-layout {
      display: block; /* スマホはブロック */
    }

    /* サイドバー（PCのみ表示） */
    .pc-sidebar {
      display: none; /* スマホは完全非表示 */
    }

    /* 右スペーサー（スマホでは非表示） */
    .page-spacer {
      display: none;
    }

    /* LP本体：スマホでは画面幅100% */
    .lp-wrap {
      width: 100%;
      max-width: 100%;
      margin: 0;
      background: var(--ivory);
      overflow: hidden;
    }

    /* ========================================
       PC表示（幅 1024px以上）
    ======================================== */
    @media (min-width: 1024px) {
      html, body {
        background: #ede5dc;
      }

      .page-layout {
        display: flex; /* PCはフレックスレイアウト */
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 0 20px;
        min-height: 100vh;
      }

      /* 右スペーサーをPCで表示 */
      .page-spacer {
        display: block;
        width: 240px;
        flex-shrink: 0;
      }

      /* 左サイドバー */
      .pc-sidebar {
        display: flex;
        flex-direction: column;
        width: 240px;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        background: var(--cream);
        border-right: 1px solid var(--line);
        padding: 32px 20px 32px;
        gap: 28px;
        z-index: 100;
      }

      /* サイドバー内ロゴ */
      .sb-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--line);
      }
      .sb-logo-icon {
        width: 120px;
        height: 120px;
        object-fit: contain;
      }
      .sb-logo-name {
        font-family: 'Lora', 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--rose);
        letter-spacing: 0.1em;
      }
      .sb-logo-sub {
        font-family: 'Lora', 'Noto Sans JP', sans-serif;
        font-size: 10px;
        color: var(--text-sub);
        letter-spacing: 0.12em;
      }

      /* サイドバーナビ */
      .sb-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .sb-nav-title {
        font-family: 'Lora', 'Cormorant Garamond', serif;
        font-size: 10px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 0.2em;
        margin-bottom: 6px;
        padding-left: 4px;
      }
      .sb-nav a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 8px;
        font-family: 'Lora', 'Noto Serif JP', serif;
        font-size: 12px;
        color: var(--text-sub);
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 0.04em;
      }
      .sb-nav a:hover {
        background: var(--soft-beige);
        color: var(--text-main);
      }
      .sb-nav a .sb-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
        opacity: 0.6;
      }

      /* サイドバー CTAボタン */
      .sb-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 4px;
      }
      .sb-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 12px;
        border-radius: 10px;
        font-family: 'Lora', 'Noto Sans JP', sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.06em;
        transition: opacity 0.2s, transform 0.15s;
      }
      .sb-cta-btn:hover {
        opacity: 0.85;
        transform: translateY(-1px);
      }
      .sb-cta-line {
        background: #06C755;
        color: #fff;
      }
      .sb-cta-web {
        background: var(--rose);
        color: #fff;
      }
      .sb-cta-consult {
        background: var(--champagne);
        color: #fff;
      }

      /* サイドバー店舗情報 */
      .sb-info {
        border-top: 1px solid var(--line);
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .sb-info-title {
        font-family: 'Lora', 'Cormorant Garamond', serif;
        font-size: 10px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 0.2em;
        margin-bottom: 4px;
      }
      .sb-info-row {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-family: 'Lora', 'Noto Sans JP', sans-serif;
        font-size: 11px;
        color: var(--text-sub);
        line-height: 1.5;
      }
      .sb-info-row .sb-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--gold);
      }

      /* LP本体（PC時） */
      .lp-wrap {
        width: 430px;
        max-width: 430px;
        flex-shrink: 0;
        margin: 0;
        box-shadow: 0 0 40px rgba(104,70,42,0.12);
      }

      /* PC時はヘッダーのハンバーガーメニューを非表示 */
      .hdr-menu {
        display: none;
      }
    }



    /* 共通カラーヘルパー */
    .t-red    { color: #c0392b; }
    .t-dark   { color: var(--text-main); }
    .t-salmon { color: var(--rose); }
    .t-gold   { color: var(--gold); }

    /* ========================================
       HEADER（固定）
    ======================================== */
    header {
      position: sticky;
      top: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 18px 8px;
      background: var(--cream);
      border-bottom: 1px solid var(--line);
    }

    .hdr-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hdr-icon {
      width: 52px;
      height: 52px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .hdr-texts { display: flex; flex-direction: column; gap: 2px; }

    .hdr-name {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--rose);
      letter-spacing: 0.08em;
      line-height: 1;
    }

    .hdr-sub {
      font-family: 'Lora', 'Noto Sans JP', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: var(--text-sub);
      letter-spacing: 0.1em;
    }

    .hdr-menu {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }

    .hdr-menu span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--text-main);
      border-radius: 2px;
    }

    /* ========================================
       SECTION 1: HERO — Refined v4
       仕様：
         - 画像 + 上下にダブルオーバーレイ（上：薄暗、下：滑らかなivory）
         - ブランドeyebrow（細い金ライン + 店舗種別 + サブ）
         - 赤強調色を #c0392b → #D85A4E（ブランド統一）
         - キャッチ下にハイラインの装飾ルール
         - 本文を Sans-Serif に切り替えて可読性UP
         - オーバーレイ角丸 36px → 24px、padding 調整
       ======================================== */
    .sec-hero {
      position: relative;
      width: 100%;
      isolation: isolate;
    }

    .hero-media {
      position: relative;
      overflow: hidden;
    }
    .sec-hero img.hero-bg {
      display: block;
      width: 100%;
      height: auto;
      transform: scale(1.001); /* 1px ratio gap防止 */
    }
    /* 画像全体に薄いブランドティント＆上部にかすかな暗色 — 画像と文字の境界を自然に */
    .hero-tint {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        /* 上部にかすかな暗色（テキストが上に来た場合の読みやすさ確保） */
        linear-gradient(180deg, rgba(74, 51, 36, 0.16) 0%, rgba(74, 51, 36, 0) 28%),
        /* 画像全体にごく薄いブランドアイボリーのティント */
        linear-gradient(180deg, rgba(255, 248, 239, 0.04) 0%, rgba(255, 248, 239, 0.08) 100%);
    }

    /* テキスト・ボタンを背景画像の下部に重ねる */
    .hero-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      /* 多段グラデーションで自然な抜けに（旧4ストップ→7ストップ） */
      background: linear-gradient(
        to bottom,
        rgba(255, 248, 239, 0)    0%,
        rgba(255, 248, 239, 0.18) 6%,
        rgba(255, 248, 239, 0.48) 12%,
        rgba(255, 248, 239, 0.78) 18%,
        rgba(255, 248, 239, 0.94) 24%,
        rgba(255, 248, 239, 1)    30%,
        rgba(255, 248, 239, 1)    100%
      );
      border-radius: 24px 24px 0 0;
      padding: 52px 24px 30px;
    }

    /* ブランドeyebrow — ヒーロー最上部の小さなアクセント */
    .hero-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .hero-eyebrow__line {
      flex: 0 1 28px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      display: inline-block;
    }
    .hero-eyebrow__line:last-child {
      background: linear-gradient(90deg, #C9A86A, transparent);
    }
    .hero-eyebrow__text {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      color: #B9852E;
      line-height: 1;
      white-space: nowrap;
    }
    .hero-eyebrow__dot {
      display: inline-block;
      color: #C9A86A;
      font-size: 9px;
      vertical-align: 1px;
      margin: 0 2px;
    }

    /* キャッチコピー
       「顔の印象」「姿勢」= #D85A4E（ブランドサーモン）
       「は、」「から変わる。」= var(--text-main) */
    .hero-catch {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(32px, 9.4vw, 42px);
      font-weight: 500;          /* やや軽くしてエレガントに */
      line-height: 1.34;
      letter-spacing: 0.06em;    /* 0.04 → 0.06 で品位UP */
      margin: 0 0 14px;
      text-align: center;        /* eyebrow と整合 */
    }
    .hero-catch .t-red {
      color: #D85A4E;            /* ブランド統一カラー */
      font-weight: 600;
    }
    .hero-catch .t-dark {
      color: var(--text-main);
    }

    /* キャッチ下の装飾ルール（中央ドット＋細線） */
    .hero-rule {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      width: 60px;
      height: 6px;
    }
    .hero-rule span {
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #D85A4E;
      position: relative;
    }
    .hero-rule span::before, .hero-rule span::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 22px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #D85A4E);
      transform: translateY(-50%);
    }
    .hero-rule span::before { right: 100%; margin-right: 6px; }
    .hero-rule span::after  { left:  100%; margin-left:  6px; background: linear-gradient(90deg, #D85A4E, transparent); }

    /* サブコピー */
    .hero-sub {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(17px, 4.6vw, 21px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.75;
      letter-spacing: 0.05em;
      text-align: center;
      margin: 0 0 14px;
    }

    /* ボディテキスト — Sans-Serif に切替して可読性向上 */
    .hero-body {
      font-family: 'Lora', 'Noto Sans JP', sans-serif;
      font-size: clamp(13px, 3.4vw, 14.5px);
      font-weight: 400;
      color: #6B5E52;
      line-height: 1.95;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0 auto 26px;
      max-width: 30em;
    }

    /* ============================================================
       CTA GROUP — Refined v3
       仕様：
         - 白カードベース + 左に薄いブランドカラーのグラデーション
         - 円形アイコン枠（ブランドカラーを 12% 含む薄背景）
         - タイトル + サブテキスト（24時間受付など実用情報）
         - 矢印は円形バッジ（チャネル色背景・白アイコン）でホバー時に右へ
         - キーボードアクセシビリティ：focus-visible で 2pxアウトラインリング
       ============================================================ */
    .hc-cta-group {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    /* legacy alias */
    .btn-group { display: flex; flex-direction: column; gap: 9px; }

    .hc-cta {
      --hc-cta-color: #b9852e;     /* デフォルト */
      --hc-cta-bg-tint: #FAF4E8;    /* アイコン背景の薄色 */
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 14px 13px 14px;   /* 左右均等に：左バー削除のため */
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 14px;
      text-decoration: none;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.7) inset,
        0 4px 14px -6px rgba(104, 70, 42, 0.12),
        0 8px 28px -16px rgba(104, 70, 42, 0.20);
      transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .25s ease;
      overflow: hidden;
      min-height: 62px;
      isolation: isolate;
    }
    /* 旧：左の縦バーは廃止。代わりにホバー時の繊細な底辺 hairline */
    .hc-cta::before {
      content: "";
      position: absolute;
      left: 20%; right: 20%; bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--hc-cta-color), transparent);
      opacity: 0;
      transition: opacity .35s ease, left .35s ease, right .35s ease;
      z-index: 1;
    }
    .hc-cta:hover::before { opacity: 0.7; left: 4%; right: 4%; }
    /* ホバー時の薄いブランドカラーオーバーレイ */
    .hc-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, var(--hc-cta-color) 100%);
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s ease;
      z-index: 0;
      mix-blend-mode: multiply;
    }
    .hc-cta > * { position: relative; z-index: 2; }
    .hc-cta:hover { transform: translateY(-1px); box-shadow: 0 2px 0 rgba(255,255,255,0.8) inset, 0 10px 22px -8px rgba(104, 70, 42, 0.20), 0 22px 40px -22px rgba(104, 70, 42, 0.30); border-color: rgba(0,0,0,0.08); }
    .hc-cta:hover::after { opacity: 0.04; }
    .hc-cta:active { transform: translateY(0); }
    .hc-cta:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--hc-cta-color), 0 8px 22px -10px rgba(104, 70, 42, 0.25);
      transform: translateY(-1px);
    }

    .hc-cta__icon {
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--hc-cta-bg-tint);
      color: var(--hc-cta-color);
      /* 円の縁にチャネル色のごく薄いリング */
      box-shadow: 0 0 0 1px rgba(255,255,255,0.8) inset, 0 0 0 1.5px var(--hc-cta-color) inset;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .hc-cta:hover .hc-cta__icon {
      transform: scale(1.05);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.8) inset, 0 0 0 2px var(--hc-cta-color) inset;
    }
    /* 旧 hover icon scale は新定義で上書き済み */
    .hc-cta__icon svg { display: block; }

    .hc-cta__body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }
    .hc-cta__title {
      font-family: 'Lora', 'Noto Sans JP', sans-serif;
      font-size: clamp(15px, 4.2vw, 16.5px);
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #2A2624;
      line-height: 1.2;
    }
    .hc-cta__sub {
      font-family: 'Lora', 'Noto Sans JP', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: #7A7167;
      line-height: 1.3;
    }
    /* legacy alias — 旧 eyebrow が残っていても表示できるよう非表示にして詰める */
    .hc-cta__eyebrow { font-family: 'Lora', serif; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #9C9389; line-height: 1; }

    .hc-cta__arrow {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--hc-cta-color);
      color: #fff;
      transition: transform .25s cubic-bezier(.2,.7,.2,1);
    }
    .hc-cta__arrow svg { stroke: #fff; }
    .hc-cta:hover .hc-cta__arrow { transform: translateX(3px); }

    /* チャネル別のアクセントカラー（CSSカスタムプロパティで全要素に伝播） */
    .hc-cta--line {
      --hc-cta-color: #06c755;
      --hc-cta-bg-tint: #E8FBEF;
    }
    .hc-cta--web {
      --hc-cta-color: #E66759;
      --hc-cta-bg-tint: #FDEDEA;
    }
    .hc-cta--consult {
      --hc-cta-color: #B9852E;
      --hc-cta-bg-tint: #FAF1DE;
    }

    /* デスクトップ：3つを横並びに */
    @media (min-width: 980px) {
      .hc-cta-group { flex-direction: row; gap: 12px; }
      .hc-cta { flex: 1; min-height: 64px; }
      .hc-cta__title { font-size: 16px; }
    }

    /* legacy aliases */
    .btn { display: flex; align-items: center; padding: 14px 18px; border-radius: 14px; text-decoration: none; color: #2A2624; background: #fff; }
    .btn-line, .btn-web, .btn-consult { background: #fff; }

    /* ============================================================
       FEATURES — Refined v3
       仕様：
         - セクション見出し（OUR PROMISE + HARICARE 4つの約束）追加
         - 円形アイコンコンテナ（ゴールド系のグラデーション）
         - 縦のドットデバイダ（中央が太い）
         - デスクトップでは4列横並び
         - ホバー：アイコン微回転、影深まる
       ============================================================ */
    .features {
      background: var(--ivory);
      padding: 26px 18px 30px;
    }

    .feat-heading {
      text-align: center;
      margin: 0 0 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .feat-heading__en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.32em;
      color: #B9852E;
      line-height: 1;
      text-transform: uppercase;
    }
    .feat-heading__en::before, .feat-heading__en::after {
      content: "";
      display: inline-block;
      width: 18px;
      height: 1px;
      background: #C9A86A;
      vertical-align: middle;
      margin: 0 10px 3px;
    }
    .feat-heading__jp {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: #2A2624;
      line-height: 1.3;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feat-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(184, 137, 62, 0.16);
      border-radius: 14px;
      padding: 18px 10px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 11px;
      box-shadow: 0 3px 12px -6px rgba(104, 70, 42, 0.10);
      transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
    }
    .feat-card:hover {
      transform: translateY(-2px);
      border-color: rgba(184, 137, 62, 0.35);
      box-shadow: 0 14px 26px -12px rgba(104, 70, 42, 0.22);
    }
    .feat-card:hover .feat-icon-wrap { transform: rotate(-3deg) scale(1.04); }

    .feat-icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 25%, #FFFCF5 0%, transparent 60%),
        linear-gradient(140deg, #FBF1E1 0%, #F0DDB8 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #A87833;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7),
        0 2px 6px -3px rgba(168, 120, 51, 0.25);
      transition: transform .35s cubic-bezier(.2,.7,.2,1);
    }
    .feat-icon { width: 30px; height: 30px; }

    /* ドットデバイダ（中央のドット＋両側の細線） */
    .feat-divider {
      position: relative;
      width: 36px;
      height: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feat-divider::before, .feat-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
    }
    .feat-divider::after {
      background: linear-gradient(90deg, #C9A86A, transparent);
    }
    .feat-divider span {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #C9A86A;
      margin: 0 4px;
      flex-shrink: 0;
    }

    .feat-label {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: 12.5px;
      font-weight: 600;
      color: #2A2624;
      text-align: center;
      line-height: 1.4;
      letter-spacing: 0.03em;
    }

    /* デスクトップ：4列横並び */
    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
      }
      .feat-card { padding: 22px 12px 20px; gap: 13px; }
      .feat-icon-wrap { width: 64px; height: 64px; }
      .feat-icon { width: 32px; height: 32px; }
      .feat-label { font-size: 13.5px; }
    }

    /* legacy aliases — 4隅のスターは削除 */
    .sp { display: none; }

    /* ========================================
       SECTION 2: CONCERNS
    ======================================== */
    .sec-concerns {
      position: relative;
      width: 100%;
    }

    .sec-concerns img.concerns-bg {
      display: block;
      width: 100%;
      height: auto;
    }

    .concerns-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
    }

    /* ---- ヘッダーエリア ---- */
    .concerns-hdr {
      position: absolute;
      top: 4%;
      left: 5%;
      right: 5%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* セクションヘッダー装飾 ✦ → ドットに刷新 */
    .c-sparkle {
      width: 5px;
      height: 5px;
      background: #C9A86A;
      border-radius: 50%;
      font-size: 0;
      color: transparent;
      margin-bottom: 8px;
      position: relative;
    }
    .c-sparkle::before, .c-sparkle::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 20px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      transform: translateY(-50%);
    }
    .c-sparkle::before { right: 100%; margin-right: 6px; }
    .c-sparkle::after  { left:  100%; margin-left:  6px; background: linear-gradient(90deg, #C9A86A, transparent); }

    /* FACIAL CONCERNS — eyebrow統一スタイル */
    .c-en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(11px, 2.8vw, 12.5px);
      font-weight: 500;
      color: #B9852E;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .c-en-line {
      width: 0;
      height: 0;
      margin: 0;
      display: none;          /* 装飾は c-sparkle に統一 */
    }

    /* 大見出し */
    .c-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(24px, 7vw, 30px);
      font-weight: 500;
      line-height: 1.45;
      text-align: center;
      margin-bottom: 6px;
      letter-spacing: 0.06em;
      color: var(--text-main);
    }

    /* リード文 */
    .c-lead {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(11.5px, 3.1vw, 13.5px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 2;
      text-align: center;
      letter-spacing: 0.06em;
      margin-top: 12px;
    }

    /* ---- カードグリッド ---- */
    .c-cards {
      position: absolute;
      top: 27.5%;
      left: 3.5%;
      right: 3.5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.7% 2.8%;
      align-content: start;
    }

    .c-card {
      aspect-ratio: 1.92 / 1;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding-left: 7%;
      padding-top: 30%;
      background: transparent;
    }

    .c-card-label {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(15px, 4.4vw, 19px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.45;
      letter-spacing: 0.04em;
    }

    /* ---- ボトムカード ---- */
    .c-bottom {
      position: absolute;
      top: 80%;
      left: 3.8%;
      right: 3.8%;
    }

    .c-bottom-inner {
      width: 100%;
      aspect-ratio: 3.0 / 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 5%;
      background: transparent;
    }

    .c-bottom-text {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(12px, 3.3vw, 14px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 2;
      letter-spacing: 0.06em;
      text-align: left;
      width: 55%;
    }

    /* ========================================
       SECTION 3: WHY IT HAPPENS
    ======================================== */
    .sec-why {
      position: relative;
      width: 100%;
    }
    .why-bg {
      width: 100%;
      display: block;
    }
    .why-overlay {
      position: absolute;
      inset: 0;
    }

    /* ヘッダーエリア */
    .why-hdr {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 26.6%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 5%;
    }
    /* WHY セクション eyebrow — 統一スタイル */
    .why-en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(11px, 2.8vw, 12.5px);
      font-weight: 500;
      color: #B9852E;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    /* ✦ プラス装飾 → ドット＋ライン に統一 */
    .why-en-plus {
      width: 5px;
      height: 5px;
      background: #C9A86A;
      border-radius: 50%;
      font-size: 0;
      color: transparent;
      margin-bottom: 10px;
      position: relative;
    }
    .why-en-plus::before, .why-en-plus::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      transform: translateY(-50%);
    }
    .why-en-plus::before { right: 100%; margin-right: 6px; }
    .why-en-plus::after  { left:  100%; margin-left:  6px; background: linear-gradient(90deg, #C9A86A, transparent); }
    .why-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(22px, 6.5vw, 28px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.45;
      text-align: center;
      margin: 0 0 10px;
      letter-spacing: 0.06em;
    }
    .why-lead {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(11px, 3vw, 13px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.5;
      text-align: center;
      letter-spacing: 0.06em;
    }

    /* STEPカード群 */
    .why-steps {
      position: absolute;
      inset: 0;
      pointer-events: none; /* コンテナ自体はクリック透過 */
    }
    .why-step {
      position: absolute;
      /* 左端からイラスト左側までのテキストエリア */
      left: 22%;
      right: 32%;   /* 右側32%はイラストエリア */
      background: transparent;
      display: flex;
      align-items: flex-start;
      overflow: hidden;
      pointer-events: auto; /* 各STEPカードは選択可能 */
    }
    #why-s1 { top: 28.0%; height: 18.4%; }
    #why-s2 { top: 46.4%; height: 18.2%; }
    #why-s3 { top: 65%; height: 18.0%; }

    .why-step-inner {
      padding-left: 6%;
      padding-top: 4%;
      display: flex;
      flex-direction: column;
      gap: 0px;
      width: 100%; /* 親が左55%幅なので100%で充展 */
    }
    .why-step-label {
      display: flex;
      align-items: baseline;
      gap: 3px;
      margin-bottom: 3px;
    }
    .why-step-en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(8px, 2.1vw, 10px);
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.15em;
    }
    .why-step-num {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(14px, 3.8vw, 17px);
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .why-step-line {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(9px, 2.3vw, 11px);
      color: var(--gold);
      margin-left: 2px;
    }
    .why-step-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(15px, 4.2vw, 20px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.2;
      letter-spacing: 0.04em;
      margin-bottom: 2px;
    }
    .why-step-desc {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(10px, 2.6vw, 12px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.55;
      letter-spacing: 0.03em;
    }

    /* ボトムカード
       参考画像: 左側に女性横顔イラスト、右側にテキスト3行
       「だから大切なのは、」
       「顔だけでなく、土台から整えること。」（土台から整える = rose色）
       ✦ デコレーター
       「美容鍼 × 美容整体で、内側から本来の美しさへ。」
    */
    .why-bottom {
      position: absolute;
      top: 83.5%;
      left: 3.5%;
      right: 3.5%;
      height: 16.5%;
    }
    .why-bottom-inner {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-right: 5%;
      padding-left: 44%;   /* 左44%はイラスト領域 */
      gap: 0;
      background: transparent;
    }
    .why-bottom-main {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(10px, 2.8vw, 13px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.85;
      letter-spacing: 0.04em;
      text-align: left;
      width: 100%;
    }
    /* ✦ → ドット装飾に統一 */
    .why-bottom-deco {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: #C9A86A;
      border-radius: 50%;
      font-size: 0;
      color: transparent;
      margin: 6px auto;
      position: relative;
    }
    .why-bottom-deco::before, .why-bottom-deco::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 14px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      transform: translateY(-50%);
    }
    .why-bottom-deco::before { right: 100%; margin-right: 5px; }
    .why-bottom-deco::after  { left:  100%; margin-left:  5px; background: linear-gradient(90deg, #C9A86A, transparent); }
    .why-bottom-sub {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(8px, 2.2vw, 10px);
      font-weight: 400;
      color: var(--text-sub);
      text-align: center;
      width: 100%;
      letter-spacing: 0.04em;
      line-height: 1.7;
    }

    /* ========================================
       SECTION 4: W APPROACH
    ======================================== */
    .sec-approach {
      position: relative;
      width: 100%;
      display: block;
    }
    .approach-bg {
      width: 100%;
      display: block;
    }
    .approach-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none; /* オーバーレイ自体は透過 */
    }

    /* ヘッダーエリア（上部タイトル）*/
    .app-hdr {
      pointer-events: auto;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 22%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 3%;
      text-align: center;
    }
    /* APPROACH eyebrow — 統一スタイル */
    .app-en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(10px, 2.6vw, 12px);
      font-weight: 500;
      color: #B9852E;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    /* ✦ → ドット＋ライン に統一 */
    .app-en-plus {
      width: 5px;
      height: 5px;
      background: #C9A86A;
      border-radius: 50%;
      font-size: 0;
      color: transparent;
      margin: 2px auto 8px;
      position: relative;
    }
    .app-en-plus::before, .app-en-plus::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 16px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      transform: translateY(-50%);
    }
    .app-en-plus::before { right: 100%; margin-right: 5px; }
    .app-en-plus::after  { left:  100%; margin-left:  5px; background: linear-gradient(90deg, #C9A86A, transparent); }
    .app-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(20px, 5.5vw, 26px);
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.3;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .app-title-w {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(28px, 8vw, 38px);
      font-weight: 600;
      color: var(--rose);
      letter-spacing: 0.02em;
    }
    .app-deco-line {
      width: 60%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 4px auto;
    }
    .app-lead {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.5vw, 11.5px);
      font-weight: 400;
      color: var(--text-main);
      line-height: 1.8;
      letter-spacing: 0.04em;
      text-align: center;
      padding: 0 6%;
      margin-top: 3%;
    }

    /* 円形エリア（美容针・W・美容整体）*/
    .app-circles {
      pointer-events: none; /* コンテナは透過、内部テキストはauto */
      position: absolute;
      top: 29%;
      left: 0;
      right: 0;
      height: 34.7%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .app-circle-left,
    .app-circle-right {
      pointer-events: auto;
      width: 38%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding-top: 6%;
      padding-bottom: 7%;
      gap: 0;
    }
    .app-circle-left { margin-left: 3%; }
    .app-circle-label {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(13px, 3.5vw, 17px);
      font-weight: 600;
      color: var(--rose);
      letter-spacing: 0.04em;
    }
    .app-circle-items {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.4vw, 11.5px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 2;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .app-circle-center {
      pointer-events: auto;
      width: 24%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      /* 金色の円の中心に合わせる: y=33.1% */
      /* 円形エリア内での相対位置: (33.1-17.9)/34.7 = 43.8% */
      /* 計算: -5%のマージンで金色円の中心に合わせる */
      margin-top: -28%;
      margin-left: -2%;
    }
    .app-circle-w {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(30px, 8.5vw, 46px);
      font-weight: 600;
      color: #fff;
      line-height: 1;
      text-shadow: 0 1px 4px rgba(0,0,0,0.15);
    }
    .app-circle-sub {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.4vw, 12px);
      font-weight: 400;
      color: #fff;
      letter-spacing: 0.1em;
      text-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }

    /* STEPカード群（3枚）*/
    .app-steps {
      position: absolute;
      inset: 0;
      pointer-events: none; /* コンテナ自体はクリック透過 */
    }
    .app-step {
      position: absolute;
      left: 14%;
      right: 1%;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      pointer-events: auto; /* 各カードは選択可能 */
    }
    #app-s1 { top: 53%; height: 10.0%; }
    #app-s2 { top: 63%; height: 8.7%; }
    #app-s3 { top: 73%; height: 9.0%; }

    .app-step-inner {
      display: flex;
      align-items: flex-start;
      width: 60%;
      height: 100%;
      padding: 4% 0 0 5%;
      gap: 0;
    }
    .app-step-label-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-width: 18%;
      padding-top: 1%;
      border-right: 1px solid var(--line);
      margin-right: 5%;
      padding-right: 3%;
    }
    .app-step-en {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(7px, 1.9vw, 9px);
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.1em;
    }
    .app-step-num {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(13px, 3.5vw, 16px);
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .app-step-text-col {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .app-step-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(14px, 4vw, 18px);
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.2;
      letter-spacing: 0.04em;
    }
    .app-step-desc {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.4vw, 11px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.5;
      letter-spacing: 0.03em;
    }

    /* ボトムカード */
    .app-bottom {
      position: absolute;
      top: 81.6%;
      left: 3.5%;
      right: 3.5%;
      height: 16.8%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .app-bottom-inner {
      width: 58%;
      padding-right: 3%;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .app-bottom-text {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(8px, 2.1vw, 9.5px);
      font-weight: 400;
      color: var(--text-main);
      line-height: 1.85;
      letter-spacing: 0.04em;
    }
    .app-bottom-accent {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(11px, 3vw, 14px);
      font-weight: 600;
      color: var(--rose);
      letter-spacing: 0.04em;
      line-height: 1.4;
    }

    /* ========================================
       SECTION 5: 3ヶ月プログラム
       背景画像: program-bg.png (941x1672)
       ヘッダー: 0%-28%
       カード1(骨盤): 28%-45%
       カード2(首肩): 45%-62%
       カード3(顔): 62%-78%
       ボトム: 78%-100%
    ======================================== */
    .sec-program {
      position: relative;
      width: 100%;
      display: block;
    }
    .program-bg {
      width: 100%;
      display: block;
    }
    .program-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    /* ------- ヘッダー ------- */
    .prog-hdr {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 28%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 6%;
      text-align: center;
      pointer-events: auto;
    }
    /* PROGRAM eyebrow — 統一スタイル */
    .prog-label {
      display: inline-block;
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(10px, 2.6vw, 12px);
      font-weight: 500;
      color: #B9852E;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 8px;
      position: relative;
      padding: 0 22px;
    }
    .prog-label::before, .prog-label::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #C9A86A);
      transform: translateY(-50%);
    }
    .prog-label::before { right: 100%; }
    .prog-label::after  { left:  100%; background: linear-gradient(90deg, #C9A86A, transparent); }
    .prog-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(20px, 5.5vw, 26px);
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.3;
      letter-spacing: 0.03em;
      margin-top: 1%;
      margin-bottom: 0;
    }
    .prog-title .t-red {
      color: var(--rose);
    }
    /* タイトル内の大きな「3」 */
    .prog-title .t-num {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(40px, 11vw, 52px);
      font-weight: 600;
      color: var(--rose);
      line-height: 0.85;
      vertical-align: middle;
    }
    .prog-lead {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.4vw, 11px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.75;
      letter-spacing: 0.04em;
      margin-top: 10%;
    }
    .prog-lead .t-red {
      color: var(--rose);
    }

    /* ------- カード群コンテナ ------- */
    .prog-cards {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    /* 各カード共通 縦一列 */
    .prog-card {
      position: absolute;
      left: 8%;
      right: 38%;
      pointer-events: auto;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
    }
    #prog-c1 { top: 30%;  height: 17%; }
    #prog-c2 { top: 47%;  height: 17%; }
    #prog-c3 { top: 64%;  height: 16%; }

     /* 数字テキストコンテナ（背景画像の金色丸の上にテキストのみ重ねる） */
    .prog-num-wrap {
      flex-shrink: 0;
      width: clamp(50px, 13vw, 62px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding-top: 0;
      align-self: flex-start;
      margin-top: 4%;
    }
    /* prog-num-circleは使わない（背景画像に丸あり） */
    .prog-num-circle {
      display: none;
    }
    .prog-num-digit {
      font-family: 'Lora', 'Cormorant Garamond', serif;
      font-size: clamp(26px, 7vw, 34px);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      text-align: center;
    }
    .prog-num-sub {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(7px, 1.8vw, 8.5px);
      color: #fff;
      letter-spacing: 0.05em;
      text-align: center;
      margin-top: 2px;
    }

    /* カード内テキスト */
    .prog-card-inner {
      flex: 1;
      padding-left: 2%;
      padding-top: 4%;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }
    .prog-card-title {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(12px, 3.3vw, 16px);
      font-weight: 600;
      color: var(--rose);
      line-height: 1.25;
      letter-spacing: 0.03em;
      white-space: normal;
    }
    /* タイトル内の漢字部分はダーク */
    .prog-card-title .t-dark {
      color: var(--text-main);
    }
    .prog-card-desc {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(8px, 2.1vw, 9.5px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.65;
      letter-spacing: 0.03em;
    }

    /* ------- ボトムエリア ------- */
    .prog-bottom {
      position: absolute;
      top: 78%;
      left: 3.5%;
      right: 3.5%;
      height: 22%;
      pointer-events: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      /* 左35%は女性イラストエリア */
      padding-left: 35%;
      padding-right: 4%;
      gap: 5px;
    }
    .prog-bottom-lead {
      font-family: 'Lora', 'Noto Serif JP', serif;
      font-size: clamp(9px, 2.4vw, 11px);
      font-weight: 400;
      color: var(--text-sub);
      line-height: 1.8;
      letter-spacing: 0.03em;
      text-align: left;
    }
    .prog-bottom-accent {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(13px, 3.5vw, 16px);
      font-weight: 600;
      color: var(--text-main);
      letter-spacing: 0.03em;
      line-height: 1.5;
      text-align: left;
    }
    .prog-bottom-accent .t-red {
      color: var(--rose);
    }
    /* ボトム内の大きな「3ヶ月」 */
    .prog-bottom-accent .t-num {
      font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
      font-size: clamp(26px, 7vw, 32px);
      font-weight: 600;
      color: var(--rose);
      line-height: 1;
      vertical-align: middle;
      display: inline-block;
    }
    /* 「3」の数字部分だけさらに大きく */
    .prog-bottom-accent .t-num::first-letter {
      font-size: 1.3em;
    }


/* ============================================================
   HARICARE Plugin — 拡張スタイル（プラグイン追加分）
   ============================================================ */

/* CSS変数 — プラグイン管理画面から色を上書きできるよう、優先順位を上げる */
.haricare-body {
  --hc-primary: var(--rose, #E87970);
  --hc-primary-dark: var(--coral, #FF6F61);
  --hc-accent: var(--gold, #B8893E);
}

body.haricare-body { margin: 0; padding: 0; }

/* ----- 共通：パンくず ----- */
.hc-breadcrumb {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hc-breadcrumb a { color: var(--rose); text-decoration: none; }
.hc-breadcrumb a:hover { text-decoration: underline; }

/* ----- 共通：CTA ----- */
.hc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}
.hc-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.hc-cta-btn-phone { background: var(--rose); }
.hc-cta-btn-line  { background: #06C755; }
.hc-cta-btn-web   { background: var(--champagne); }

/* セクションタイトル共通 */
.hc-section-h2 {
  font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(22px, 5vw, 28px);
  color: var(--text-main);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 24px 0 16px;
  text-align: center;
}
.hc-section-en {
  display: block;
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
  text-align: center;
}

/* ============================================================
   サブヘッダー（サブページ用）
   ============================================================ */
.hc-sub-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  position: sticky;
  top: 0;
  z-index: 200;
}
.hc-sub-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hc-sub-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}
.hc-sub-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.hc-sub-logo-name {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.hc-sub-logo-sub {
  font-size: 10px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
}
.hc-sub-nav {
  display: none;
  align-items: center;
  gap: 18px;
}
.hc-sub-nav a {
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.hc-sub-nav a:hover { color: var(--rose); }
.hc-sub-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hc-sub-phone {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--rose);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.hc-sub-net {
  background: var(--champagne);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.hc-sub-burger {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-main);
}
@media (min-width: 1024px) {
  .hc-sub-nav { display: flex; }
  .hc-sub-burger { display: none; }
}

/* ============================================================
   フッター — Refined v4 (1.13.10)
   ============================================================ */
.hc-footer {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(216, 90, 78, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #F5EFE4 0%, #F0E8D9 100%);
  color: #2A2624;
  padding: 48px 20px 20px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  margin-top: 56px;
}
/* 上部に細いゴールド hairline */
.hc-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A, transparent);
}
.hc-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .hc-footer-inner {
    grid-template-columns: 1.1fr 1.8fr 1.4fr;
    gap: 36px;
  }
}

.hc-footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.hc-footer-logo { width: 56px; height: 56px; object-fit: contain; margin-bottom: 10px; }
.hc-footer-name {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #2A2624;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 3px;
}
.hc-footer-sub {
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 11.5px;
  color: #7A7167;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.hc-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.hc-footer-col-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #B9852E;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
.hc-footer-col-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, #C9A86A, transparent);
}
.hc-footer-col a {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  color: #4A413A;
  text-decoration: none;
  padding: 5px 0;
  letter-spacing: 0.05em;
  transition: color .2s ease, transform .2s ease, padding-left .25s ease;
  position: relative;
}
.hc-footer-col a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #D85A4E;
  transition: width .25s ease, margin-right .25s ease;
  vertical-align: middle;
  margin-right: 0;
}
.hc-footer-col a:hover {
  color: #D85A4E;
}
.hc-footer-col a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.hc-footer-phone {
  display: inline-block;
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #D85A4E;
  text-decoration: none;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  line-height: 1;
}
.hc-footer-hours,
.hc-footer-addr {
  font-size: 12px;
  color: #6B5E52;
  line-height: 1.7;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.hc-footer-bottom {
  position: relative;
  margin-top: 32px;
  padding-top: 18px;
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 400;
  color: #8B8278;
  letter-spacing: 0.12em;
}
.hc-footer-bottom::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 62, 0.32), transparent);
}

/* ============================================================
   モバイルドロワー
   ============================================================ */
.hc-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hc-mob-overlay.open { opacity: 1; pointer-events: auto; }
.hc-mob-drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 86%;
  max-width: 320px;
  background: var(--cream);
  z-index: 10000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
}
.hc-mob-drawer.open { transform: translateX(0); }
.hc-mob-drawer-hdr {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.hc-mob-drawer-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.hc-mob-drawer-sub {
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.hc-mob-drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.22);
  border: none; border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.hc-mob-quick {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.hc-mob-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.hc-mob-phone { background: var(--rose); }
.hc-mob-line  { background: #06C755; }
.hc-mob-net   { background: var(--champagne); }
.hc-mob-section { padding: 8px 0; }
.hc-mob-section-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  background: var(--soft-beige);
  color: var(--text-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  margin: 4px 0;
}
.hc-mob-section a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.hc-mob-section a:hover { color: var(--rose); }

/* ============================================================
   固定CTA（モバイル）— Refined v4
   仕様：
     - 白ベース + チャネル色のアイコン円
     - 上部に薄いグラデーション境界（影ではなくグラデーション）
     - safe-area-inset 対応で iPhone X 以降の home indicator 回避
     - active時のスケールフィードバック
   ============================================================ */
.hc-fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid rgba(184, 137, 62, 0.18);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -10px 32px -16px rgba(104, 70, 42, 0.18);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hc-fixed-cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 11px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2A2624;
  background: transparent;
  transition: transform .18s ease;
}
.hc-fixed-cta-btn:active { transform: scale(0.97); }
/* 区切りの細線 */
.hc-fixed-cta-btn + .hc-fixed-cta-btn::before {
  content: "";
  position: absolute;
  left: 0; top: 28%; bottom: 28%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 137, 62, 0.22), transparent);
}
/* チャネル別の SVG アイコン色 */
.hc-fixed-cta-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.hc-cta-phone svg { color: #E66759; }
.hc-cta-line  svg { color: #06C755; }
.hc-cta-web   svg { color: #B9852E; }
/* 旧背景塗りを上書きクリア */
.hc-fixed-cta-btn.hc-cta-phone,
.hc-fixed-cta-btn.hc-cta-line,
.hc-fixed-cta-btn.hc-cta-web { background: transparent; color: #2A2624; }

@media (max-width: 1023px) {
  .hc-fixed-cta { display: grid; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
}

/* ============================================================
   フロントの追加セクション
   ============================================================ */
.sec-menu, .sec-voice, .sec-faq, .sec-access {
  background: var(--ivory);
  padding: 40px 18px 36px;
}
.menu-inner, .voice-inner, .faq-inner, .access-inner {
  max-width: 720px;
  margin: 0 auto;
}
.menu-hdr, .voice-hdr, .faq-hdr, .access-hdr {
  text-align: center;
  margin-bottom: 24px;
}
.menu-en, .voice-en, .faq-en, .access-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.menu-en-plus, .voice-en-plus, .faq-en-plus, .access-en-plus {
  color: var(--gold);
  font-size: 10px;
  margin-bottom: 6px;
}
.menu-title, .voice-title, .faq-title, .access-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.menu-lead, .voice-lead, .access-lead {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 8px;
  line-height: 1.8;
}

/* ----- メニューカードグリッド ----- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  box-shadow: 0 3px 10px var(--shadow);
}
.menu-card.has-badge { border-color: var(--rose); }
.menu-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}
.menu-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.menu-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.menu-price {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
}
.menu-time { font-size: 11px; color: var(--text-sub); }
.menu-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
}
.menu-cta {
  text-align: center;
  margin-top: 22px;
}
.menu-cta-btn {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.menu-cta-btn:hover { background: var(--rose); color: #fff; }

/* ----- お客様の声 ----- */
.voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .voice-list { grid-template-columns: 1fr 1fr; } }
.voice-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px var(--shadow);
}
.voice-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.voice-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
}
.voice-concern {
  font-size: 10px;
  background: var(--soft-beige);
  color: var(--text-sub);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}
.voice-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.voice-text {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.85;
}
.voice-cta { text-align: center; margin-top: 22px; }
.voice-cta-btn {
  display: inline-block;
  color: var(--rose);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}

/* ----- FAQ ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--rose); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-mark {
  background: var(--rose);
  color: #fff;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-q-icon {
  color: var(--rose);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 16px 14px 16px;
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.8;
}
.faq-a-mark {
  background: var(--gold);
  color: #fff;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ----- アクセス ----- */
.access-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .access-body { grid-template-columns: 1fr 1fr; } }
.access-table {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  font-size: 12.5px;
}
.access-table th, .access-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.access-table th {
  background: var(--soft-beige);
  color: var(--text-main);
  font-weight: 700;
  width: 90px;
}
.access-table a { color: var(--rose); text-decoration: none; }
.access-map iframe {
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
}

/* ============================================================
   サブページ汎用：ヒーロー
   ============================================================ */
.hc-subpage-main {
  background: var(--ivory);
  min-height: 60vh;
}
.hc-hub-hero, .hc-fp-hero, .hc-concern-hero, .hc-menu-hero {
  background-color: var(--soft-beige);
  background-size: cover;
  background-position: center;
  padding: 48px 18px 36px;
  position: relative;
}
.hc-hub-hero-inner, .hc-fp-hero-overlay, .hc-concern-hero-overlay, .hc-menu-hero-overlay {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.hc-hub-cat-en, .hc-menu-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.hc-hub-h1, .hc-fp-h1, .hc-concern-h1, .hc-menu-h1 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(24px, 6vw, 32px);
  color: var(--text-main);
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0 0 12px;
}
.hc-hub-lead, .hc-fp-sub, .hc-concern-sub, .hc-menu-catch {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.hc-menu-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 14px;
}
.hc-menu-price {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rose);
}
.hc-menu-time { font-size: 12px; color: var(--text-sub); }

/* サブページ body */
.hc-hub-body, .hc-fp-body, .hc-concern-body, .hc-menu-body {
  background: var(--ivory);
  padding: 36px 18px;
}
.hc-concern-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .hc-concern-layout { grid-template-columns: minmax(0, 720px) 280px; gap: 36px; }
}
.hc-concern-article { min-width: 0; }

/* お悩み別ハブ */
.hc-hub-cat { margin-bottom: 36px; }
.hc-hub-cat-hdr { text-align: center; margin-bottom: 16px; }
.hc-hub-cat-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--text-main);
}
.hc-hub-cat-name a { color: var(--text-main); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.hc-hub-cat-desc {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 8px 0;
}
.hc-hub-cat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .hc-hub-cat-list { grid-template-columns: 1fr 1fr; } }
.hc-hub-cat-item {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.15s, box-shadow 0.2s;
}
.hc-hub-cat-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.hc-hub-cat-item h4 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-main);
}
.hc-hub-cat-item p {
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.6;
}
.hc-hub-empty { color: var(--text-sub); font-size: 12px; text-align: center; padding: 20px; }

/* お悩み個別ページ */
.hc-concern-section { margin-bottom: 32px; }
.hc-section-list { display: flex; flex-direction: column; gap: 12px; }
.hc-list-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.hc-list-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 6px;
}
.hc-list-body {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.85;
}
.hc-section-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 12px 0;
}
.hc-approach-text {
  background: var(--cream);
  border-left: 4px solid var(--rose);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.95;
}
.hc-related-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .hc-related-menu-grid { grid-template-columns: 1fr 1fr; } }
.hc-related-menu-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  text-decoration: none;
  color: var(--text-main);
}
.hc-related-menu-card h4 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  margin-bottom: 4px;
}
.hc-related-menu-card p { font-size: 11.5px; color: var(--text-sub); line-height: 1.5; margin-bottom: 6px; }
.hc-related-price { color: var(--rose); font-weight: 700; font-size: 12px; }
.hc-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hc-related-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-main);
}
.hc-related-card h4 { font-family: 'Lora', 'Shippori Mincho', serif; font-size: 13px; margin-bottom: 4px; }
.hc-related-card p { font-size: 11px; color: var(--text-sub); line-height: 1.5; }

.hc-cta-title {
  text-align: center;
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(18px, 5vw, 22px);
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.hc-cta-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .hc-cta-buttons { grid-template-columns: 1fr 1fr 1fr; } }

/* メニュー個別 */
.hc-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.hc-menu-list li {
  font-size: 13px;
  color: var(--text-main);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  line-height: 1.7;
}
.hc-menu-flow { padding: 0; list-style: none; counter-reset: flow; }
.hc-menu-flow li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hc-flow-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.hc-flow-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.85;
  padding-top: 6px;
}
.hc-menu-section { margin-bottom: 28px; }

/* メニュー一覧ハブ */
.hc-menu-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 600px) { .hc-menu-hub-grid { grid-template-columns: 1fr 1fr; } }
.hc-menu-hub-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px 18px;
  position: relative;
}
.hc-menu-hub-card.has-badge { border-color: var(--rose); }
.hc-menu-hub-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
}
.hc-menu-hub-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
}
.hc-menu-hub-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 17px;
  color: var(--text-main);
  margin: 4px 0 8px;
}
.hc-menu-hub-name a { color: var(--text-main); text-decoration: none; }
.hc-menu-hub-desc { font-size: 12px; color: var(--text-sub); line-height: 1.75; margin-bottom: 10px; }
.hc-menu-hub-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.hc-menu-hub-price {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
}
.hc-menu-hub-time { font-size: 11px; color: var(--text-sub); }
.hc-menu-hub-link {
  display: inline-block;
  color: var(--rose);
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}

/* 固定ページ */
.hc-fp-section { margin-bottom: 32px; }
.hc-strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .hc-strengths-grid { grid-template-columns: 1fr 1fr 1fr; } }
.hc-strength-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.hc-strength-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 6px;
}
.hc-strength-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 6px;
}
.hc-strength-text { font-size: 12px; color: var(--text-sub); line-height: 1.7; }

.hc-mission-body, .hc-philosophy-body {
  background: var(--cream);
  border-left: 4px solid var(--rose);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.95;
}

.hc-history-list, .hc-certs-list, .hc-safety-list, .hc-access-list, .hc-bring-list, .hc-notes-list {
  list-style: none;
  padding: 0;
}
.hc-history-list li, .hc-certs-list li, .hc-safety-list li, .hc-access-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.7;
}
.hc-history-year {
  display: inline-block;
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
  margin-right: 14px;
  min-width: 56px;
}
.hc-bring-list li, .hc-notes-list li {
  padding: 6px 0;
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.8;
}

/* first ページ STEP */
.hc-steps-list { list-style: none; padding: 0; }
.hc-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hc-step-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
  line-height: 1;
}
.hc-step-title { font-family: 'Lora', 'Shippori Mincho', serif; font-size: 15px; color: var(--text-main); margin-bottom: 4px; }
.hc-step-text { font-size: 12.5px; color: var(--text-sub); line-height: 1.8; }

/* program ページ */
.hc-program-overview { text-align: center; }
.hc-program-lead { font-size: 13px; color: var(--text-sub); line-height: 1.95; }
.hc-program-months {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .hc-program-months { grid-template-columns: 1fr 1fr 1fr; } }
.hc-prog-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.hc-prog-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 6px;
}
.hc-prog-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 8px;
}
.hc-prog-card p { font-size: 12px; color: var(--text-sub); line-height: 1.8; }
.hc-program-price-card {
  background: var(--cream);
  border: 2px solid var(--rose);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.hc-program-price-amount {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--rose);
}
.hc-program-detail-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--rose);
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid var(--rose);
}

/* price ページ */
.hc-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .hc-price-grid { grid-template-columns: 1fr 1fr; } }
.hc-price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  position: relative;
}
.hc-price-card.has-badge { border-color: var(--rose); }
.hc-price-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
.hc-price-name { font-family: 'Lora', 'Shippori Mincho', serif; font-size: 16px; margin-bottom: 6px; }
.hc-price-name a { color: var(--text-main); text-decoration: none; }
.hc-price-desc { font-size: 12.5px; color: var(--text-sub); line-height: 1.7; margin-bottom: 10px; }
.hc-price-meta { display: flex; align-items: baseline; gap: 10px; }
.hc-price-price { font-family: 'Lora', 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--rose); }
.hc-price-time  { font-size: 11px; color: var(--text-sub); }
.hc-price-note { font-size: 11px; color: var(--text-sub); margin-top: 14px; text-align: center; }

/* ============================================================
   サイドバー（サブページ用）
   ============================================================ */
.hc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hc-sidebar-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.hc-sidebar-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}
.hc-sidebar ul { list-style: none; padding: 0; margin: 0; }
.hc-sidebar li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.hc-sidebar li:last-child { border-bottom: none; }
.hc-sidebar a {
  font-size: 12.5px;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.hc-sidebar a:hover { color: var(--rose); }
.hc-sidebar-cta-btn {
  display: block;
  background: var(--rose);
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
}
.hc-sidebar-phone {
  display: block;
  font-size: 12px;
  text-align: center;
  color: var(--text-sub);
  text-decoration: none;
}
.hc-sidebar-phone strong {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--rose);
  display: block;
}

/* ============================================================
   ブログ
   ============================================================ */
.hc-blog-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  justify-content: center;
}
.hc-blog-cat-nav a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 11.5px;
  color: var(--text-main);
  text-decoration: none;
  background: var(--cream);
}
.hc-blog-cat-nav a.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.hc-blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 600px) { .hc-blog-list { grid-template-columns: 1fr 1fr; } }
.hc-blog-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.hc-blog-card-img { display: block; }
.hc-blog-card-img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.hc-blog-card-body { padding: 14px; }
.hc-blog-card-meta { display: flex; gap: 8px; align-items: center; font-size: 10.5px; color: var(--text-sub); margin-bottom: 4px; letter-spacing: 0.04em; }
.hc-blog-card-cat { background: var(--soft-beige); padding: 2px 8px; border-radius: 8px; }
.hc-blog-card-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.hc-blog-card-title a { color: var(--text-main); text-decoration: none; }
.hc-blog-card-excerpt { font-size: 12px; color: var(--text-sub); line-height: 1.7; }

.hc-blog-article { background: var(--ivory); padding: 36px 18px; }
.hc-blog-article-hero {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: left;
}
.hc-blog-article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hc-blog-article-cat {
  background: var(--soft-beige);
  padding: 3px 10px;
  border-radius: 10px;
}
.hc-blog-article-h1 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(22px, 6vw, 30px);
  color: var(--text-main);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.hc-blog-article-img img {
  width: 100%; height: auto;
  border-radius: 10px;
  display: block;
}
.hc-blog-article-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .hc-blog-article-layout { grid-template-columns: minmax(0, 720px) 280px; gap: 36px; }
}
.hc-blog-article-content {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.95;
}
.hc-blog-article-content h2 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--text-main);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin: 22px 0 12px;
}
.hc-blog-article-content h3 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--rose);
  margin: 16px 0 8px;
}
.hc-blog-article-content p { margin-bottom: 12px; }
.hc-blog-article-content img { max-width: 100%; height: auto; border-radius: 8px; }
.hc-blog-article-tags { margin: 18px 0 8px; }
.hc-blog-tag {
  display: inline-block;
  background: var(--soft-beige);
  color: var(--text-sub);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  margin-right: 6px;
}

/* トップナビ */
.hc-topnav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.hc-topnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hc-topnav a {
  font-size: 12.5px;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 4px 8px;
}
.hc-topnav a:hover { color: var(--rose); }

/* ============================================================
   v1.1 — seikotsu風 全幅レイアウト追加
   ============================================================
   フロントページの最上位にフルワイド header, top-nav を配置し、
   その下に サイドバー + メインカラム のレイアウトを敷く。
   LP本体（hero/concerns/why/approach/program）は max-width 430px の
   カードとしてメインカラム中央に配置（既存LPデザインを完全保持）。
   ============================================================ */

/* フロントページ body は背景色をニュートラルに（既存LPの#d8cec4は維持） */
.haricare-frontpage {
  background: #e9e0d3;
}

/* ===== ヘッダー（PC） ===== */
.hc-hdr-pc {
  display: none;
  background: #fff;
  border-bottom: 3px solid var(--rose);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  position: relative;
  z-index: 50;
}
@media (min-width: 768px) { .hc-hdr-pc { display: block; } }
.hc-hdr-pc-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hc-hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--text-main);
}
.hc-hdr-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.hc-hdr-logo-name {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.06em;
  line-height: 1.15;
}
.hc-hdr-logo-sub {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.hc-hdr-logo-type {
  font-size: 10px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}
.hc-hdr-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.hc-hdr-hours-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-hdr-hours-body { font-size: 12px; color: var(--text-sub); line-height: 1.5; }
.hc-hdr-hours-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.hc-hdr-hours-row { white-space: nowrap; }
.hc-hdr-hours-row strong { color: var(--text-main); font-weight: 700; }
.hc-hdr-hours-note {
  font-size: 10px;
  color: var(--rose);
  font-weight: 600;
  margin-top: 2px;
}
.hc-hdr-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  align-items: stretch;
}
.hc-hdr-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232,121,112,0.28);
  transition: box-shadow 0.2s;
}
.hc-hdr-phone:hover { box-shadow: 0 4px 14px rgba(232,121,112,0.4); color: #fff; }
.hc-hdr-phone-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-hdr-phone-sub {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.05em;
}
.hc-hdr-phone-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.hc-hdr-access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid var(--line);
  color: var(--text-sub);
  border-radius: 6px;
  padding: 6px 14px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.hc-hdr-access:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* ===== ヘッダー（Mobile） ===== */
.hc-hdr-mob {
  display: block;
  background: #fff;
  border-bottom: 2px solid var(--rose);
  box-shadow: 0 1px 4px rgba(104,70,42,0.06);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 768px) { .hc-hdr-mob { display: none; } }
.hc-hdr-mob-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}
.hc-hdr-mob-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: var(--text-main);
}
.hc-hdr-mob-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.hc-hdr-mob-name {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.hc-hdr-mob-sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hc-hdr-mob-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hc-hdr-mob-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--rose);
  color: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(232,121,112,0.3);
}
.hc-hdr-mob-phone-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hc-hdr-mob-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--text-main);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  gap: 2px;
}
.hc-hdr-mob-menu-label {
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== トップナビ（PC） ===== */
.hc-topnav {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
}
@media (min-width: 768px) { .hc-topnav { display: block; } }
.hc-topnav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.hc-topnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.hc-topnav-list li {
  position: relative;
}
.hc-topnav-list li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 30%; bottom: 30%;
  width: 1px;
  background: var(--line);
}
.hc-topnav-list a {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s, background 0.2s;
}
.hc-topnav-list a:hover {
  color: var(--rose);
  background: var(--soft-beige);
}

/* ===== メインレイアウト（サイドバー + メイン） ===== */
.hc-main-wrap {
  background: #e9e0d3;
  padding: 0;
}
.hc-main-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: block;
  padding: 16px;
  gap: 0;
}
@media (min-width: 1024px) {
  .hc-main-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 24px 18px;
  }
}

/* フロントサイドバー（PCのみ表示） */
.hc-front-sidebar {
  display: none;
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 16px;
  height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 4px 16px rgba(104,70,42,0.06);
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
}
@media (min-width: 1024px) { .hc-front-sidebar { display: block; } }

.hc-fs-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hc-fs-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hc-fs-logo-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.hc-fs-logo-name {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.06em;
}
.hc-fs-logo-sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hc-fs-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-fs-nav-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 6px;
  padding-left: 4px;
}
.hc-fs-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 12px;
  color: var(--text-sub);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.hc-fs-nav a:hover {
  background: var(--soft-beige);
  color: var(--text-main);
}
.hc-fs-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}
.hc-fs-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.hc-fs-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.15s;
  color: #fff;
}
.hc-fs-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }
.hc-fs-cta-line  { background: #06C755; }
.hc-fs-cta-web   { background: var(--champagne); }
.hc-fs-cta-phone { background: var(--rose); }
.hc-fs-info {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hc-fs-info-title {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 4px;
}
.hc-fs-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.5;
}
.hc-fs-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

/* メイン（LP本体 + 追加セクション） */
.hc-front-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* LP本体カード — メインカラム全幅（下のセクションと同じ幅） */
.hc-lp-card {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: var(--ivory);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(104,70,42,0.10);
  border-radius: 0;
}
@media (min-width: 768px) {
  .hc-lp-card { border-radius: 14px; }
}

/* 既存LPの page-layout / pc-sidebar / page-spacer はもう使わない（フロントでは） */
.haricare-frontpage .page-layout { display: block; }
.haricare-frontpage .pc-sidebar { display: none !important; }
.haricare-frontpage .page-spacer { display: none !important; }
/* LPの内部 header は新ヘッダーが上位にあるので非表示 */
.haricare-frontpage .lp-wrap > header { display: none; }
/* LP-wrapはカード内では幅100% */
.haricare-frontpage .hc-lp-card .lp-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--ivory);
}

/* 既存LPの media query (>=1024px) を上書き：lp-wrapを430pxではなく100%にする */
@media (min-width: 1024px) {
  .haricare-frontpage .hc-lp-card .lp-wrap {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
    box-shadow: none;
  }
  .haricare-frontpage html, .haricare-frontpage body {
    background: #e9e0d3;
  }
}

/* LP直下のセクション（メニュー/声/FAQ/アクセス）を全幅で */
.hc-front-main > section,
.hc-front-main .sec-menu,
.hc-front-main .sec-voice,
.hc-front-main .sec-faq,
.hc-front-main .sec-access {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  background: var(--ivory);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(104,70,42,0.06);
}

/* セクション内側は左右パディングを少し増やす（PC時） */
@media (min-width: 1024px) {
  .hc-front-main .menu-inner,
  .hc-front-main .voice-inner,
  .hc-front-main .faq-inner,
  .hc-front-main .access-inner {
    max-width: 760px;
    padding: 0 12px;
  }
}

/* メイン下のスペーサ（モバイル固定CTAでコンテンツが隠れないように） */
.hc-cta-spacer {
  height: 0;
}
@media (max-width: 1023px) {
  .hc-cta-spacer { height: 70px; }
}

/* フッター（フロントでは hc-footer を引き続き使用） */
.haricare-frontpage .hc-footer { margin-top: 0; }

/* ===== モバイル時：LPカードの装飾を控えめに ===== */
@media (max-width: 767px) {
  .hc-main-wrap { padding: 0; background: var(--ivory); }
  .hc-main-layout { padding: 0; }
  .hc-lp-card {
    box-shadow: none;
    border-radius: 0;
  }
  .hc-front-main > section {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ===== サブページ サイドバー（hc-sidebar）の見た目を統一 ===== */
@media (min-width: 1024px) {
  .hc-sidebar {
    position: sticky;
    top: 16px;
  }
}

/* ============================================================
   /reservation/ ページ — HARICARE仕様
   ============================================================ */

.hc-rsv-intro {
  text-align: center;
  margin-bottom: 24px;
}
.hc-rsv-intro-body {
  max-width: 580px;
  margin: 0 auto;
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--text-main);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* 3つの予約方法 — グリッド */
.hc-rsv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .hc-rsv-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
}

.hc-rsv-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 20px 22px;
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
  transition: transform 0.18s, box-shadow 0.22s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.hc-rsv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(104,70,42,0.12);
}
.hc-rsv-card-line:hover  { border-color: #06C755; }
.hc-rsv-card-web:hover   { border-color: var(--champagne); }
.hc-rsv-card-phone:hover { border-color: var(--rose); }

.hc-rsv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
}
.hc-rsv-icon-line  { background: #06C755; }
.hc-rsv-icon-web   { background: var(--champagne); }
.hc-rsv-icon-phone { background: var(--rose); }

.hc-rsv-label {
  font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.hc-rsv-sub {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.hc-rsv-desc {
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.hc-rsv-phone-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.hc-rsv-action {
  display: inline-block;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.06em;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.hc-rsv-card-line .hc-rsv-action  { color: #06C755; }
.hc-rsv-card-web  .hc-rsv-action  { color: var(--champagne); }
.hc-rsv-card-phone .hc-rsv-action { color: var(--rose); }

/* WEB予約埋め込み */
.hc-rsv-embed-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(104,70,42,0.10);
  background: var(--cream);
}

/* ご来店前のご案内 */
.hc-rsv-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-rsv-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.hc-rsv-note-mark {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hc-rsv-note-text {
  flex: 1;
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* 予約ページの hero スタイル微調整 */
.hc-fp-hero-reservation {
  background-color: var(--soft-beige);
  background-image: linear-gradient(135deg, rgba(232,121,112,0.06), rgba(184,137,62,0.06));
}

/* ===== フッターSNSリンク — Refined v4 (SVGアイコン版) ===== */
.hc-footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.hc-footer-sns-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 50%;
  color: #7A7167;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.4);
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}
.hc-footer-sns-link svg { display: block; }
.hc-footer-sns-link:hover {
  color: #fff;
  background: #D85A4E;
  border-color: #D85A4E;
  transform: translateY(-2px);
}
.hc-footer-sns-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #D85A4E;
}
/* チャネル別ホバー色 */
.hc-footer-sns-instagram:hover { background: linear-gradient(135deg, #E1306C, #FFA32A); border-color: #E1306C; }
.hc-footer-sns-x:hover         { background: #111;     border-color: #111; }
.hc-footer-sns-facebook:hover  { background: #1877F2;  border-color: #1877F2; }
.hc-footer-sns-threads:hover   { background: #111;     border-color: #111; }
.hc-footer-sns-tiktok:hover    { background: #111;     border-color: #111; }
.hc-footer-sns-youtube:hover   { background: #FF0000;  border-color: #FF0000; }

/* ============================================================
   ローカルSEOブロック（フロントページ自動挿入）
   ============================================================ */
.sec-local-seo {
  background: var(--ivory);
  padding: 40px 18px 36px;
  border-radius: 14px;
  margin-top: 24px;
}
.local-seo-inner { max-width: 760px; margin: 0 auto; }
.local-seo-hdr { text-align: center; margin-bottom: 28px; }
.local-seo-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.local-seo-en-plus { color: var(--gold); font-size: 10px; margin-bottom: 6px; }
.local-seo-title {
  font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 500; color: var(--text-main);
  letter-spacing: 0.04em; line-height: 1.5;
}
.local-seo-summary {
  font-size: 13px; color: var(--text-sub);
  margin-top: 12px; line-height: 1.9;
  text-align: left; max-width: 640px; margin-left: auto; margin-right: auto;
}

.local-seo-services {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-bottom: 28px;
}
@media (min-width: 600px) { .local-seo-services { grid-template-columns: 1fr 1fr 1fr; } }
.local-seo-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
}
.local-seo-card-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px; color: var(--text-main);
  line-height: 1.5; margin-bottom: 4px;
}
.local-seo-card-aka {
  font-size: 11px; color: var(--gold);
  margin-bottom: 8px;
}
.local-seo-card-desc {
  font-size: 12px; color: var(--text-sub);
  line-height: 1.85; margin-bottom: 10px;
}
.local-seo-card-area-list {
  font-size: 11px; color: var(--text-sub);
  background: #fdf9f3; padding: 6px 10px; border-radius: 6px;
}

.local-seo-areas { margin-bottom: 28px; }
.local-seo-areas-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px; color: var(--text-main);
  text-align: center; margin-bottom: 12px;
}
.local-seo-areas-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.local-seo-areas-list li {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px;
  font-size: 12.5px; color: var(--text-main);
  line-height: 1.8;
}
.local-seo-areas-list strong {
  color: var(--rose); font-weight: 700;
}

.local-seo-faq-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px; color: var(--text-main);
  text-align: center; margin: 28px 0 12px;
}

/* ============================================================
   詳細コンテンツセクション（地域+美容鍼/整体 SEO 強化）
   ============================================================ */

/* 共通：詳細セクションコンテナ */
.sec-service-deep, .sec-comparison, .sec-flow, .sec-authority {
  background: var(--ivory);
  padding: 44px 18px 40px;
  border-radius: 14px;
  margin-top: 24px;
}
.srv-deep-inner, .cmp-inner, .flow-inner, .auth-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* 共通 見出し */
.srv-deep-en, .cmp-en, .flow-en, .auth-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.3em;
  text-align: center; margin-bottom: 4px;
}
.srv-deep-h2, .cmp-title, .flow-title, .auth-title {
  font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 500; color: var(--text-main);
  letter-spacing: 0.04em; line-height: 1.4;
  text-align: center;
}
.srv-deep-h3, .auth-h3 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px; color: var(--text-main);
  border-left: 3px solid var(--rose);
  padding-left: 10px;
  margin: 18px 0 10px;
}

/* === Service Deep === */
.srv-deep-block + .srv-deep-block { margin-top: 40px; padding-top: 32px; border-top: 1px dashed var(--line); }
.srv-deep-hdr { margin-bottom: 18px; }
.srv-deep-lead {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.95; letter-spacing: 0.03em;
  margin-top: 12px; text-align: left;
}
.srv-deep-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin: 18px 0;
}
@media (min-width: 600px) { .srv-deep-grid { grid-template-columns: 1fr 1fr; } }
.srv-deep-col {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 14px;
}
.srv-deep-list { list-style: none; padding: 0; }
.srv-deep-list li {
  font-size: 12.5px; color: var(--text-main);
  padding: 5px 0; line-height: 1.7;
}
.srv-deep-bullets { margin-top: 18px; }
.srv-deep-numbered {
  list-style: decimal inside; padding: 0; margin-top: 8px;
}
.srv-deep-numbered li {
  font-size: 12.5px; color: var(--text-main);
  padding: 8px 0; line-height: 1.85;
  border-bottom: 1px dashed var(--line);
}
.srv-deep-numbered li:last-child { border-bottom: none; }
.srv-deep-numbered strong { color: var(--rose); }

/* === Comparison Table === */
.cmp-hdr { text-align: center; margin-bottom: 24px; }
.cmp-lead {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.95; margin-top: 12px;
  text-align: left; max-width: 640px; margin-left: auto; margin-right: auto;
}
.cmp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 12px;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}
.cmp-table th, .cmp-table td {
  padding: 10px 8px;
  border: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
.cmp-table thead th {
  background: var(--soft-beige);
  color: var(--text-main);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.cmp-table tbody th {
  background: #fdf9f3;
  color: var(--text-sub);
  text-align: left;
  font-weight: 600;
  font-size: 11.5px;
}
.cmp-table .cmp-highlight {
  background: rgba(232,121,112,0.08);
  color: var(--rose);
  font-weight: 700;
}
.cmp-table thead .cmp-highlight {
  background: var(--rose);
  color: #fff;
}
.cmp-conclusion {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.85;
}

/* === Treatment Flow === */
.flow-hdr { text-align: center; margin-bottom: 24px; }
.flow-title small {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.flow-lead {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.95; margin-top: 12px;
  text-align: center;
}
.flow-steps {
  display: flex; flex-direction: column;
  gap: 12px;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.flow-step-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}
.flow-step-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 4px;
}
.flow-step-desc {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* === Authority / E-E-A-T === */
.auth-hdr { text-align: center; margin-bottom: 24px; }
.auth-lead {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.95; margin-top: 12px;
  text-align: left; max-width: 640px; margin-left: auto; margin-right: auto;
}
.auth-owner { margin: 24px 0; }
.auth-owner-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.auth-owner-meta { text-align: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.auth-owner-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.auth-owner-license {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 600;
}
.auth-owner-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 17px;
  color: var(--text-main);
  margin-top: 4px;
}
.auth-owner-bio {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 2;
  letter-spacing: 0.03em;
}
.auth-owner-badges {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.auth-owner-badges li {
  font-size: 11.5px;
  color: var(--text-main);
  line-height: 1.7;
}

.auth-certs-block, .auth-safety-block, .auth-philosophy { margin-top: 22px; }
.auth-certs { list-style: none; padding: 0; }
.auth-certs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.auth-cert-name { font-weight: 700; color: var(--text-main); }
.auth-cert-issuer { color: var(--text-sub); }
.auth-cert-year {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  color: var(--rose);
  font-size: 11px;
  margin-left: auto;
}
.auth-safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) { .auth-safety-grid { grid-template-columns: 1fr 1fr; } }
.auth-safety-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}
.auth-safety-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 13px;
  color: var(--rose);
  margin-bottom: 4px;
}
.auth-safety-desc {
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.7;
}
.auth-philosophy {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
}
.auth-philosophy p {
  font-size: 13px;
  color: var(--text-main);
  line-height: 2;
}

/* ============================================================
   共有コンポーネント（サブページ共通: authority-strip / cta-block / related-pages）
   ============================================================ */

/* === 信頼性ストリップ === */
.hc-authority-strip {
  background: linear-gradient(135deg, #FFF8EF 0%, #F7EBDD 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 28px 0;
  padding: 20px 18px;
}
.hc-auth-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .hc-auth-strip-inner { grid-template-columns: repeat(4, 1fr); }
}
.hc-auth-strip-item {
  text-align: center;
  padding: 8px 4px;
}
.hc-auth-strip-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.hc-auth-strip-label {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* === 大型CTAブロック === */
.hc-cta-block {
  background: linear-gradient(135deg, rgba(232,121,112,0.06) 0%, rgba(184,137,62,0.06) 100%);
  border-radius: 16px;
  margin: 32px 0;
  padding: 36px 24px;
  text-align: center;
}
.hc-cta-block-inner { max-width: 720px; margin: 0 auto; }
.hc-cta-block-heading {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(20px, 4.6vw, 26px);
  color: var(--text-main);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.hc-cta-block-subtext {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 22px;
}
.hc-cta-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .hc-cta-block-grid { grid-template-columns: 1fr 1fr 1fr; } }
.hc-cta-block-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.15s, box-shadow 0.2s;
}
.hc-cta-block-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.hc-cta-block-phone { background: var(--rose); }
.hc-cta-block-line  { background: #06C755; }
.hc-cta-block-web   { background: linear-gradient(135deg, #D9B46A, var(--champagne)); }
.hc-cta-block-mark { font-size: 22px; }
.hc-cta-block-text { text-align: left; }
.hc-cta-block-label {
  display: block;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.hc-cta-block-detail {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* === 関連ページ === */
.hc-related-pages {
  background: var(--ivory);
  border-radius: 14px;
  padding: 32px 18px;
  margin: 32px 0;
}
.hc-related-inner { max-width: 760px; margin: 0 auto; }
.hc-related-hdr { text-align: center; margin-bottom: 20px; }
.hc-related-en {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.3em;
}
.hc-related-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 20px; color: var(--text-main);
  margin-top: 4px;
}
.hc-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .hc-related-grid { grid-template-columns: 1fr 1fr; } }
.hc-related-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.hc-related-card:hover {
  border-color: var(--rose);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(104,70,42,0.10);
}
.hc-related-icon {
  flex-shrink: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 111, 97, 0.08);
  color: var(--icon-coral, #FF6F61);
  transition: background 0.2s, color 0.2s;
}
.hc-related-icon svg { width: 20px; height: 20px; display: block; }
.hc-related-card:hover .hc-related-icon {
  background: var(--icon-coral, #FF6F61);
  color: #fff;
}
.hc-related-body { flex: 1; min-width: 0; }
.hc-related-label {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 3px;
}
.hc-related-desc {
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.6;
}
.hc-related-arrow {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  color: var(--rose);
  transition: transform 0.2s, color 0.2s;
}
.hc-related-arrow svg { display: block; }
.hc-related-card:hover .hc-related-arrow {
  color: var(--icon-coral, #FF6F61);
  transform: translateX(2px);
}

/* === ブログ関連記事 === */
.hc-blog-related {
  background: var(--ivory);
  border-radius: 14px;
  padding: 26px 18px;
  margin: 24px 0;
}
.hc-blog-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (min-width: 600px) { .hc-blog-related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.hc-blog-related-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.15s, box-shadow 0.2s;
}
.hc-blog-related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(104,70,42,0.10);
}
.hc-blog-related-img img {
  width: 100%; height: 140px;
  object-fit: cover; display: block;
}
.hc-blog-related-body { padding: 12px 14px; }
.hc-blog-related-body time {
  display: block;
  font-size: 10.5px;
  color: var(--text-sub);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.hc-blog-related-body h3 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   セクション間トランジション + スクロール時 fade-in (v1.13.9)
   reduced-motion対応・class名 .hc-reveal を任意の要素に付与
   ============================================================ */

/* セクション間の薄いゴールド hairline divider */
.sec-concerns + .sec-why::before,
.sec-why + .sec-approach::before,
.sec-approach + .sec-program::before,
.sec-program + .sec-service-deep::before,
.sec-service-deep + .sec-comparison::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A, transparent);
  margin: -1px auto 0;
  position: relative;
  z-index: 5;
}

/* fade-in 用ベース（IntersectionObserverで .is-visible を付与）*/
.hc-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hc-reveal-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.hc-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: translateY(0); }
.hc-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.06s; opacity: 1; transform: translateY(0); }
.hc-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.hc-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.hc-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.hc-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }

/* prefers-reduced-motion: 即時表示 */
@media (prefers-reduced-motion: reduce) {
  .hc-reveal, .hc-reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   ヘッダーバー：スクロール時の縮小・透過モード (v1.13.10)
   ============================================================ */
.hc-topnav.is-scrolled,
.hc-hdr-pc.is-scrolled {
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 4px 18px -8px rgba(104, 70, 42, 0.18);
  border-bottom: 1px solid rgba(184, 137, 62, 0.18);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.hc-hdr-pc.is-scrolled .hc-hdr-logo-img { width: 38px !important; height: 38px !important; transition: width .3s ease, height .3s ease; }
.hc-hdr-pc.is-scrolled .hc-hdr-hours { display: none; }
.hc-hdr-pc.is-scrolled .hc-hdr-pc-inner { padding-top: 8px !important; padding-bottom: 8px !important; transition: padding .3s ease; }
.hc-topnav.is-scrolled .hc-topnav-inner { padding-top: 6px !important; padding-bottom: 6px !important; transition: padding .3s ease; }

/* ============================================================
   WHY/APPROACH/PROGRAM ステップ内タイポグラフィ微調整 (v1.13.10)
   ============================================================ */
.why-step-num,
.why-step-en,
.app-step-num,
.app-step-en {
  font-family: 'Lora', 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
}
.why-step-title,
.app-step-title {
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}
.why-step-desc,
.app-step-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0.04em !important;
  line-height: 1.65 !important;
}
.prog-num-digit {
  font-family: 'Lora', 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
}
.prog-card-title,
.prog-card-desc {
  letter-spacing: 0.04em !important;
}
.prog-card-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif !important;
  line-height: 1.7 !important;
}

/* ============================================================
   料金プランページ — Refined v4 (1.13.11)
   PDF「美容整体×美容鍼灸 根本改善プログラム」準拠
   ============================================================ */

/* 共通：eyebrow + h2 */
.hc-pp-eyebrow {
  display: inline-block;
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B9852E;
  padding: 0 22px;
  position: relative;
  margin: 0 0 12px;
  line-height: 1;
}
.hc-pp-eyebrow::before, .hc-pp-eyebrow::after {
  content: "";
  position: absolute; top: 50%;
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A);
  transform: translateY(-50%);
}
.hc-pp-eyebrow::before { right: 100%; }
.hc-pp-eyebrow::after  { left:  100%; background: linear-gradient(90deg, #C9A86A, transparent); }

.hc-pp-h2 {
  font-family: 'Lora', 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #2A2624;
  margin: 0 0 14px;
  text-align: center;
}
.hc-pp-lead {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #4A413A;
  text-align: center;
  margin: 0 auto 22px;
  max-width: 36em;
}
.hc-pp-lead strong { color: #2A2624; font-weight: 600; }
.t-rose { color: #D85A4E; font-weight: 600; }

/* セクション間スペーシング */
.hc-pp-single, .hc-pp-w, .hc-pp-plans, .hc-pp-roadmap {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* ========== セクション1：1回ごとの料金 ========== */
.hc-pp-single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 12px;
}
@media (min-width: 720px) {
  .hc-pp-single-grid { grid-template-columns: 1fr 1fr; }
}

.hc-pp-single-card {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.12);
}
.hc-pp-single-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2A2624;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.hc-pp-single-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #6B5E52;
  line-height: 1.7;
  margin: 0 0 16px;
}
.hc-pp-single-prices {
  border-top: 1px dashed rgba(184, 137, 62, 0.28);
  padding-top: 12px;
}
.hc-pp-single-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 6px 0;
  gap: 8px;
}
.hc-pp-single-label {
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B8278;
}
.hc-pp-single-strike {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 500;
  color: #B4ACA2;
  text-decoration: line-through;
}
.hc-pp-single-row--member {
  background: #FDF6EA;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 6px;
}
.hc-pp-single-row--member .hc-pp-single-label { color: #B9852E; }
.hc-pp-single-price {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #B9852E;
  letter-spacing: 0.02em;
}
.hc-pp-single-save {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #D85A4E;
  background: rgba(216, 90, 78, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.hc-pp-single-note {
  font-size: 11px;
  color: #8B8278;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ========== セクション2：Wアプローチ ========== */
.hc-pp-w-card {
  background: linear-gradient(140deg, #FFFBF3 0%, #FAF1DE 100%);
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 18px;
  padding: 26px 18px 22px;
  text-align: center;
  margin-top: 18px;
}
.hc-pp-w-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 18px;
}
.hc-pp-w-formula-item {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-pp-w-formula-item--total {
  background: #2A2624;
  border-color: #2A2624;
  color: #fff;
}
.hc-pp-w-formula-num {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2A2624;
}
.hc-pp-w-formula-item--total .hc-pp-w-formula-num { color: #fff; }
.hc-pp-w-formula-label {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 10.5px;
  color: #7A7167;
  letter-spacing: 0.04em;
}
.hc-pp-w-formula-item--total .hc-pp-w-formula-label { color: #E8DCC4; }
.hc-pp-w-formula-sign {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: #B9852E;
  font-weight: 400;
}
.hc-pp-w-month {
  border-top: 1px solid rgba(184, 137, 62, 0.22);
  padding-top: 14px;
  margin-bottom: 14px;
}
.hc-pp-w-month-line {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #6B5E52;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.hc-pp-w-month-total {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15px;
  color: #2A2624;
  font-weight: 500;
}
.hc-pp-w-month-amount {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 600;
  color: #D85A4E;
  letter-spacing: 0.02em;
}
.hc-pp-w-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #6B5E52;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0;
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
}

/* ========== セクション3：3つの会員プラン ========== */
.hc-pp-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 20px 0 14px;
}
@media (min-width: 880px) {
  .hc-pp-plans-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.hc-pp-plan {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 18px;
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.14);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.hc-pp-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -16px rgba(104, 70, 42, 0.20);
}

.hc-pp-plan--popular {
  border-color: rgba(216, 90, 78, 0.35);
  box-shadow: 0 4px 14px -8px rgba(216, 90, 78, 0.18);
}
.hc-pp-plan--premium {
  background: linear-gradient(160deg, #FFFFFF 0%, #FFFBF3 100%);
  border-color: rgba(185, 133, 46, 0.45);
  border-width: 2px;
  box-shadow: 0 6px 22px -10px rgba(185, 133, 46, 0.22);
}

.hc-pp-plan-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #B9852E;
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}
.hc-pp-plan--basic .hc-pp-plan-tag    { background: #8B8278; }
.hc-pp-plan--popular .hc-pp-plan-tag  { background: #D85A4E; }
.hc-pp-plan--premium .hc-pp-plan-tag  { background: linear-gradient(135deg, #B9852E, #8B6420); }

.hc-pp-plan-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  color: #2A2624;
  margin: 6px 0 0;
  letter-spacing: 0.04em;
}
.hc-pp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px dashed rgba(184, 137, 62, 0.32);
  padding-bottom: 14px;
}
.hc-pp-plan-amount {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #2A2624;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hc-pp-plan-amount small {
  font-size: 16px;
  margin-left: 2px;
  font-weight: 500;
}
.hc-pp-plan--popular .hc-pp-plan-amount { color: #D85A4E; }
.hc-pp-plan--premium .hc-pp-plan-amount { color: #B9852E; }
.hc-pp-plan-cycle {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11.5px;
  color: #7A7167;
  letter-spacing: 0.04em;
}

.hc-pp-plan-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hc-pp-plan-points-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #6B5E52;
  padding: 7px 0;
  border-bottom: 1px solid rgba(184, 137, 62, 0.10);
  letter-spacing: 0.03em;
}
.hc-pp-plan-points-row:last-child { border-bottom: none; }
.hc-pp-plan-points-row strong {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #2A2624;
  font-weight: 600;
}
.hc-pp-plan-points-row--bonus {
  color: #B9852E;
  background: rgba(250, 244, 232, 0.5);
  padding: 7px 10px;
  margin: 4px -10px 0;
  border-radius: 6px;
  border: none;
}
.hc-pp-plan-points-row--bonus strong { color: #B9852E; }
.hc-pp-plan-points-row--first {
  background: #2A2624;
  color: #FAF1DE;
  padding: 8px 10px;
  margin: 4px -10px 0;
  border-radius: 6px;
  border: none;
}
.hc-pp-plan-points-row--first strong { color: #fff; }

.hc-pp-plan-rec {
  background: #FAF1DE;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: auto;
}
.hc-pp-plan-rec-label {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #B9852E;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hc-pp-plan-rec p {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #4A413A;
  line-height: 1.65;
  letter-spacing: 0.03em;
  margin: 0;
}

.hc-pp-plans-note {
  font-size: 11px;
  color: #8B8278;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ========== セクション4：9ヶ月ロードマップ — Editorial v5 ==========
   左ボーダーの色付けを廃止。代わりに：
   - 「01/02/03」を浮遊するゴールド foil バッジに（円形・グラデーション・影）
   - カード本体はクリーンな白＋細い金枠
   - 期間ラベル「1〜3ヶ月目」を小さなチップに格上げ
   - ステップ名の下に細い金 hairline 装飾
   - 番号は左上に「スタンプ」のように配置（カード上端からはみ出る）
   ============================================================ */
.hc-pp-roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 22px;          /* バッジ分の上スペース確保 */
  list-style: none;
  padding: 0;
  margin: 28px 0 18px;
}
.hc-pp-roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 16px;
  padding: 24px 22px 22px;
  box-shadow: 0 6px 18px -10px rgba(104, 70, 42, 0.14);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.hc-pp-roadmap-step:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 62, 0.32);
  box-shadow: 0 14px 28px -14px rgba(104, 70, 42, 0.22);
}

/* 番号：エディトリアル系 — 大きな Lora 数字 + 細い金線
   ボール／グラデーションを廃止、3つとも同じ落ち着いた色味で統一 */
.hc-pp-roadmap-num {
  position: relative;
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: #2A2624;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-top: 4px;
  text-align: left;
}
/* 番号の下に細い金 hairline（章番号風） */
.hc-pp-roadmap-num::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, #C9A86A, transparent);
}
/* 全ステップ共通の単一カラー（色変化を廃止） */
.hc-pp-roadmap-step:nth-child(2) .hc-pp-roadmap-num,
.hc-pp-roadmap-step:nth-child(3) .hc-pp-roadmap-num {
  color: #2A2624;
}
.hc-pp-roadmap-step:nth-child(2) .hc-pp-roadmap-num::after,
.hc-pp-roadmap-step:nth-child(3) .hc-pp-roadmap-num::after {
  background: linear-gradient(90deg, #C9A86A, transparent);
}

.hc-pp-roadmap-body { padding-top: 2px; }

.hc-pp-roadmap-period {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #B9852E;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: #FAF1DE;
  padding: 3px 10px;
  border-radius: 8px;
}
/* period のチップ色も統一（赤系を廃止） */
.hc-pp-roadmap-step:nth-child(2) .hc-pp-roadmap-period,
.hc-pp-roadmap-step:nth-child(3) .hc-pp-roadmap-period {
  color: #B9852E;
  background: #FAF1DE;
}

.hc-pp-roadmap-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  color: #2A2624;
  margin: 6px 0 8px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 8px;
}
/* タイトル直下の細い金 hairline */
.hc-pp-roadmap-name::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, #C9A86A, transparent);
}
/* タイトル下 hairline は全て金で統一 */
.hc-pp-roadmap-step:nth-child(2) .hc-pp-roadmap-name::after,
.hc-pp-roadmap-step:nth-child(3) .hc-pp-roadmap-name::after {
  background: linear-gradient(90deg, #C9A86A, transparent);
}

.hc-pp-roadmap-combo {
  display: inline-block;
  background: #FAF1DE;
  color: #B9852E;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.hc-pp-roadmap-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #4A413A;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin: 0;
}
.hc-pp-roadmap-after {
  text-align: center;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #4A413A;
  letter-spacing: 0.04em;
  background: linear-gradient(140deg, #FFFBF3 0%, #FAF1DE 100%);
  padding: 16px 22px;
  border-radius: 12px;
  margin: 22px auto 0;
  max-width: 560px;
  width: fit-content;
  border: 1px solid rgba(184, 137, 62, 0.18);
  box-shadow: 0 2px 8px rgba(184, 137, 62, 0.06);
}
@media (max-width: 640px) {
  .hc-pp-roadmap-after {
    width: auto;
    max-width: 100%;
  }
}

/* ============================================================
   /program/ ページ専用
   ============================================================ */
.hc-program-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}
@media (min-width: 720px) {
  .hc-program-why-grid { grid-template-columns: repeat(3, 1fr); }
}
.hc-program-why-card {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.10);
}
.hc-program-why-num {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: #B9852E;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.hc-program-why-card h3 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 15.5px;
  font-weight: 600;
  color: #2A2624;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.hc-program-why-card p {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #4A413A;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin: 0;
}

.hc-program-start-card {
  background: linear-gradient(140deg, #2A2624 0%, #3D352F 100%);
  color: #FAF1DE;
  border-radius: 18px;
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: 0 8px 28px -12px rgba(42, 38, 36, 0.35);
}
.hc-program-start-card .hc-pp-eyebrow { color: #E8C77A; }
.hc-program-start-card .hc-pp-eyebrow::before,
.hc-program-start-card .hc-pp-eyebrow::after {
  background: linear-gradient(90deg, transparent, #E8C77A);
}
.hc-program-start-card .hc-pp-eyebrow::after { background: linear-gradient(90deg, #E8C77A, transparent); }
.hc-program-start-card .hc-pp-h2 { color: #fff; }
.hc-program-start-card .t-rose { color: #FFB5A8; }
.hc-program-start-card p {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  color: #E8DCC4;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 16px 0 22px;
}
.hc-program-start-card p strong { color: #fff; font-weight: 600; }

.hc-program-start-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D85A4E;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px -10px rgba(216, 90, 78, 0.55);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hc-program-start-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(216, 90, 78, 0.65);
}
.hc-program-start-cta svg { transition: transform .25s ease; }
.hc-program-start-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   フロントページ：新 PROGRAM セクション + 料金 teaser (v1.13.12)
   ============================================================ */
.sec-program-v2 {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(216, 90, 78, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #FFFBF3 0%, #FAF1DE 100%);
  padding: 56px 18px 60px;
  position: relative;
}
.sec-program-v2::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A, transparent);
}
.hc-fp-prog-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hc-fp-prog-hdr {
  text-align: center;
  margin-bottom: 26px;
}
.hc-fp-prog-hdr .hc-pp-h2 {
  font-size: clamp(22px, 6.4vw, 28px);
  margin-top: 6px;
}

/* 料金 teaser ブロック */
.hc-fp-price-teaser {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 18px;
  padding: 28px 22px 26px;
  margin-top: 32px;
  text-align: center;
  box-shadow: 0 6px 22px -12px rgba(104, 70, 42, 0.18);
}
.hc-fp-price-teaser-h3 {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: clamp(15px, 4.4vw, 18px);
  font-weight: 600;
  color: #2A2624;
  letter-spacing: 0.05em;
  margin: 6px 0 18px;
  line-height: 1.5;
}
.hc-fp-price-teaser-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
@media (min-width: 720px) {
  .hc-fp-price-teaser-list { grid-template-columns: repeat(3, 1fr); }
}
.hc-fp-price-teaser-item {
  position: relative;
  background: #FFFBF3;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 12px;
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hc-fp-price-teaser-item:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 62, 0.35);
  box-shadow: 0 10px 22px -10px rgba(104, 70, 42, 0.18);
}
.hc-fp-price-teaser-item--popular {
  border-color: rgba(216, 90, 78, 0.45);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF5F3 100%);
}
.hc-fp-price-teaser-tag {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 4px;
}
.hc-fp-price-teaser-tag--basic    { background: #8B8278; }
.hc-fp-price-teaser-tag--popular  { background: #D85A4E; }
.hc-fp-price-teaser-tag--premium  { background: linear-gradient(135deg, #B9852E, #8B6420); }

.hc-fp-price-teaser-amount {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #2A2624;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hc-fp-price-teaser-amount small {
  font-size: 13px;
  font-weight: 500;
  margin-left: 1px;
}
.hc-fp-price-teaser-item--popular .hc-fp-price-teaser-amount { color: #D85A4E; }
.hc-fp-price-teaser-note {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11.5px;
  color: #6B5E52;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.hc-fp-price-teaser-summary {
  background: #FAF1DE;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 12px 0 16px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #4A413A;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.hc-fp-price-teaser-summary strong {
  color: #B9852E;
  font-weight: 600;
  font-family: 'Lora', serif;
  font-size: 13.5px;
}

.hc-fp-price-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D85A4E;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px -10px rgba(216, 90, 78, 0.55);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hc-fp-price-teaser-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(216, 90, 78, 0.65);
}
.hc-fp-price-teaser-cta svg { transition: transform .25s ease; }
.hc-fp-price-teaser-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   ALL MENU グリッド v2 — 会員/通常 二段表示 (1.13.16)
   ============================================================ */
.hc-price-grid--v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 12px;
}
@media (min-width: 720px) {
  .hc-price-grid--v2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .hc-price-grid--v2 { grid-template-columns: 1fr 1fr 1fr; }
}

.hc-price-card--v2 {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 16px;
  padding: 22px 20px 18px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.12);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s ease, box-shadow .28s ease;
}
.hc-price-card--v2:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 62, 0.32);
  box-shadow: 0 12px 26px -12px rgba(104, 70, 42, 0.20);
}
.hc-price-card--v2 .hc-price-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: #D85A4E;
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}
.hc-price-card--v2 .hc-price-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  color: #2A2624;
  margin: 4px 0 6px;
  letter-spacing: 0.04em;
}
.hc-price-card--v2 .hc-price-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.hc-price-card--v2 .hc-price-name a:hover {
  border-bottom-color: #D85A4E;
}
.hc-price-card--v2 .hc-price-desc {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #6B5E52;
  line-height: 1.75;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}
.hc-price-meta--v2 {
  border-top: 1px dashed rgba(184, 137, 62, 0.28);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* 通常価格の行（控えめに） */
.hc-price-row--regular {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px;
}
/* 会員価格の行（メインで強調・グリッドで構造化） */
.hc-price-row--member {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 12px;
  background: linear-gradient(180deg, #FDF6EA 0%, #FAEDD2 100%);
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 12px;
  padding: 12px 16px;
}
.hc-price-row--single {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FDF6EA 0%, #FAEDD2 100%);
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
}
.hc-price-label {
  font-family: 'Lora', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B8278;
  line-height: 1;
}
.hc-price-row--member .hc-price-label {
  color: #fff;
  background: #B9852E;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hc-price-strike {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 500;
  color: #B4ACA2;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.hc-price-amount {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #B9852E;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.hc-price-row--single .hc-price-amount {
  font-size: 20px;
}
.hc-price-save {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #D85A4E;
  background: #fff;
  border: 1px solid rgba(216, 90, 78, 0.35);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}
.hc-price-note-inline {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 10.5px;
  color: #8B8278;
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
/* スマホ用：「会員」行が窮屈になりすぎたら save バッジを下段へ */
@media (max-width: 380px) {
  .hc-price-row--member {
    grid-template-columns: auto 1fr;
    row-gap: 6px;
  }
  .hc-price-save {
    grid-column: 2;
    justify-self: end;
  }
}

/* ============================================================
   トップナビ v2 — 10項目 → 5項目 + CTA (1.13.19 + 旧CSS競合修正 v1.13.20)
   - ドロップダウン2系統（サロン情報 / 施術・料金）
   - アクティブ：金hairlineで現在地表示
   - ご予約：右端にサーモンCTA
   - PC専用（モバイルはドロワー使用）
   ============================================================ */
.hc-topnav.hc-topnav--v2 {
  background: #fff !important;
  border-bottom: 1px solid rgba(184, 137, 62, 0.18) !important;
  display: none;
  position: relative;
  z-index: 100;
  font-family: 'Lora', 'Noto Sans JP', sans-serif !important;
}
@media (min-width: 1024px) {
  .hc-topnav.hc-topnav--v2 { display: block; }
}
.hc-topnav--v2 .hc-topnav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hc-topnav--v2 .hc-topnav-list {
  display: flex !important;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
  flex-wrap: nowrap !important;          /* 旧 flex-wrap: wrap を上書き */
  justify-content: flex-start !important; /* 旧 justify-content: center を上書き */
}
/* 旧の li + li::before セパレータ（縦線）を完全に消す */
.hc-topnav--v2 .hc-topnav-list li + li::before,
.hc-topnav--v2 .hc-topnav-list li::before {
  content: none !important;
  display: none !important;
  background: none !important;
  width: 0 !important;
}
/* 旧 .hc-topnav-list a の padding/font-size を v2 の値で完全に再定義 */
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-link {
  padding: 18px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: transparent !important;
}
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-link:hover {
  background: transparent !important;    /* 旧 hover background を消す */
}
.hc-topnav-spacer { flex: 1; }

.hc-topnav--v2 .hc-topnav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hc-topnav--v2 .hc-topnav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 18px 16px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2A2624;
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  transition: color .22s ease;
}
/* アクティブ／ホバー時の金 hairline インジケータ */
.hc-topnav--v2 .hc-topnav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A, transparent);
  opacity: 0;
  transition: opacity .25s ease, bottom .25s ease;
}
.hc-topnav--v2 .hc-topnav-item:hover .hc-topnav-link,
.hc-topnav--v2 .hc-topnav-link:focus-visible {
  color: #B9852E;
}
.hc-topnav--v2 .hc-topnav-item:hover .hc-topnav-link::after,
.hc-topnav--v2 .hc-topnav-item.is-active .hc-topnav-link::after,
.hc-topnav--v2 .hc-topnav-link:focus-visible::after {
  opacity: 1;
  bottom: 10px;
}
.hc-topnav--v2 .hc-topnav-item.is-active .hc-topnav-link { color: #B9852E; }
.hc-topnav--v2 .hc-topnav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 4px rgba(184, 137, 62, 0.4) inset;
}

/* キャレット（▾）回転 */
.hc-topnav-caret {
  transition: transform .25s ease;
  color: #B9852E;
}
.hc-topnav-item--has-menu:hover .hc-topnav-caret {
  transform: rotate(180deg);
}

/* ドロップダウン */
.hc-topnav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 12px;
  padding: 10px;
  box-shadow:
    0 12px 32px -12px rgba(104, 70, 42, 0.22),
    0 4px 14px -6px rgba(104, 70, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 120;
}
.hc-topnav-item--has-menu:hover .hc-topnav-submenu,
.hc-topnav-item--has-menu:focus-within .hc-topnav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* マウス移動でも消えないよう、リンクとサブメニューの隙間を埋める疑似要素 */
.hc-topnav-item--has-menu::before {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 10px;
  z-index: 119;
}
.hc-topnav-submenu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #2A2624;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
  transition: background .2s ease, color .2s ease;
}
.hc-topnav-submenu a:hover {
  background: #FAF1DE;
  color: #B9852E;
}
.hc-topnav-sub-jp {
  font-size: 13.5px;
  font-weight: 500;
}
.hc-topnav-sub-en {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #B9852E;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ご予約 CTA */
.hc-topnav-item--cta {
  align-items: center;
  margin-left: 8px;
}
/* ご予約 CTA — 黒+ゴールド矢印バッジ（オファーCTAと統一） */
.hc-topnav-cta,
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 18px !important;
  background: #2A2624 !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-family: 'Lora', 'Noto Sans JP', sans-serif !important;
  text-decoration: none;
  letter-spacing: 0.04em !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 10px 22px -10px rgba(42, 38, 36, 0.45);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}
/* hover時のシマー */
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 199, 122, 0.22), transparent);
  transform: translateX(-100%);
  transition: transform .9s ease;
  pointer-events: none;
}
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-cta:hover {
  background: #1F1B1A !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 16px 30px -10px rgba(42, 38, 36, 0.55);
}
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-cta:hover::before {
  transform: translateX(100%);
}
.hc-topnav-cta__body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}
.hc-topnav-cta__label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
.hc-topnav-cta__sub {
  font-family: 'Lora', serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #E8C77A;
  text-transform: uppercase;
}
.hc-topnav-cta__arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%);
  color: #fff;
  box-shadow: 0 3px 8px -2px rgba(168, 120, 51, 0.5);
  transition: transform .25s ease;
}
.hc-topnav--v2 .hc-topnav-list a.hc-topnav-cta:hover .hc-topnav-cta__arrow {
  transform: translateX(2px) scale(1.04);
}
/* スクロール時の縮小（既存 is-scrolled 連携） */
.hc-topnav--v2.is-scrolled .hc-topnav-cta { padding: 4px 4px 4px 14px !important; }
.hc-topnav--v2.is-scrolled .hc-topnav-cta__label { font-size: 12.5px; }
.hc-topnav--v2.is-scrolled .hc-topnav-cta__sub  { font-size: 7.5px; }
.hc-topnav--v2.is-scrolled .hc-topnav-cta__arrow { width: 26px; height: 26px; }
.hc-topnav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(216, 90, 78, 0.65);
}
.hc-topnav-cta:hover svg { transform: translateX(2px); }
.hc-topnav-cta svg { transition: transform .25s ease; }
.hc-topnav-cta::after { display: none !important; }

/* スクロール時の縮小（既存 is-scrolled で対応） */
.hc-topnav--v2.is-scrolled .hc-topnav-link { padding: 14px 16px; }
/* 旧 is-scrolled CTA上書き → 新 padding ルール（上部）に統合済み */

/* ============================================================
   CRO セクション v1.13.21 — 初回オファー / 声 / B-A / FAQ
   ============================================================ */

/* ========== 初回オファー — v1.13.22 エディトリアル系リファイン ==========
   - 赤縁 → 上品な金 hairline 二重枠
   - リボン廃止 → eyebrow + 細い金線（INITIAL VISIT OFFER）
   - 価格ブロック：通常→OFF→特価 を縦に編集的レイアウト
   - 緊急性：脈動赤ドット → 落ち着いた金ドット
   - CTA：単純なグラデ → ボタン内に2階層情報＋丸い矢印バッジ
   - オーナメント：◆ で章ブレイク
   ========================================================== */
.sec-offer {
  background: linear-gradient(180deg, #FFFBF3 0%, #FAF1DE 100%);
  padding: 56px 18px 56px;
  position: relative;
}
.sec-offer::before, .sec-offer::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A, transparent);
}
.sec-offer::before { top: 0; }
.sec-offer::after  { bottom: 0; }

.hc-offer-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 36px 26px 28px;
  position: relative;
  text-align: center;
  /* 金 hairline の二重枠（外側細い金 + 内側極細白） */
  box-shadow:
    0 0 0 1px rgba(184, 137, 62, 0.32),
    0 0 0 6px #fff,
    0 0 0 7px rgba(184, 137, 62, 0.18),
    0 24px 48px -22px rgba(104, 70, 42, 0.22),
    0 8px 22px -10px rgba(104, 70, 42, 0.14);
}

/* エディトリアル eyebrow */
.hc-offer-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hc-offer-eyebrow__line {
  flex: 0 1 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A);
}
.hc-offer-eyebrow__line:last-child {
  background: linear-gradient(90deg, #C9A86A, transparent);
}
.hc-offer-eyebrow__text {
  font-family: 'Lora', 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #B9852E;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-offer-heading {
  margin: 0 0 14px;
  font-family: 'Lora', 'Shippori Mincho', serif;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.hc-offer-heading__top {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #D85A4E;
  margin-bottom: 6px;
  letter-spacing: 0.2em;
}
.hc-offer-heading__sub {
  display: block;
  font-size: clamp(19px, 5.4vw, 23px);
  font-weight: 600;
  color: #2A2624;
}

/* 装飾オーナメント */
.hc-offer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}
.hc-offer-ornament__line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A);
}
.hc-offer-ornament__line:last-child {
  background: linear-gradient(90deg, #C9A86A, transparent);
}
.hc-offer-ornament__diamond {
  font-size: 7px;
  color: #C9A86A;
  line-height: 1;
}

/* 価格ブロック */
.hc-offer-price {
  margin: 0 -4px 22px;
  padding: 22px 16px 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,253,247,1) 0%, transparent 60%),
    linear-gradient(160deg, #FFFBF3 0%, #FAF1DE 100%);
  border-radius: 16px;
  position: relative;
}
.hc-offer-price__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(184, 137, 62, 0.32);
}
.hc-offer-price__regular {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hc-offer-price__regular-label {
  font-family: 'Lora', serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #8B8278;
  text-transform: uppercase;
  font-weight: 500;
}
.hc-offer-price__regular-amount {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #B4ACA2;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  letter-spacing: 0.02em;
}
.hc-offer-price__save {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Lora', serif;
  color: #D85A4E;
  letter-spacing: 0.02em;
}
.hc-offer-price__save-mark {
  font-size: 14px;
  font-weight: 600;
  margin-right: 2px;
}
.hc-offer-price__save-amount {
  font-size: 24px;
  font-weight: 600;
}
.hc-offer-price__save-unit {
  font-size: 13px;
  font-weight: 500;
  margin-right: 2px;
}
.hc-offer-price__save-pct {
  font-family: 'Lora', sans-serif;
  font-size: 11.5px;
  color: #8B8278;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* メイン価格（極大） */
.hc-offer-price__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hc-offer-price__hero-label {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 12px;
  font-weight: 600;
  color: #B9852E;
  letter-spacing: 0.18em;
}
.hc-offer-price__hero-row {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #D85A4E;
  font-family: 'Lora', 'Cormorant Garamond', serif;
}
.hc-offer-price__hero-amount {
  font-size: clamp(54px, 14vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}
.hc-offer-price__hero-unit {
  font-size: clamp(20px, 5.4vw, 26px);
  font-weight: 500;
  margin-left: 2px;
}
.hc-offer-price__hero-tax {
  font-family: 'Lora', sans-serif;
  font-size: 11px;
  color: #8B8278;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 含まれる施術 */
.hc-offer-includes {
  margin: 0 0 20px;
  text-align: center;
}
.hc-offer-includes__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Lora', serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: #B9852E;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.hc-offer-includes__label-line {
  flex: 0 1 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A);
}
.hc-offer-includes__label-line:last-child {
  background: linear-gradient(90deg, #C9A86A, transparent);
}
.hc-offer-includes__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.hc-offer-includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  color: #2A2624;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.hc-offer-includes__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%);
  color: #fff;
  border-radius: 50%;
  margin-top: 1px;
  box-shadow: 0 2px 4px -1px rgba(168, 120, 51, 0.45);
}

/* 緊急性（落ち着いた金ドット） */
.hc-offer-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 10px 18px;
  background: #FAF1DE;
  border: 1px solid rgba(184, 137, 62, 0.28);
  border-radius: 100px;
  color: #2A2624;
}
.hc-offer-urgency__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #D85A4E;
  flex-shrink: 0;
  position: relative;
  animation: hc-offer-pulse 2.2s ease-in-out infinite;
}
.hc-offer-urgency__dot::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #D85A4E;
  opacity: 0.4;
  animation: hc-offer-pulse-ring 2.2s ease-out infinite;
}
@keyframes hc-offer-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes hc-offer-pulse-ring { 0% { transform: scale(0.85); opacity: 0.5; } 100% { transform: scale(1.8); opacity: 0; } }
.hc-offer-urgency__inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hc-offer-urgency__label {
  font-family: 'Lora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #6B5E52;
  font-weight: 600;
  text-transform: uppercase;
}
.hc-offer-urgency__count {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #2A2624;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hc-offer-urgency__count strong {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: #D85A4E;
  margin: 0 2px;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(2px);
}

/* CTA — 高級感のあるカード型 */
.hc-offer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.hc-offer-cta-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 14px 24px;
  background: #2A2624;
  color: #fff !important;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 14px 28px -12px rgba(42, 38, 36, 0.45);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}
.hc-offer-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 199, 122, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 1s ease;
  pointer-events: none;
}
.hc-offer-cta-primary:hover {
  transform: translateY(-2px);
  background: #1F1B1A;
  box-shadow: 0 22px 40px -14px rgba(42, 38, 36, 0.55);
}
.hc-offer-cta-primary:hover::before { transform: translateX(100%); }
.hc-offer-cta-primary__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  flex: 1;
}
.hc-offer-cta-primary__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.hc-offer-cta-primary__sub {
  font-family: 'Lora', serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #E8C77A;
  text-transform: uppercase;
}
.hc-offer-cta-primary__arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .25s ease;
  box-shadow: 0 4px 10px -2px rgba(168, 120, 51, 0.5);
}
.hc-offer-cta-primary:hover .hc-offer-cta-primary__arrow {
  transform: translateX(2px) scale(1.04);
}

.hc-offer-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  color: #2A2624 !important;
  border: 1px solid rgba(184, 137, 62, 0.32);
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.hc-offer-cta-secondary svg { color: #06C755; }
.hc-offer-cta-secondary:hover {
  background: #FAF1DE;
  border-color: #B9852E;
  transform: translateY(-1px);
}

.hc-offer-note {
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: #8B8278;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 12px 0 0;
}

/* ========== お客様の声（フロント） ========== */
.sec-voice-front {
  background: var(--ivory);
  padding: 48px 18px 44px;
}
.hc-voice-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hc-voice-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .hc-voice-list { grid-template-columns: repeat(3, 1fr); } }

.hc-voice-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 14px;
  padding: 24px 20px 18px;
  text-align: left;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.12);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
}
.hc-voice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(104, 70, 42, 0.20);
}
.hc-voice-quote-mark {
  position: absolute;
  top: 10px; right: 16px;
  font-family: 'Lora', serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(184, 137, 62, 0.18);
  font-weight: 600;
}
.hc-voice-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.hc-voice-text {
  font-family: 'Lora', 'Noto Serif JP', serif;
  font-size: 13px;
  color: #2A2624;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}
.hc-voice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(184, 137, 62, 0.22);
}
.hc-voice-name {
  font-size: 11.5px;
  color: #6B5E52;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.hc-voice-tag {
  font-size: 10.5px;
  color: #B9852E;
  background: #FAF1DE;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.hc-voice-tag--period { color: #D85A4E; background: #FDEDEA; }
.hc-voice-more {
  margin-top: 8px;
}
.hc-voice-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 500;
  color: #B9852E;
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-bottom: 1px solid #C9A86A;
  transition: color .22s ease, border-color .22s ease;
}
.hc-voice-more-link:hover { color: #D85A4E; border-bottom-color: #D85A4E; }
.hc-voice-more-link svg { transition: transform .25s ease; }
.hc-voice-more-link:hover svg { transform: translateX(3px); }

/* ========== ビフォーアフター ========== */
.sec-ba {
  background: #fff;
  padding: 48px 18px 44px;
}
.hc-ba-wrap {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.hc-ba-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .hc-ba-list { grid-template-columns: repeat(3, 1fr); } }

.hc-ba-item {
  background: #FFFBF3;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.12);
}
.hc-ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hc-ba-figure {
  position: relative;
  margin: 0;
  background: #F4EBDB;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.hc-ba-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hc-ba-label {
  position: absolute;
  top: 8px; left: 8px;
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.hc-ba-label--before { background: rgba(0,0,0,0.7); color: #fff; }
.hc-ba-label--after  { background: #D85A4E;          color: #fff; }
.hc-ba-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', sans-serif;
  font-size: 11px;
  color: #B4ACA2;
  letter-spacing: 0.1em;
  background: repeating-linear-gradient(135deg, #F4EBDB, #F4EBDB 8px, #ECE0CB 8px, #ECE0CB 16px);
}
.hc-ba-info { text-align: left; padding: 0 4px; }
.hc-ba-concern {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 13px;
  font-weight: 600;
  color: #D85A4E;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.hc-ba-caption {
  font-size: 11.5px;
  color: #6B5E52;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.hc-ba-disclaimer {
  font-size: 11px;
  color: #8B8278;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 14px;
  line-height: 1.7;
}

/* ========== FAQ（フロント） ========== */
.sec-faq-front {
  background: var(--ivory);
  padding: 48px 18px 50px;
}
.hc-faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hc-faq-list {
  margin-top: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hc-faq-item {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.hc-faq-item[open] {
  border-color: rgba(184, 137, 62, 0.35);
  box-shadow: 0 6px 16px -10px rgba(104, 70, 42, 0.18);
}
.hc-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A2624;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.hc-faq-q::-webkit-details-marker { display: none; }
.hc-faq-q-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FAF1DE;
  color: #B9852E;
  border-radius: 50%;
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.hc-faq-q-text { flex: 1; }
.hc-faq-q-icon {
  flex-shrink: 0;
  color: #B9852E;
  transition: transform .25s ease;
  margin-top: 4px;
}
.hc-faq-item[open] .hc-faq-q-icon { transform: rotate(180deg); }
.hc-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 18px 18px 18px;
  border-top: 1px dashed rgba(184, 137, 62, 0.22);
  padding-top: 14px;
  margin-top: 0;
}
.hc-faq-a-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D85A4E;
  color: #fff;
  border-radius: 50%;
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 700;
}
.hc-faq-a-text {
  flex: 1;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #4A413A;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* ============================================================
   求人ページ — Google Jobs対応 (1.13.25)
   ============================================================ */
.hc-fp-hero-recruit {
  background-color: #2A2624;
  background-image: linear-gradient(135deg, rgba(42,38,36,0.92), rgba(31,27,26,0.88)),
                    radial-gradient(circle at 20% 30%, rgba(232,199,122,0.15), transparent 60%);
  color: #fff;
}
.hc-fp-hero-recruit .hc-fp-hero-overlay { color: #fff; }
.hc-fp-hero-recruit .hc-fp-h1 { color: #fff; }
.hc-fp-hero-recruit .hc-fp-sub { color: #E8DCC4; }
.hc-fp-hero-recruit .hc-breadcrumb a,
.hc-fp-hero-recruit .hc-breadcrumb span { color: #E8C77A; }

/* 求人カード（一覧） */
.hc-job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .hc-job-list { grid-template-columns: repeat(2, 1fr); } }

.hc-job-card {
  background: #fff;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 14px -8px rgba(104, 70, 42, 0.12);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s ease, box-shadow .28s ease;
}
.hc-job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 62, 0.35);
  box-shadow: 0 14px 28px -12px rgba(104, 70, 42, 0.20);
}
.hc-job-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.hc-job-emp-tag {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 12px;
  background: #2A2624;
  color: #fff;
}
.hc-job-validthru {
  font-family: 'Lora', sans-serif;
  font-size: 11px;
  color: #8B8278;
  letter-spacing: 0.04em;
}
.hc-job-card-title {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  color: #2A2624;
  margin: 4px 0 4px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.hc-job-card-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.hc-job-card-title a:hover { border-bottom-color: #D85A4E; }

.hc-job-salary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: #FDF6EA;
  border-radius: 10px;
}
.hc-job-salary-label {
  font-family: 'Lora', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #8B6420;
  text-transform: uppercase;
  font-weight: 600;
}
.hc-job-salary-amount {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  color: #B9852E;
  letter-spacing: 0.02em;
}
.hc-job-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.hc-job-tags li {
  font-size: 10.5px;
  color: #4A413A;
  background: #FAF1DE;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.hc-job-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 0;
  font-family: 'Lora', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #B9852E;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #C9A86A;
  align-self: flex-start;
  transition: color .22s ease, border-color .22s ease;
}
.hc-job-more-link:hover { color: #D85A4E; border-bottom-color: #D85A4E; }
.hc-job-more-link svg { transition: transform .25s ease; }
.hc-job-more-link:hover svg { transform: translateX(3px); }

.hc-job-perks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hc-job-perks li {
  background: #FFFBF3;
  padding: 12px 16px;
  border-left: 3px solid #C9A86A;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: #4A413A;
  letter-spacing: 0.04em;
}
.hc-job-perks strong {
  color: #B9852E;
  font-weight: 600;
  font-family: 'Lora', 'Shippori Mincho', serif;
}

/* 個別求人ページ */
.hc-job-detail-summary {
  background: linear-gradient(160deg, #FFFBF3 0%, #FAF1DE 100%);
  border: 1px solid rgba(184, 137, 62, 0.22);
  border-radius: 16px;
  padding: 22px 22px 18px;
  margin-bottom: 24px;
}
.hc-job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.hc-job-detail-salary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(184, 137, 62, 0.32);
}
.hc-job-detail-salary-label {
  font-family: 'Lora', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #8B6420;
  text-transform: uppercase;
  font-weight: 600;
}
.hc-job-detail-salary-amount {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  color: #D85A4E;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hc-job-detail-salary-amount small {
  font-size: 16px;
  font-weight: 500;
  margin-left: 1px;
}
.hc-job-detail-salary-note {
  width: 100%;
  font-size: 11.5px;
  color: #6B5E52;
  margin-top: 4px;
}

.hc-job-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.hc-job-detail-table th,
.hc-job-detail-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(184, 137, 62, 0.18);
  font-size: 13.5px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.hc-job-detail-table th {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-weight: 600;
  color: #B9852E;
  width: 30%;
  background: #FFFBF3;
}
.hc-job-detail-table td { color: #2A2624; }
.hc-job-line-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hc-job-line-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
}
.hc-job-line-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 5px; height: 5px;
  background: #C9A86A;
  border-radius: 50%;
}

.hc-job-description {
  font-size: 14px;
  line-height: 1.95;
  color: #2A2624;
  letter-spacing: 0.04em;
}
.hc-job-description p { margin: 0 0 14px; }
.hc-job-description strong { color: #B9852E; font-weight: 600; }

/* 応募 CTA */
.hc-job-apply {
  background: #FFFBF3;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(184, 137, 62, 0.22);
}
.hc-job-apply-text {
  font-size: 13.5px;
  color: #4A413A;
  line-height: 1.85;
  margin: 0 0 18px;
}
.hc-job-apply-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-job-apply-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease;
}
.hc-job-apply-cta--primary {
  background: #2A2624;
  color: #fff !important;
  justify-content: space-between;
  padding: 14px 14px 14px 22px;
  box-shadow: 0 10px 22px -10px rgba(42, 38, 36, 0.45);
}
.hc-job-apply-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(42, 38, 36, 0.55);
}
.hc-job-apply-cta__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hc-job-apply-cta__label { font-size: 14px; font-weight: 700; }
.hc-job-apply-cta__sub {
  font-family: 'Lora', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #E8C77A;
  text-transform: uppercase;
}
.hc-job-apply-cta__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(168, 120, 51, 0.5);
}
.hc-job-apply-cta--secondary {
  background: #fff;
  color: #2A2624 !important;
  border: 1px solid rgba(184, 137, 62, 0.32);
  font-size: 13px;
  font-weight: 600;
}
.hc-job-apply-cta--secondary:hover {
  background: #FAF1DE;
  border-color: #B9852E;
}
.hc-job-apply-cta--secondary svg { color: #B9852E; }

.hc-job-back-link {
  display: inline-block;
  font-family: 'Lora', sans-serif;
  font-size: 13px;
  color: #B9852E;
  text-decoration: none;
  border-bottom: 1px solid #C9A86A;
  padding-bottom: 2px;
  letter-spacing: 0.05em;
}
.hc-job-back-link:hover { color: #D85A4E; border-bottom-color: #D85A4E; }

/* ============================================================
   モバイルヘッダー v2 — sticky + 3 quick CTAs + mini-nav (1.13.27)
   ============================================================ */

/* 旧モバイルヘッダーのスタイル上書き */
.hc-hdr-mob.hc-hdr-mob--v2 {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(184, 137, 62, 0.18);
  box-shadow: 0 4px 16px -8px rgba(104, 70, 42, 0.16);
  padding: 8px 12px;
  display: block;
}
@media (min-width: 1024px) {
  .hc-hdr-mob.hc-hdr-mob--v2 { display: none; }
}
.hc-hdr-mob--v2 .hc-hdr-mob-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 100%;
}
.hc-hdr-mob--v2 .hc-hdr-mob-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
  flex: 1;
}
.hc-hdr-mob--v2 .hc-hdr-mob-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.hc-hdr-mob--v2 .hc-hdr-mob-textwrap { min-width: 0; }
.hc-hdr-mob--v2 .hc-hdr-mob-name {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A2624;
  line-height: 1.1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hc-hdr-mob--v2 .hc-hdr-mob-sub {
  font-size: 9.5px;
  color: #7A7167;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 380px) {
  .hc-hdr-mob--v2 .hc-hdr-mob-textwrap { display: none; }
}

/* 4ボタン横並び */
.hc-hdr-mob-actions--v2 {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.hc-hdr-mob-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  border: none;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  cursor: pointer;
  padding: 0;
  transition: transform .18s ease, background .22s ease;
}
.hc-hdr-mob-btn:active { transform: scale(0.94); }
.hc-hdr-mob-btn-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
/* 電話：サーモン色 */
.hc-hdr-mob-btn--phone {
  background: linear-gradient(135deg, #E66759 0%, #D85A4E 100%);
  color: #fff !important;
  box-shadow: 0 4px 10px -3px rgba(216, 90, 78, 0.45);
}
.hc-hdr-mob-btn--phone:hover { background: linear-gradient(135deg, #D85A4E 0%, #B4453A 100%); }

/* LINE：LINEグリーン */
.hc-hdr-mob-btn--line {
  background: linear-gradient(135deg, #06C755 0%, #04A845 100%);
  color: #fff !important;
  box-shadow: 0 4px 10px -3px rgba(6, 199, 85, 0.40);
}
.hc-hdr-mob-btn--line:hover { background: linear-gradient(135deg, #04A845 0%, #038839 100%); }

/* 予約：ゴールド */
.hc-hdr-mob-btn--net {
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%);
  color: #fff !important;
  box-shadow: 0 4px 10px -3px rgba(168, 120, 51, 0.40);
}
.hc-hdr-mob-btn--net:hover { background: linear-gradient(135deg, #B9852E 0%, #8B6420 100%); }

/* バーガー：黒 */
.hc-hdr-mob-btn--burger {
  background: #2A2624;
  color: #fff !important;
  box-shadow: 0 4px 10px -3px rgba(42, 38, 36, 0.40);
}
.hc-hdr-mob-btn--burger:hover { background: #1F1B1A; }

/* mini-nav: 常時表示の横スクロール可能サブナビ */
.hc-mininav {
  position: sticky;
  top: 60px; /* ヘッダーの高さに合わせる */
  z-index: 199;
  background: #fff;
  border-bottom: 1px solid rgba(184, 137, 62, 0.14);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: block;
}
.hc-mininav::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .hc-mininav { display: none; }
}
.hc-mininav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 4px;
  gap: 0;
  white-space: nowrap;
}
.hc-mininav-list a {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A413A;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: color .22s ease;
}
.hc-mininav-list a:hover { color: #B9852E; }
.hc-mininav-list a.is-active { color: #B9852E; font-weight: 600; }
.hc-mininav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A86A 30%, #C9A86A 70%, transparent);
}
.hc-mininav-list li:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0; top: 30%; bottom: 30%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 137, 62, 0.22), transparent);
}

/* スクロールしてヘッダーが縮小したら mini-nav も若干追従 */
.hc-hdr-mob--v2.is-scrolled {
  padding: 6px 12px;
}
.hc-hdr-mob--v2.is-scrolled .hc-hdr-mob-logo-img { width: 32px; height: 32px; }
.hc-hdr-mob--v2.is-scrolled .hc-hdr-mob-name { font-size: 13px; }
.hc-hdr-mob--v2.is-scrolled .hc-hdr-mob-sub { display: none; }

/* fixed-cta（ボトム固定CTA）はモバイル mini-nav と併用可、padding-bottom はそのまま */

/* ============================================================
   v1.13.28 — Header/Footer polish
   - ヘッダー4ボタン：単色背景 → アイコン色だけ、ボタン本体は白基調
   - ミニナビ：44px → 38px、アイコン追加、アクティブ背景tint
   - フッターCTA：白基調 → ダーク基調＋ゴールド、WEB予約を主CTA化
   ============================================================ */

/* === ヘッダーボタンを白ベースに降格（色は控えめ） === */
.hc-hdr-mob-btn--phone,
.hc-hdr-mob-btn--line,
.hc-hdr-mob-btn--net,
.hc-hdr-mob-btn--burger {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 4px 10px -6px rgba(104,70,42,0.12) !important;
}
.hc-hdr-mob-btn--phone  { color: #D85A4E !important; }
.hc-hdr-mob-btn--line   { color: #06C755 !important; }
.hc-hdr-mob-btn--net    { color: #B9852E !important; }
.hc-hdr-mob-btn--burger { color: #2A2624 !important; }
.hc-hdr-mob-btn--phone:hover  { background: #FFF5F3 !important; }
.hc-hdr-mob-btn--line:hover   { background: #EFFAF2 !important; }
.hc-hdr-mob-btn--net:hover    { background: #FFF8EB !important; }
.hc-hdr-mob-btn--burger:hover { background: #F4EEE2 !important; }
.hc-hdr-mob-btn .hc-hdr-mob-btn-label { color: inherit; }

/* === ミニナビ：高さ縮小 + アイコン + アクティブ tint === */
.hc-mininav {
  top: 60px;
}
.hc-mininav-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.hc-mininav-list a svg {
  color: inherit;
  opacity: 0.7;
  transition: opacity .22s ease;
}
.hc-mininav-list a:hover svg,
.hc-mininav-list a.is-active svg { opacity: 1; }
.hc-mininav-list a.is-active {
  background: linear-gradient(180deg, transparent, rgba(250, 241, 222, 0.6));
}
.hc-mininav-list a.is-active::after {
  left: 10px; right: 10px;
  height: 2px;
}
/* セパレータを薄く（旧CSSを上書き） */
.hc-mininav-list li:not(:first-child) a::before {
  background: linear-gradient(180deg, transparent, rgba(184, 137, 62, 0.16), transparent);
}

/* スクロール時のヘッダー縮小に追従 */
.hc-hdr-mob--v2.is-scrolled + .hc-mininav { top: 50px; }
.hc-hdr-mob--v2.is-scrolled .hc-hdr-mob-btn { width: 40px; height: 40px; }

/* === フッター固定CTA v2 — ダーク基調＋ゴールド === */
.hc-fixed-cta.hc-fixed-cta--v2 {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(180deg, rgba(42, 38, 36, 0.96) 0%, rgba(31, 27, 26, 0.98) 100%);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid rgba(232, 199, 122, 0.35);
  box-shadow: 0 -8px 32px -8px rgba(0, 0, 0, 0.35);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
}
@media (max-width: 1023px) {
  .hc-fixed-cta.hc-fixed-cta--v2 { display: block; }
}

.hc-fixed-cta__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
}
.hc-fixed-cta__head-line {
  flex: 0 1 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A86A);
}
.hc-fixed-cta__head-line:last-child {
  background: linear-gradient(90deg, #C9A86A, transparent);
}
.hc-fixed-cta__head-text {
  font-family: 'Lora', 'Shippori Mincho', serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #E8C77A;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-fixed-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr;
  gap: 8px;
}

.hc-fixed-cta--v2 .hc-fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 199, 122, 0.22);
  color: #fff !important;
  transition: transform .18s ease, background .22s ease, border-color .22s ease;
}
.hc-fixed-cta--v2 .hc-fixed-cta-btn:active { transform: scale(0.96); }
.hc-fixed-cta--v2 .hc-fixed-cta-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(232, 199, 122, 0.45);
}
.hc-fixed-cta-btn__icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.hc-cta-phone .hc-fixed-cta-btn__icon { background: rgba(216, 90, 78, 0.18); color: #FFB5A8; }
.hc-cta-line  .hc-fixed-cta-btn__icon { background: rgba(6, 199, 85, 0.18);   color: #7BE6A0; }
.hc-cta-web   .hc-fixed-cta-btn__icon { background: rgba(232, 199, 122, 0.20); color: #fff; }

.hc-fixed-cta-btn__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hc-fixed-cta-btn__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
  flex: 1;
}
.hc-fixed-cta-btn__body .hc-fixed-cta-btn__label { font-size: 13px; }
.hc-fixed-cta-btn__sub {
  font-family: 'Lora', serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #E8C77A;
  text-transform: uppercase;
}

/* WEB予約：主CTA — 金グラデ背景 */
.hc-fixed-cta-btn--primary {
  background: linear-gradient(135deg, #D8A24B 0%, #B9852E 70%, #8B6420 100%) !important;
  border-color: rgba(232, 199, 122, 0.45) !important;
  box-shadow: 0 6px 14px -6px rgba(168, 120, 51, 0.55);
  justify-content: space-between !important;
  padding: 10px 12px 10px 14px !important;
}
.hc-fixed-cta-btn--primary:hover {
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 100%) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.hc-fixed-cta-btn--primary .hc-fixed-cta-btn__icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}
.hc-fixed-cta-btn--primary .hc-fixed-cta-btn__sub {
  color: rgba(255, 251, 243, 0.85);
}
.hc-fixed-cta-btn__arrow {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  color: #fff;
  transition: transform .22s ease;
}
.hc-fixed-cta-btn--primary:hover .hc-fixed-cta-btn__arrow { transform: translateX(2px); }

/* 旧 v1 fixed-cta は非表示に（v2が表示される） */
.hc-fixed-cta:not(.hc-fixed-cta--v2) { display: none !important; }

/* body padding-bottom 調整（v2 は少し高くなる） */
@media (max-width: 1023px) {
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0)) !important; }
}

/* ============================================================
   v1.13.29 — 固定CTA コンパクト＆洗練版
   高さ 96px → 60px、phone/LINE は円アイコンのみ、WEB予約 が主CTA
   ============================================================ */
.hc-fixed-cta.hc-fixed-cta--v2.hc-fixed-cta--compact {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(180deg, rgba(42, 38, 36, 0.97) 0%, rgba(28, 24, 22, 0.99) 100%);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid rgba(232, 199, 122, 0.32);
  box-shadow: 0 -6px 24px -6px rgba(0, 0, 0, 0.32);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0));
  display: none;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1023px) {
  .hc-fixed-cta--compact { display: flex !important; }
}

/* 旧 v2 (.hc-fixed-cta--v2 without --compact) を非表示にする */
.hc-fixed-cta--v2:not(.hc-fixed-cta--compact) { display: none !important; }

/* 電話・LINE：円アイコンのみ */
.hc-fixed-cta-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 199, 122, 0.22);
  text-decoration: none;
  transition: transform .18s ease, background .22s ease, border-color .22s ease;
}
.hc-fixed-cta-icon:active { transform: scale(0.94); }
.hc-fixed-cta-icon--phone { color: #FFB5A8; }
.hc-fixed-cta-icon--line  { color: #7BE6A0; }
.hc-fixed-cta-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(232, 199, 122, 0.45);
}

/* WEB予約：主CTA — 残り幅すべて占有 */
.hc-fixed-cta-primary {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 16px;
  height: 44px;
  background: linear-gradient(135deg, #D8A24B 0%, #B9852E 70%, #8B6420 100%);
  color: #fff !important;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Lora', 'Noto Sans JP', sans-serif;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 6px 14px -4px rgba(168, 120, 51, 0.55);
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  overflow: hidden;
}
.hc-fixed-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-100%);
  transition: transform .9s ease;
  pointer-events: none;
}
.hc-fixed-cta-primary:hover {
  background: linear-gradient(135deg, #E8C77A 0%, #B9852E 70%, #8B6420 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 10px 20px -6px rgba(168, 120, 51, 0.65);
  transform: translateY(-1px);
}
.hc-fixed-cta-primary:hover::before { transform: translateX(100%); }
.hc-fixed-cta-primary:active { transform: translateY(0); }

.hc-fixed-cta-primary__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hc-fixed-cta-primary__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
  min-width: 0;
}
.hc-fixed-cta-primary__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hc-fixed-cta-primary__sub {
  font-family: 'Lora', serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255, 251, 243, 0.88);
  text-transform: uppercase;
  white-space: nowrap;
}
.hc-fixed-cta-primary__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform .22s ease;
}
.hc-fixed-cta-primary:hover .hc-fixed-cta-primary__arrow { transform: translateX(2px); }

/* body padding-bottom 調整：96px → 72px */
@media (max-width: 1023px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)) !important; }
}
