/* =========================================
   FACIAL SALON LP
   Monotone Luxury Design — 参照: rhrmpfci.gensparkspace.com
   ========================================= */

/* ---------- Variables ---------- */
:root {
  --black:     #0a0a0a;
  --gray-900:  #111111;
  --gray-800:  #1c1c1c;
  --gray-700:  #2c2c2c;
  --gray-600:  #3d3d3d;
  --gray-500:  #555555;
  --gray-400:  #888888;
  --gray-300:  #aaaaaa;
  --gray-200:  #cccccc;
  --gray-100:  #e5e5e5;
  --gray-50:   #f4f4f4;
  --white:     #ffffff;
  --line-green: #e6c200;
  --line-dark:  #c9a800;
  --line-text:  #1a1a1a;
  --gold:       #b8a87a;
  --gold-lt:    #d4c49a;

  --font-serif: 'Noto Serif JP', 'Georgia', serif;
  --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en:    'Cormorant Garamond', serif;
  --font-price: 'Cormorant Garamond', 'Georgia', serif;

  --radius-s:  6px;
  --radius-m:  12px;
  --radius-l:  20px;
  --tr:        0.28s ease;
  --sh:        0 4px 28px rgba(0,0,0,0.10);
  --sh-hov:    0 10px 44px rgba(0,0,0,0.18);
}

/* ---------- Responsive helper ---------- */
/* sp-br: モバイルのみ改行、PC/タブレットでは非表示 */
.sp-br { display: none; }
@media (max-width: 600px) {
  .sp-br { display: inline; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Container ---------- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HEADER
   ========================================= */
/* =========================================
   HEADER — 完全新規
   ========================================= */
/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;           /* ボタン間に呼吸感 */
  padding: 10px 16px;  /* 左右16px余白を確保 */
  box-sizing: border-box;
}

/* ---- ホームボタン ---- */
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: none;
  flex-shrink: 0;
  width: auto;
  height: 38px;        /* コンパクトに */
  padding: 0 14px;     /* 左右余白を抑える */
  border-radius: 999px;
  border: 1.2px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #F2F2F2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease;
}
.home-button i {
  font-size: 13px;
  color: #F2F2F2;
}
.home-button:hover {
  background: rgba(255,255,255,0.06);
}



@media (max-width: 480px) {
  .header-inner {
    gap: 12px;
    padding: 8px 16px;
  }
  .home-button {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

}

/* =========================================
   HERO / FIRST VIEW
   ========================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--black);
  padding: 100px 24px 90px;
  text-align: center;
}

/* 背景の細いライン装飾 */
.hero-bg-lines {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: stretch;
  gap: 120px;
  opacity: .06; pointer-events: none;
}
.hero-bg-lines span {
  display: block; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: .72rem; letter-spacing: .55em;
  color: var(--gold); margin-bottom: 22px;
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--white); font-weight: 300;
  letter-spacing: .12em; line-height: 1.45;
  margin-bottom: 24px;
}
.hero-catch em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.88rem, 2vw, 1rem);
  color: var(--gray-300); letter-spacing: .1em;
  line-height: 2.1; margin-bottom: 36px;
}

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 40px;
}
.hero-divider span {
  display: block; width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider i { color: var(--gold); font-size: .75rem; opacity: .7; }

.hero-cta-wrap {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: .78rem;
  color: var(--gray-500);
  letter-spacing: .08em;
}

.btn-hero-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: var(--line-text);
  padding: 14px 36px; border-radius: 40px;
  font-size: .9rem; font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(230,194,0,.32);
  transition: var(--tr);
}
.btn-hero-line:hover { background: var(--line-dark); transform: translateY(-2px); }
.btn-hero-line i { font-size: 1.05rem; }

/* =========================================
   MAIN
   ========================================= */
.main-content { padding: 88px 0 120px; }

/* =========================================
   PLAN SECTION — ラベル
   ========================================= */
.plan-section { margin-bottom: 80px; }

.plan-section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.ps-num {
  font-family: var(--font-en);
  font-size: 2.4rem; font-weight: 300;
  color: var(--gray-200); line-height: 1;
}
.ps-tag {
  font-family: var(--font-en);
  font-size: .65rem; letter-spacing: .4em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
}

/* =========================================
   SECTION TITLE BLOCK
   ========================================= */
