/* ============================================================
   CSS カスタムプロパティ（サイトカラーに統一）
   ============================================================ */
:root {
  /* ── ブランドカラー ─────────────────── */
  --primary:     #00949D;   /* プライマリ / CTA */
  --primary-lt:  #7FCDD1;   /* 薄いティール */
  --heading:     #00102E;   /* 見出し */
  --body:        #47425D;   /* 本文 */
  --link:        #00949D;   /* リンク */
  --field-text:  #6D7685;   /* フォームフィールド文字 */
  --muted:       #6D7685;   /* 補足テキスト */

  /* ── 背景 ───────────────────────────── */
  --bg:          #FFFFFF;
  --bg-sub:      #F0F9FA;   /* セクション背景（薄いティール） */
  --bg-dark:     #00102E;   /* ダークセクション */
  --bg-dark2:    #001A3A;   /* ダークセクション（濃い） */

  /* ── ボーダー / アクセント ─────────── */
  --border:      #DCE4E8;
  --gold:        #B89860;
  --blush:       #B8826A;
  --white:       #FFFFFF;

  /* ── タイポグラフィ ─────────────────── */
  --f-serif: 'Shippori Mincho','Hiragino Mincho ProN',Georgia,serif;
  --f-sans:  'Noto Sans JP','Hiragino Sans',sans-serif;

  /* ── レイアウト ─────────────────────── */
  --max: 480px;
}

/* ============================================================
   リセット / ベース
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.clevis-lp {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--body);
  font-size: 17px;
  line-height: 1.9;
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: hidden;
  /* Sydney Pro のデフォルト余白をリセット */
  padding: 0 !important;
}

/* Sydney Pro のサイトヘッダー・フッターを LP では非表示 */
body.clevis-lp #masthead,
body.clevis-lp .site-header,
body.clevis-lp #colophon,
body.clevis-lp .site-footer,
body.clevis-lp .main-navigation,
body.clevis-lp #page > .site-content > .widget-area { display: none !important; }

a { color: var(--link); text-decoration: none; }

/* ============================================================
   スティッキー CTA
   ============================================================ */
.lp-sticky {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max);
  background: rgba(0,16,46,.95); backdrop-filter: blur(8px);
  display: none; align-items: center; gap: 12px;
  padding: 10px 16px; z-index: 100;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lp-sticky-text { flex: 1; color: #fff; }
.lp-sticky-text strong { display: block; font-size: 14px; font-weight: 500; }
.lp-sticky-text span  { font-size: 12px; color: rgba(255,255,255,.5); }
.lp-sticky-btn {
  flex-shrink: 0; padding: 11px 18px;
  background: var(--primary); color: #fff; border: none;
  font-size: 13px; letter-spacing: .1em; cursor: pointer;
  font-family: var(--f-sans); text-decoration: none; white-space: nowrap;
}

/* ============================================================
   ファーストビュー
   ============================================================ */
.remee-header {
  position: relative;
}
.remee-logo {
  position: absolute;
  left: 28px;
  bottom: -70px;
  z-index: 100;
  img {
    display: block;
  }
}
.lp-fv {
  position: relative; 
  /*height: 100svh; 
  min-height: 580px;*/
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 106px 28px 36px; overflow: hidden;
  background-color: var(--primary);
}
.lp-fv-bg {
  inset: 0;
  background: linear-gradient(145deg, #000d22 0%, #001a3a 50%, #00243d 100%);
}
.lp-fv-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(0,148,157,.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 15% 75%, rgba(0,148,157,.10) 0%, transparent 60%);
}
.lp-fv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,10,28,.92) 0%, rgba(0,10,28,.2) 55%, transparent 100%);
}
.lp-fv-deco {
  position: absolute; top: 36px; right: 28px;
  width: 1px; height: 80px; background: rgba(255,255,255,.15);
}
.lp-fv-deco::after {
  content: 'CLEVIS'; position: absolute; top: 90px; left: -18px;
  font-size: 8px; letter-spacing: .35em; color: rgba(255,255,255,.22);
  writing-mode: vertical-rl;
}

/* バリアントの表示制御（PHP でクラスを付与） */
.lp-fv-variant { display: none; position: relative; z-index: 2; }
.lp-fv-variant.active { display: block; }

