/* YORI 統合LP・共通スタイル — 2026-04-23 */

:root {
  --bg: #faf8f3;
  --surface: #ffffff;
  --primary: #2c3e3a;        /* 深緑（和モダン） */
  --accent: #b8935a;         /* 金茶 */
  --text: #2c2c2c;
  --text-sub: #6b6b6b;
  --border: #e8e2d5;
  --shadow: 0 4px 20px rgba(44,62,58,.08);
}

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

body {
  font-family: "Hiragino Mincho ProN","Yu Mincho",Georgia,serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
}

/* ── 共通ヘッダー（全LPで同一） ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header .brand {
  font-size: 1.1rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
  letter-spacing: .05em;
}
.site-header .brand span { color: var(--accent); }
.site-header .lang-badges { display: flex; gap: 6px; font-size: .72rem; }
.site-header .lang-badges span {
  padding: 3px 8px; border-radius: 3px;
  background: var(--primary); color: #fff;
}
.site-header .book-btn {
  padding: 8px 18px; background: var(--accent); color: #fff;
  text-decoration: none; border-radius: 4px; font-size: .9rem;
  letter-spacing: .05em;
}

/* ── Hero ── */
.hero {
  padding: 80px 24px 60px; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.hero .sub { color: var(--accent); letter-spacing: .2em; font-size: .85rem; margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 500;
  color: var(--primary); letter-spacing: .1em;
  margin-bottom: 24px; line-height: 1.5;
}
.hero .lead {
  font-size: 1rem; color: var(--text-sub);
  max-width: 600px; margin: 0 auto 32px;
}
/* ── 予約CTA 2択（LINE / 電話）── */
.cta-group {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin: 28px 0;
}
.cta-line, .cta-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px; min-width: 200px; justify-content: center;
  text-decoration: none; border-radius: 8px;
  font-size: 1.05rem; font-weight: 500; letter-spacing: .05em;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
}
.cta-line:hover, .cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.cta-line {
  background: #06C755; color: #fff;       /* LINEブランドカラー */
}
.cta-line::before { content: "💬"; font-size: 1.2em; }
.cta-call {
  background: var(--primary); color: #fff;
}
.cta-call::before { content: "☎"; font-size: 1.2em; }
.cta-hours {
  text-align: center; font-size: .82rem;
  color: var(--text-sub); margin-top: 10px;
}

/* ── LINEテンプレ（コピペ用ボックス） ── */
.line-template {
  background: var(--surface); border: 1px dashed var(--accent);
  border-radius: 8px; padding: 20px; margin: 24px 0;
  font-family: "SF Mono","Menlo",monospace; font-size: .88rem;
  color: var(--text); white-space: pre-line; position: relative;
}
.line-template::before {
  content: "📋 コピペ用"; position: absolute; top: -10px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: .72rem; padding: 2px 10px; border-radius: 3px;
  font-family: system-ui;
}
.copy-btn {
  position: absolute; top: 12px; right: 12px;
  padding: 6px 14px; background: var(--primary); color: #fff;
  border: none; border-radius: 4px; font-size: .8rem; cursor: pointer;
}

/* ── セクション ── */
section {
  max-width: 720px; margin: 0 auto;
  padding: 60px 24px;
}
section h2 {
  font-size: 1.3rem; font-weight: 500; color: var(--primary);
  letter-spacing: .1em; text-align: center; margin-bottom: 32px;
}
section h2::after {
  content: ""; display: block;
  width: 36px; height: 2px; background: var(--accent);
  margin: 14px auto 0;
}
section p { margin-bottom: 16px; color: var(--text-sub); font-size: .95rem; }

/* ── 価格表（全LP共通・同じ数字） ── */
.price-table {
  background: var(--surface); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  margin: 32px 0;
}
.price-row {
  display: flex; padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  justify-content: space-between; align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row.featured { background: linear-gradient(90deg, rgba(184,147,90,.08), transparent); }
.price-row .name { font-weight: 500; color: var(--primary); }
.price-row .time { color: var(--text-sub); font-size: .85rem; margin-top: 4px; }
.price-row .price { font-size: 1.15rem; color: var(--accent); font-weight: 500; }
.price-note {
  padding: 16px 24px; background: var(--bg);
  font-size: .85rem; color: var(--text-sub); text-align: center;
}

/* ── YORI氏プロフィール（信頼シグナル・全LP共通） ── */
.therapist-card {
  background: var(--surface); border-radius: 12px;
  padding: 32px; margin: 32px 0;
  display: flex; gap: 24px; align-items: center;
  box-shadow: var(--shadow);
}
.therapist-card .photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.therapist-card h3 { color: var(--primary); margin-bottom: 8px; font-weight: 500; }
.therapist-card .credentials { font-size: .85rem; color: var(--text-sub); line-height: 1.7; }
.therapist-card .langs { margin-top: 12px; display: flex; gap: 8px; }
.therapist-card .langs span {
  padding: 3px 10px; background: var(--primary); color: #fff;
  font-size: .75rem; border-radius: 3px;
}

/* ── 流れステップ（初回客向け不安解消） ── */
.steps { list-style: none; counter-reset: step; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative; padding: 18px 20px 18px 68px;
  background: var(--surface); border-radius: 8px;
  margin-bottom: 10px; box-shadow: var(--shadow);
  font-size: .95rem; color: var(--text);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 20px; top: 18px;
  width: 32px; height: 32px; background: var(--accent);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.steps li strong { color: var(--primary); display: block; margin-bottom: 4px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; font-weight: 500; }
.faq-item p { font-size: .9rem; color: var(--text-sub); margin: 0; }

/* ── 最終CTA ── */
.final-cta {
  background: var(--primary); color: #fff;
  padding: 80px 24px; text-align: center;
  margin-top: 40px;
}
.final-cta p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.final-cta .cta-btn {
  padding: 18px 56px; background: var(--accent); color: #fff;
  text-decoration: none; border-radius: 4px; font-size: 1rem;
  letter-spacing: .1em;
}

/* ── フッター ── */
.site-footer {
  padding: 40px 24px;
  text-align: center; font-size: .8rem; color: var(--text-sub);
  border-top: 1px solid var(--border); background: var(--surface);
}
.site-footer a { color: var(--accent); text-decoration: none; margin: 0 8px; }
.site-footer .area-links { margin: 12px 0; }

/* ── モバイル調整 ── */
@media (max-width: 600px) {
  .site-header { padding: 10px 16px; }
  .site-header .lang-badges { display: none; }
  .therapist-card { flex-direction: column; text-align: center; }
  .therapist-card .langs { justify-content: center; }
}