.section-title-block { margin-bottom: 32px; }
.section-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gray-900); font-weight: 400;
  letter-spacing: .08em; margin-bottom: 8px;
}
.section-main-sub {
  font-size: .88rem; color: var(--gray-400); letter-spacing: .08em;
}

/* =========================================
   ② 共感カード
   ========================================= */
.empathy-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--sh);
  padding: 44px 48px;
}

.empathy-checks {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}

/* ① アイコン＋テキストを1行として縦中央揃え */
.ec-item {
  display: flex;
  align-items: center;   /* flex-start → center に変更 */
  gap: 16px;
  font-size: .97rem; color: var(--gray-700);
  letter-spacing: .04em;
  line-height: 1.6;      /* アイコン高さ28pxに合わせて行高を調整 */
}
.ec-check {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  /* margin-top 削除：align-items:center で不要になった */
}
.ec-check i { font-size: .75rem; color: var(--line-green); }

/* ② divider をチェックテキスト左端(44px)に合わせて字下げ
      → divider・empathy-body 両方を同じ左端で揃える */
.empathy-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  /* 左端をチェックテキスト開始位置(44px)に揃える */
  margin-left: 44px;
  margin-bottom: 28px;
}

/* empathy-body もチェックテキスト左端に揃える */
.empathy-body {
  padding-left: 44px;
}

/* empathy-lead: チェックリストと同じ行間リズム */
.empathy-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray-900); font-weight: 400;
  letter-spacing: .07em;
  line-height: 2.0;
  /* empathy-desc との間隔 = チェックリスト gap(16px) と同じリズム */
  margin-bottom: 20px;
}

/* empathy-desc: リズムを empathy-lead と統一 */
.empathy-desc {
  font-size: .9rem; color: var(--gray-400);
  letter-spacing: .06em;
  line-height: 2.0;
  /* 下部余白：フローティングボタンとの干渉防止 */
  padding-bottom: 4px;
}

/* =========================================
   ③ 特徴 POPULAR PARTS GRID
   ========================================= */
.popular-parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pp-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  /* 上下・左右の余白を固定値で統一 */
  padding: 36px 24px 32px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  /* gap は使わず各要素の margin で個別制御 */
  gap: 0;
  box-shadow: var(--sh);
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.pp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gray-700), var(--gray-400));
}
.pp-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hov); }

/* アイコン：下に固定マージン */
.pp-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.pp-icon i { font-size: 1.2rem; color: var(--gold); }

/* pp-body：高さを固定してすべてのカードで見出しY位置を揃える */
.pp-body {
  width: 100%;
  /* 見出し(1.1rem×行高)+サブ(0.82rem×行高)の合計を固定 */
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pp-name {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--gray-900);
  font-weight: 400; letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 6px;
  /* 見出しが1行になるよう幅を制限しない（自然な折り返しを許容） */
  white-space: normal;
  word-break: keep-all;
}
/* サブテキスト：inline-flex で時計アイコン＋テキストを一塊として中央揃え */
.pp-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: .82rem; color: var(--gray-400); letter-spacing: .04em;
  line-height: 1;
}
.pp-time i { color: var(--gray-300); font-size: .78rem; }

/* セパレーター：見出しブロックと説明文の間に細線 */
.pp-card .pp-sep {
  width: 32px; height: 1px;
  background: var(--gray-200);
  margin: 0 auto 16px;
  flex-shrink: 0;
}

/* 説明文：<br>による意図的2行改行を優先 */
.pp-desc {
  font-size: .82rem; color: var(--gray-500);
  line-height: 1.75; letter-spacing: .03em;
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
/* 各行を nowrap で固定し、<br> 以外での折り返しを完全に禁止 */
.pp-desc span {
  display: inline-block;
  white-space: nowrap;
}

/* ========================================
   カード説明文 完全固定クラス（STEP3+4）
   ======================================== */
.card-text-fixed {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
  max-width: 280px;
  margin: 0 auto;
}
}

/* 施術後バッジバー */
.feature-badge-bar {
  background: var(--gray-900);
  border-radius: var(--radius-m);
  padding: 18px 24px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--gold-lt);
  letter-spacing: .15em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.feature-badge-bar i { color: var(--gold); }

/* =========================================
   ④ FULL BODY CARD（考え方・補足共用）
   ========================================= */