.lp-fv-eyebrow {
  font-size: 18px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.lp-fv-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.82);
  font-size: 12px; letter-spacing: .12em;
  padding: 5px 13px; margin-bottom: 14px;
}
.lp-fv-h1 {
  font-family: var(--f-serif);
  font-feature-settings: "palt";
  font-size: clamp(24px, 8vw, 46px) !important;
  margin: 0 !important;
  font-weight: 600; line-height: 1.4; letter-spacing: .02em;
  color: #fff; margin-bottom: 14px;
}
.lp-fv-h1,.verc {
  font-size:38px:
}
.lp-fv-sub {
  font-size: 18px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.75);
  margin: 32px 0;
}

/* ボタン */
.btn-white {
  display: block; width: 100%; padding: 18px;
  background: #fff; color: var(--heading);
  text-align: center; font-size: 16px; font-weight: 500;
  letter-spacing: .1em; border: none; cursor: pointer;
  text-decoration: none; font-family: var(--f-sans);
  transition: opacity .25s;
}
.btn-white:hover { opacity: .88; }

.btn-ghost {
  display: block; width: 100%; padding: 15px;
  background: transparent; color: rgba(255,255,255,.75);
  text-align: center; font-size: 16px; letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.75); margin-top: 10px;
  text-decoration: none; cursor: pointer; transition: border-color .25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.85); }

.btn-primary {
  display: block; width: 100%; padding: 19px;
  background: var(--primary); color: #fff;
  text-align: center; font-size: 15px; font-weight: 500;
  letter-spacing: .1em; border: none; cursor: pointer;
  text-decoration: none; font-family: var(--f-sans);
  transition: opacity .25s;
}
.btn-primary:hover { opacity: .88; }

.btn-dark {
  display: block; width: 100%; padding: 19px;
  background: var(--bg-dark); color: #fff;
  text-align: center; font-size: 15px; font-weight: 500;
  letter-spacing: .1em; border: none; cursor: pointer;
  text-decoration: none; font-family: var(--f-sans);
}
.btn-dark:hover { opacity: .88; }

.btn-closing {
  display: block; width: 100%; padding: 21px;
  background: #fff; color: var(--heading);
  text-align: center; font-size: 15px; font-weight: 500;
  letter-spacing: .1em; text-decoration: none; border: none;
  cursor: pointer; font-family: var(--f-sans);
}

/* ============================================================
   セクション共通
   ============================================================ */
.lp-sec {
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.lp-sec:last-child { border-bottom: none; }
.lp-sec.bg-sub { background: var(--bg-sub); }

.lp-sec-label {
  font-size: 16px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); font-weight: 500; margin-bottom: 14px;
}
.lp-sec-h2 {
  font-family: var(--f-serif);
  font-size: 25px; font-weight: 600; line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: .03em; color: var(--heading); margin-bottom: 24px;
}
.lp-sec-body {
  font-size: 18px; font-weight: 300; line-height: 2.0; color: var(--body);
}

.caption-w {
  text-align: center;
  font-size: 11px;
  color: #fff;
  margin-top: 0.5em;
}

.caption-b {
  font-size: 11px;
  margin-top: 1em;
}

/* ============================================================
   共感セクション
   ============================================================ */
.lp-pain-block {
  border-left: 2px solid var(--primary);
  background: var(--bg-sub);
  padding: 18px 20px; margin: 12px 0;
}
.lp-pain-block p {
  font-family: var(--f-serif);
  font-size: 19px; line-height: 1.65; color: var(--heading);
}

/* ============================================================
   商品画像プレースホルダー
   ============================================================ */
.lp-product-placeholder {
  width: 100%; height: 260px; margin: 28px 0;
  background: linear-gradient(135deg, var(--bg-sub), var(--border));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.lp-product-placeholder span {
  font-size: 10px; letter-spacing: .15em;
  color: var(--muted); text-transform: uppercase;
}
/* 実装時は <img> タグに差し替え:
   <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/img/product.jpg"
        alt="クレビス リ・ミー エッセンスジェル"
        width="480" height="260" loading="lazy">
*/

/* ============================================================
   How To Use
   ============================================================ */
.lp-scene-list { list-style: none; margin: 24px 0; }
.lp-scene-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--body);
}
.lp-scene-item:last-child { border-bottom: none; }
.lp-scene-num {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--primary); font-weight: 500; margin-top: 2px;
}

/* ============================================================
   初回限定オファー（ダーク）
   ============================================================ */