.fullbody-card {
  background: var(--black);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex; align-items: stretch;
  box-shadow: 0 8px 48px rgba(0,0,0,.22);
  position: relative;
}
.fullbody-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(184,168,122,.07), transparent);
  pointer-events: none;
}
.fullbody-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fb-left {
  flex: 1; padding: 52px 48px;
  position: relative; z-index: 1;
}
.fb-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white); font-weight: 300;
  letter-spacing: .1em; line-height: 1.4;
  margin-bottom: 16px;
}
.fb-title span {
  font-size: .65em; color: var(--gold-lt);
  display: block; margin-top: 4px;
  letter-spacing: .15em;
}
.fb-parts {
  font-size: .92rem; color: var(--gray-400);
  letter-spacing: .07em; line-height: 1.9;
  margin-bottom: 16px;
}
.fb-time { font-size: .9rem; color: var(--gray-300); letter-spacing: .05em; }
.fb-time i { color: var(--gold); margin-right: 6px; }

.fb-center-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-700), transparent);
  margin: 40px 0; flex-shrink: 0;
}

.fb-right {
  min-width: 260px; flex-shrink: 0;
  padding: 52px 48px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.fb-price-item { text-align: left; }
.fb-price-label {
  display: block;
  font-family: var(--font-en); font-size: .65rem;
  letter-spacing: .4em; color: var(--gray-400);
  margin-bottom: 12px;
}
.fb-philosophy-text {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--white);
  font-weight: 300; letter-spacing: .1em;
  line-height: 1.8; text-align: left;
}

/* supplement card = fullbody without right col */
.supplement-card .fb-left { flex: 1; }

/* =========================================
   ⑤ CAUTION CARD
   ========================================= */
.caution-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start; /* アイコンとbodyを上揃えで統一 */
  gap: 24px;
  box-shadow: var(--sh);
  position: relative; overflow: hidden;
}
.caution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gray-400), var(--gray-200));
}

/* アイコン：タイトル文字の縦中央に視覚的に揃える */
.caution-icon-wrap {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  /* タイトル(1.1rem × line-height1.8) の中心に合わせる微調整 */
  margin-top: 1px;
}
.caution-icon-wrap i { font-size: 1.2rem; color: var(--gold); }

.caution-title {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--gray-900);
  font-weight: 400; letter-spacing: .08em;
  margin-bottom: 14px;
}

/* body：flex:1 で残幅を占有、min-width:0 でテキスト溢れ防止 */
.caution-body {
  flex: 1;
  min-width: 0;
}

/* 箇条書きリスト */
.caution-list {
  display: flex; flex-direction: column; gap: 10px;
}

/* ※ を構造で固定：mark + text を横並びにし単独行を防ぐ */
.caution-list li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: .88rem; color: var(--gray-500);
  letter-spacing: .04em; line-height: 1.85;
}

/* 記号「※」：幅を固定して常に先頭に鎮座させる */
.caution-list .caution-mark {
  flex-shrink: 0;
  display: inline-block;
  width: 1.2em;
  line-height: inherit;
  color: var(--gray-500);
}

/* 本文：折り返し・語句分断防止 */
.caution-list .caution-text {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: inherit;
}
}

/* =========================================
   ⑥ PLAN MAIN CARD（メニュー）
   ========================================= */
.plan-main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: var(--tr);
}
.plan-main-card:hover { box-shadow: var(--sh-hov); transform: translateY(-3px); }

/* — Left — */
.no1-card .pmc-left { background: var(--black); }

.pmc-left {
  padding: 44px 40px;
  position: relative;
}
.pmc-left::after {
  content: '';
  position: absolute; right: 0; top: 40px; bottom: 40px; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-600), transparent);
}

.pmc-badge {
  display: inline-block;
  font-size: .7rem; letter-spacing: .05em;
  background: var(--gray-600); color: var(--white);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 700;
}

.pmc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white); font-weight: 400;
  letter-spacing: .08em; line-height: 1.4;
  margin-bottom: 12px;
}

.pmc-time {
  font-size: .9rem; color: var(--gray-300);
  letter-spacing: .05em; margin-bottom: 28px;
}
.pmc-time i { color: var(--gold); margin-right: 6px; }

.pmc-parts-label {
  font-family: var(--font-en);
  font-size: .62rem; letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 14px; text-transform: uppercase;
}