.lp-offer {
  background: var(--bg-dark2);
  padding: 60px 28px;
}
.lp-offer-label {
  font-size: 16px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.lp-offer-h2 {
  font-family: var(--f-serif);
  font-size: 25px; font-weight: 600; line-height: 1.6;
  color: #fff; margin-bottom: 14px;
}
.lp-offer-sub {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
}
.lp-offer-pill {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: 12px; letter-spacing: .15em;
  padding: 6px 20px; margin-bottom: 24px;
}

/* 商品セレクターカード（ダーク） */
.lp-prod-cards { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.lp-prod-card {
  border: 1px solid rgba(255,255,255,.15);
  padding: 16px 18px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.lp-prod-card:hover { border-color: rgba(255,255,255,.4); }
.lp-prod-card.selected {
  border-color: var(--primary);
  background: rgba(0,148,157,.15);
}
.lp-prod-card-header { display: flex; align-items: flex-start; gap: 12px; }
.lp-prod-radio {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; transition: border-color .2s;
}
.lp-prod-card.selected .lp-prod-radio { border-color: var(--primary); }
.lp-prod-radio-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); display: none;
}
.lp-prod-card.selected .lp-prod-radio-dot { display: block; }
.lp-prod-name { font-size: 15px; font-weight: 500; color: #fff; line-height: 1.4; }
.lp-prod-price { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }
.lp-prod-scent {
  display: inline-block; font-size: 11px; letter-spacing: .1em;
  padding: 3px 10px; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6); margin-top: 8px; margin-left: 28px;
}

/* 商品セレクターカード（ライト・定期コース用） */
.lp-prod-card-lt {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 16px 18px; cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 10px;
}
.lp-prod-card-lt:hover { border-color: var(--primary); }
.lp-prod-card-lt.selected {
  border-color: var(--primary);
  background: rgba(0,148,157,.05);
}
.lp-prod-card-lt .lp-prod-radio { border-color: var(--border); }
.lp-prod-card-lt.selected .lp-prod-radio { border-color: var(--primary); }
.lp-prod-card-lt .lp-prod-name { color: var(--heading); }
.lp-prod-card-lt .lp-prod-price { color: var(--muted); }
.lp-prod-card-lt .lp-prod-scent { border-color: var(--border); color: var(--muted); }

/* ============================================================
   MLC テクノロジー（ダーク）
   ============================================================ */
.lp-tech-wrap {
  background: var(--primary);
  margin: 0; padding: 64px 28px;
}
.lp-tech-wrap .lp-sec-label { color: var(--primary-lt); }
.lp-tech-wrap .lp-sec-h2 { color: #fff; font-size: 20px;font-feature-settings: "palt"; }
.lp-tech-wrap .lp-sec-body { color: rgba(255,255,255,.62); }
.lp-tech-item { border-top: 1px solid rgba(255,255,255,.75); padding: 22px 0; }
.lp-tech-item h4 {
  font-size: 16px; font-weight: 600; letter-spacing: .08em;
  color: #fff; margin-bottom: 8px;
}
.lp-tech-item p {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.75);
  font-feature-settings: "palt";
}

/* 画像スロット */
.lp-img-row {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 28px 0 4px; -webkit-overflow-scrolling: touch;
}
.lp-img-slot {
  flex-shrink: 0; width: 160px; height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.lp-img-slot--dark {
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.2);
}
.lp-img-slot--light {
  background: var(--bg-sub);
  border: 1px dashed var(--border);
}
.lp-img-slot-label {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  text-align: center; line-height: 1.5;
}
.lp-img-slot--dark .lp-img-slot-label { color: rgba(255,255,255,.3); }
.lp-img-slot--light .lp-img-slot-label { color: var(--muted); }

/* ============================================================
   成分・8つのフリー
   ============================================================ */
.lp-ingr-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin: 24px 0;
}
.lp-ingr-item { background: var(--bg); padding: 20px 14px; text-align: center; }
.lp-ingr-name { font-size: 15px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.lp-ingr-role { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* 8つのフリー */
.lp-free-heading {
  font-size: 16px; font-weight: 500; color: var(--heading);
  text-align: center; margin: 32px 0 18px; letter-spacing: .04em;
}
.lp-free-heading em { font-style: normal; font-family: var(--f-serif); font-size: 28px; color: var(--primary); }
.lp-free-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
.lp-free-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 4px; background: var(--bg-sub); border: 1px solid var(--border);
}
.lp-free-badge {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary); font-weight: 300; line-height: 1;
}
.lp-free-name {
  font-size: 11px; color: var(--heading);
  text-align: center; line-height: 1.4; font-weight: 400;
}