.pmc-parts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.parts-group {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-s);
  padding: 10px 14px;
}
.parts-group-name {
  display: block;
  font-size: .92rem; color: var(--white);
  font-weight: 500; letter-spacing: .04em;
  margin-bottom: 4px;
}
.parts-group-detail {
  display: block;
  font-size: .82rem; color: var(--gray-400);
  letter-spacing: .03em; line-height: 1.6;
}

/* — Right — */
.no1-card .pmc-right { background: var(--gray-50); }
.pmc-right { padding: 44px 40px; display: flex; align-items: center; }
.price-block-wrap { width: 100%; }

/* 通常料金行 */
.price-normal-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.pb-label { font-size: .88rem; color: var(--gray-500); letter-spacing: .05em; }
.pb-price {
  font-family: var(--font-price);
  font-size: .95rem; color: var(--gray-500);
  text-decoration: line-through;
}
.pb-price small { font-size: .7em; }
.pb-price strong { font-size: 1.4rem; font-weight: 500; }

/* 初回特別価格行 */
.price-line-row {
  background: var(--gray-900);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  margin-bottom: 16px;
}
.price-line-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--line-green); color: var(--line-text);
  font-size: .72rem; padding: 5px 14px; border-radius: 16px;
  margin-bottom: 12px; font-weight: 700;
}
.price-line-badge i { font-size: .9rem; }
.price-line-arrow {
  font-size: .75rem; color: var(--gray-400);
  letter-spacing: .04em; margin-bottom: 6px;
}
.price-line-arrow i { color: var(--gray-500); margin: 0 4px; }
.price-line-big {
  font-family: var(--font-price);
  color: var(--white);
  font-size: 1rem;
}
.price-line-big small { font-size: .75em; color: var(--gray-300); }
.price-line-big strong {
  font-size: 3.2rem; font-weight: 600;
  letter-spacing: -.01em;
}

.price-note-text {
  font-size: .82rem; color: var(--gray-400);
  letter-spacing: .04em; margin-bottom: 20px;
}

/* ボタン in card */
.btn-line-card {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--line-green); color: var(--line-text);
  padding: 15px 20px; border-radius: 40px;
  font-size: .95rem; font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 4px 18px rgba(230,194,0,.25);
  transition: var(--tr);
}
.btn-line-card:hover { background: var(--line-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,194,0,.38); }
.btn-line-card i { font-size: 1.1rem; }

/* =========================================
   ⑧ LINE CTA
   ========================================= */
.line-cta-section {
  margin-top: 80px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--sh);
}
.line-cta-inner {
  display: flex; align-items: stretch;
}

.line-cta-left {
  flex: 1; padding: 52px 56px;
}
.lc-eyebrow {
  font-family: var(--font-en);
  font-size: .62rem; letter-spacing: .45em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px; display: inline-block;
  margin-bottom: 20px;
}
.lc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--gray-900); font-weight: 400;
  letter-spacing: .07em; line-height: 1.45;
  margin-bottom: 14px;
}
.lc-desc {
  font-size: .93rem; color: var(--gray-500);
  line-height: 1.95; margin-bottom: 24px;
}

.lc-benefit {
  background: var(--gray-900);
  border-radius: var(--radius-m);
  padding: 18px 22px; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.lc-benefit-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; font-size: .9rem; color: var(--gray-300);
}
.lc-benefit-row i { color: var(--gold); font-size: 1rem; }
.lc-from { text-decoration: line-through; color: var(--gray-500); }
.lc-arrow { color: var(--gray-500); font-size: .65rem; }
.lc-to { color: var(--gold-lt); font-size: 1rem; }
.lc-to strong { font-size: 1.5rem; font-weight: 600; color: var(--white); }
.lc-benefit-row-note {
  font-size: .78rem; color: var(--gray-600);
  letter-spacing: .04em; line-height: 1.8;
}