/* ============================================================
   返金保証
   ============================================================ */
.lp-guarantee-box {
  border: 1px solid var(--primary); padding: 30px 24px;
  text-align: center; margin: 24px 0; position: relative;
  background-color: #fff;
}
.col-layout {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 10px;
}
.lp-guarantee-badge {
  width: 120px;
  margin: 0 auto 24px auto;
  background: var(--primary); color: #fff;
  font-size: 12px; letter-spacing: .18em; padding: 4px 22px; white-space: nowrap;
}
.lp-guarantee-num {
  font-family: var(--f-serif);
  font-size: 64px; font-weight: 700; color: var(--primary); line-height: 1;
  margin: 14px 0 2px;
}
.lp-guarantee-unit { font-size: 18px; color: var(--primary); letter-spacing: .18em;}
.lp-guarantee-text { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--muted); }

/* ============================================================
   定期コース
   ============================================================ */
.lp-sub-benefits {
  background: var(--bg-sub); border: 1px solid var(--border);
  padding: 22px; margin: 16px 0;
}
.lp-sub-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px; font-weight: 500;
}
.lp-sub-tier { display: flex; flex-direction: column; }
.lp-sub-tier-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.lp-sub-tier-item:last-child { border-bottom: none; }
.lp-sub-tier-label { font-weight: 300; color: var(--body); }
.lp-sub-tier-val { font-weight: 500; color: var(--primary); }
.lp-sub-benefit-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.lp-sub-benefit-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 300; color: var(--body); }
.lp-sub-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   商品ラインナップ
   ============================================================ */
.lp-lineup-item {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.lp-lineup-item:last-child { border-bottom: none; }
.lp-lineup-thumb {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--bg-sub);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--muted); text-align: center; line-height: 1.4;
}
.lp-lineup-info h4 {
  font-family: var(--f-serif); font-size: 16px;
  font-weight: 500; color: var(--heading); margin-bottom: 6px;
}
.lp-lineup-info p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.lp-lineup-price { font-size: 16px; font-weight: 500; color: var(--heading); margin-top: 8px; }

/* ============================================================
   About Us 統計グリッド
   ============================================================ */
.lp-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin: 24px 0;
}
.lp-stat { background: var(--bg); padding: 24px 14px; text-align: center; }
.lp-stat-num {
  font-family: var(--f-serif); font-size: 36px; font-weight: 700;
  color: var(--heading); line-height: 1; margin-bottom: 8px;
}
.lp-stat-num sup { font-size: 14px; }
.lp-stat-label { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   Q&A アコーディオン
   ============================================================ */
.lp-qa-item { border-bottom: 1px solid var(--border); }
.lp-qa-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px; cursor: pointer;
  font-family: var(--f-sans); font-size: 16px; color: var(--heading); line-height: 1.65;
}
.lp-qa-q-text { flex: 1; }
.lp-qa-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); margin-top: 2px;
  transition: transform .3s ease;
}
.lp-qa-item.open .lp-qa-icon { transform: rotate(45deg); }
.lp-qa-a {
  display: none; padding: 0 0 22px;
  font-size: 15px; font-weight: 300; line-height: 2.0; color: var(--body);
}
.lp-qa-a p { margin-bottom: 14px; }
.lp-qa-a p:last-child { margin-bottom: 0; }
.lp-qa-item.open .lp-qa-a { display: block; }

/* ============================================================
   クロージング
   ============================================================ */
.lp-closing {
  background: var(--bg-dark); color: #fff;
  padding: 80px 28px; text-align: center;
}
.lp-closing .lp-sec-label { color: var(--primary-lt); }
.lp-closing-h2 {
  font-family: var(--f-serif); font-size: 28px; font-weight: 600;
  line-height: 1.6; color: #fff; margin-bottom: 20px;
}
.lp-closing-sub {
  font-size: 16px; font-weight: 300; line-height: 2.0;
  color: rgba(255,255,255,.55); margin-bottom: 40px;
}
.lp-closing-note {
  font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.9; margin-top: 18px;
}

.lp-closing-note a {
  color: rgba(255,255,255,.75);
}