.btn-line-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--line-green); color: var(--line-text);
  padding: 15px 36px; border-radius: 40px;
  font-size: .95rem; font-weight: 700; letter-spacing: .07em;
  box-shadow: 0 4px 22px rgba(230,194,0,.28);
  transition: var(--tr);
}
.btn-line-main:hover { background: var(--line-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(230,194,0,.42); }
.btn-line-main i { font-size: 1.1rem; }

/* .btn-line-header — 旧ヘッダーボタン（削除済・新クラス hdr-line-btn に移行） */

/* =========================================
   FLOAT 予約ボタン
   ========================================= */
.float-line-btn {
  position: fixed; bottom: 32px; right: 28px; z-index: 200;
  background: var(--line-green); color: var(--line-text);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  font-size: .62rem; font-weight: 700; letter-spacing: .02em; gap: 2px;
  box-shadow: 0 6px 24px rgba(230,194,0,.45);
  transition: var(--tr);
  animation: pulse 3s ease-in-out infinite;
}
.float-line-btn i { font-size: 1.7rem; }
.float-line-btn span { font-size: .6rem; }
.float-line-btn:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(230,194,0,.6); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(230,194,0,.45); }
  50%       { box-shadow: 0 6px 40px rgba(230,194,0,.65); }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  padding: 56px 24px 100px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-en); font-size: .95rem;
  letter-spacing: .45em; color: var(--gray-500);
  margin-bottom: 22px;
}
.footer-notes { margin-bottom: 22px; }
.footer-notes p {
  font-size: .73rem; color: var(--gray-600);
  letter-spacing: .04em; line-height: 2.1;
}
.footer-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* 横広め・大きめ角丸（画像のpill型） */
  width: 200px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  /* 枠線：細め・薄いグレー */
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  /* テキスト・アイコン色：グレー */
  color: #888888;
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .12em;
  margin: 28px auto;
  transition: var(--tr);
}
.footer-line-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}

/* .header-home-btn — 旧ヘッダーボタン（削除済・新クラス hdr-home-btn に移行） */
.footer-copy { font-size: .68rem; color: var(--gray-700); letter-spacing: .1em; }

/* =========================================
   SCROLL FADE-IN
   ========================================= */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE — Tablet
   ========================================= */
@media (max-width: 900px) {
  .plan-main-card { grid-template-columns: 1fr; }
  .pmc-left::after { display: none; }
  .pmc-left, .pmc-right { padding: 36px 32px; }
  .pmc-parts-grid { grid-template-columns: 1fr 1fr; }

  .fb-left { padding: 40px 36px; }
  .fb-center-divider {
    width: auto; height: 1px; margin: 0 36px;
    background: linear-gradient(to right, transparent, var(--gray-700), transparent);
  }
  .fullbody-card { flex-direction: column; }
  .fb-right { min-width: unset; padding: 32px 36px 44px; justify-content: flex-start; }
  .fb-price-item { text-align: left; }

  .line-cta-inner { flex-direction: column; }
  .line-cta-left { padding: 40px 32px; }

  .popular-parts-grid { grid-template-columns: 1fr 1fr; }

  .empathy-card { padding: 36px 32px; }

  .caution-card { padding: 28px 32px; }
}

/* =========================================
   RESPONSIVE — Mobile
   ========================================= */