/* フッター */
.lp-footer { background: #000b1e; padding: 28px; text-align: center; }
.lp-footer p { font-size: 13px; color: rgba(255,255,255,.25); line-height: 1.9; }
.lp-footer a { color: rgba(255,255,255,.3); text-decoration: none; }

/* ============================================================
   成分グリッド — 6セル統一スタイル
   ============================================================ */
.lp-ingr-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin: 24px 0;
}
/* 全セル共通 */
.lp-ingr-item {
  background: var(--bg-sub); padding: 20px 14px; text-align: center;
}
.lp-ingr-name {
  font-size: 15px; font-weight: 500; color: var(--heading); margin-bottom: 6px;
}
.lp-ingr-role { font-size: 12px; color: var(--muted); line-height: 1.55; }
/* 統計セル — 背景・構造は同じ。テキスト色も通常セルと統一 */
.lp-ingr-stat .lp-ingr-name { color: var(--heading); }
.lp-ingr-stat .lp-ingr-subnote {
  display: block; font-size: 10px; color: var(--muted);
  line-height: 1.5; margin-top: 4px;
}
/* 旧 stat-num は不使用に */
.lp-ingr-stat-num { display: none; }

/* ============================================================
   12種類の美容エキス グリッド（8フリーと同構造・4列）
   ============================================================ */
.lp-extract-heading {
  font-family: var(--f-serif); font-size: 20px; font-weight: 600;
  color: var(--heading); text-align: center; margin: 40px 0 20px;
  letter-spacing: .03em;
}
.lp-extract-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin: 20px 0;
  /* 8フリーと同じ gap に統一 */
}
.lp-extract-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center;
  padding: 14px 4px; background: var(--bg-sub); border: 1px solid var(--border);
}
.lp-extract-item a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
}
.lp-extract-item img {
  width: 100%; max-width: 60px; height: auto; border-radius: 50%;
}
.lp-extract-name {
  font-size: 10px; color: var(--body); line-height: 1.45; font-weight: 400;
  text-align: center;
}

/* ============================================================
   価格比較（First Order Offer）
   ============================================================ */
.lp-price-row { margin-top: 6px; }
.lp-price-orig { font-size: 12px; color: rgba(255,255,255,.45); text-decoration: line-through; }
.lp-price-new  { font-size: 14px; font-weight: 600; color: #fff; }
.lp-price-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 10px; padding: 1px 8px; border-radius: 2px; margin-left: 6px;
  vertical-align: middle;
}

.lp-price-optin {
  text-align: center;
  font-size: 14px;
}

.lp-price-optin a {
  color:rgba(255,255,255,.75);
}

.product_type_simple {
  background-color: #FF8D28;
  padding: 18px;
  display: block;
  width: 100%;
  font-size: 16px;
}

/* ============================================================
   価格比較（定期コース）
   ============================================================ */
.lp-sub-price-block { margin-top: 8px; }
.lp-sub-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.lp-sub-price-row:last-child { border-bottom: none; }
.lp-sub-price-label { font-weight: 300; color: var(--muted); }
.lp-sub-price-val { font-weight: 600; color: var(--primary); }
.lp-sub-price-orig-val { font-size: 12px; color: var(--muted); text-decoration: line-through; }

/* ============================================================
   動画プレースホルダー
   ============================================================ */
.lp-video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-sub); border: 2px dashed var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  margin: 32px 0;
}
.lp-video-placeholder-icon { font-size: 36px; opacity: .4; }
.lp-video-placeholder-label {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   お客様の声
   ============================================================ */
.lp-reviews { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.lp-review-card { background: var(--bg); border: 1px solid var(--border); padding: 24px 22px; }
.lp-review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 12px; }
.lp-review-profile { font-size: 14px; font-weight: 500; color: var(--heading); white-space: nowrap; }
.lp-review-stars { color: #C8940A; font-size: 15px; letter-spacing: 1px; line-height: 1; }
.lp-review-stars-note { font-size: 11px; color: var(--muted); margin-left: 4px; }
.lp-review-concern {
  display: inline-block; font-size: 11px; padding: 3px 12px;
  border: 1px solid var(--primary); color: var(--primary);
  border-radius: 20px; margin-bottom: 14px;
}
.lp-review-text { font-size: 15px; font-weight: 300; line-height: 1.95; color: var(--body); }

/* ============================================================
   定期コース 注意書き
   ============================================================ */
.lp-sub-notes { margin-top: 16px; }
.lp-sub-note { font-size: 12px; color: var(--muted); line-height: 1.7; padding: 4px 0; }

/* ============================================================
   スクロールフェードイン
   ============================================================ */
.lp-fi { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.lp-fi.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
 Animate.css
 ============================================================ */
 
 .delay-harf {
   animation-delay: 0.5s;
 }