@media (max-width: 600px) {
  /* ---- Hero ---- */
  .hero { padding: 72px 20px 64px; }
  .hero-bg-lines span:nth-child(2) { display: none; }

  /* 見出し：1文字落ちを防ぐため max-width + 自然な改行位置 */
  .hero-catch {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
    line-height: 1.55;
    letter-spacing: .06em;
    /* 長すぎる単語の折り返しを許可 */
    overflow-wrap: break-word;
    word-break: keep-all;
    max-width: 100%;
  }

  /* サブテキスト：行が短すぎる場合に備えて幅と行高を確保 */
  .hero-sub {
    font-size: .88rem;
    line-height: 2.0;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
    margin-bottom: 28px;
  }

  .hero-note {
    font-size: .75rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* ---- Layout ---- */
  .container { padding: 0 16px; }
  .main-content { padding: 60px 0 100px; }
  .plan-section { margin-bottom: 64px; }

  .header-inner { padding: 0 16px; }
  .logo-en { display: none; }
  .logo-ja { font-size: .88rem; }

  /* ---- Section titles ---- */
  .section-main-title {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .section-main-sub {
    font-size: .82rem;
    word-break: keep-all;
  }

  /* ---- Empathy ---- */
  .empathy-card { padding: 28px 22px; }
  .empathy-lead {
    font-size: clamp(.95rem, 4vw, 1.15rem);
    line-height: 2.0;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .ec-item p {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.85;
  }

  /* ---- Features ---- */
  .popular-parts-grid { grid-template-columns: 1fr; }
  .pp-name { font-size: 1rem; }
  .pp-desc {
    font-size: .82rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .feature-badge-bar {
    font-size: .88rem;
    letter-spacing: .08em;
    padding: 14px 18px;
    word-break: keep-all;
  }

  /* ---- Philosophy / Supplement ---- */
  .fb-left, .fb-right { padding: 32px 24px; }
  .fb-right { padding-bottom: 36px; }
  .fb-title {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .fb-title span {
    font-size: .7em;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .fb-parts {
    font-size: .88rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .fb-philosophy-text {
    font-size: 1rem;
    word-break: keep-all;
  }

  /* ---- Caution ---- */
  .caution-card { padding: 24px 20px; gap: 16px; }
  .caution-list li {
    font-size: .84rem;
    line-height: 1.9;
  }
  .caution-list .caution-text {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* ---- Menu ---- */
  .pmc-parts-grid { grid-template-columns: 1fr; }
  .pmc-left, .pmc-right { padding: 28px 22px; }
  .pmc-title {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
    word-break: keep-all;
  }
  .pmc-time {
    font-size: .83rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.7;
  }
  .parts-group-detail {
    font-size: .78rem;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .price-line-big strong { font-size: 2.3rem; }
  .price-note-text {
    font-size: .78rem;
    word-break: keep-all;
  }

  /* ---- CTA ---- */
  .line-cta-left { padding: 32px 22px; }
  .lc-title {
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .lc-desc {
    font-size: .86rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.85;
  }
  .lc-benefit-row { font-size: .78rem; flex-wrap: wrap; gap: 6px; }
  .lc-to strong { font-size: 1.25rem; }

  /* ---- Footer ---- */
  .footer-notes p {
    font-size: .7rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 2.0;
  }

  /* ---- Float btn ---- */
  .float-line-btn { bottom: 20px; right: 16px; width: 62px; height: 62px; }
  .float-line-btn i { font-size: 1.5rem; }

  .ps-num { font-size: 1.8rem; }
}
}

/* ===== Header size force fix ===== */
.site-header,
header.site-header,
header {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-sizing: border-box;
}

.header-inner,
.site-header .header-inner,
header .header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 左ホーム */
.home-button,
.btn-home,
.header-home,
a.home-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 40px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1.2px solid rgba(255,255,255,0.18) !important;
  background: #050505 !important;
  color: #f2f2f2 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

/* 右LINE */
.line-button,
.btn-line,
.header-line,
a.line-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: fit-content !important;
  height: 40px !important;
  padding: 0 14px !important;
  margin-left: auto !important;
  border-radius: 999px !important;
  background: #e1c400 !important;
  color: #111111 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

/* 広がる原因を強制排除 */
.home-button,
.btn-home,
.header-home,
.line-button,
.btn-line,
.header-line {
  flex-grow: 0 !important;
}

/* アイコンを少し小さく */
.home-button svg,
.btn-home svg,
.header-home svg,
.line-button svg,
.btn-line svg,
.header-line svg {
  width: 14px !important;
  height: 14px !important;
}

/* 既存の広がり指定を殺す */
.home-button,
.btn-home,
.header-home,
.line-button,
.btn-line,
.header-line {
  width: auto !important;
  min-width: 0 !important;
}

/* ===== 親レイアウト強制修正 ===== */

header,
.site-header,
.header,
.header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  padding: 10px 16px !important;
  box-sizing: border-box !important;
}

/* 子要素の暴走を止める */
header * {
  max-width: fit-content !important;
}

/* LINEボタンの横幅制限（最重要） */
.line-button,
.btn-line,
.header-line {
  width: auto !important;
  max-width: fit-content !important;
  display: inline-flex !important;
}
/* ===== LINEボタンを右に強制寄せ ===== */
.header-line,
.line-button,
.btn-line {
  margin-left: auto !important;
}

/* ===== 最終：右寄せ完全固定 ===== */
.header-inner {
  justify-content: flex-start !important;
}

.header-inner > *:last-child {
  margin-left: auto !important;
}

/* ===== 最終微調整：右端にもう少し寄せる ===== */
.header-inner {
  padding-right: 8px !important;
}