/* ============================================================
 * サピログ - 静的コース紹介ページ（LP）用スタイル
 * アプリ本体(style.css)とは独立。配色・書体はアプリと統一。
 * Created: 2026-08-02
 * Author: Claude Code
 * ============================================================ */

:root {
  --rose: #e85377;
  --rose-dark: #c93b5e;
  --rose-light: #f4869f;
  --cream: #fdf6ec;
  --bg: #efe6d8;
  --text: #3a2c16;
  --brown: #5a3e1b;
  --gray: #8a8073;
  --line: #f0e4d2;
  --white: #fff;
  --shadow: 0 2px 10px rgba(90, 62, 27, .12);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Maru Gothic ProN", "BIZ UDPGothic", "Yu Gothic UI", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
}

/* ---- ヘッダー ---- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(253, 246, 236, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.lp-brand svg { display: block; }
.lp-brand small { font-weight: 400; color: var(--gray); font-size: 11px; }
.lp-header-cta {
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-header-cta:active { background: var(--rose-dark); }

/* ---- 本文 ---- */
.lp {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 18px 40px;
}
.lp-crumbs { font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.lp-crumbs a { color: var(--gray); }

h1 {
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 10px;
  color: var(--brown);
}
.lp-lead { margin: 0 0 18px; }

h2 {
  font-size: 17px;
  color: var(--brown);
  margin: 34px 0 10px;
  padding-left: 10px;
  border-left: 4px solid var(--rose);
  line-height: 1.4;
}

/* ---- 数字チップ ---- */
.lp-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.lp-stat {
  flex: 1 1 100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 12px 8px;
}
.lp-stat b { display: block; font-size: 22px; color: var(--rose-dark); line-height: 1.2; }
.lp-stat span { font-size: 11px; color: var(--gray); }

/* ---- CTA ---- */
.lp-cta {
  display: block;
  background: var(--rose);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 22px 0;
}
.lp-cta:active { background: var(--rose-dark); }
.lp-cta small { display: block; font-weight: 400; font-size: 11px; opacity: .9; }

/* ---- ステップ・リスト ---- */
.lp-steps { margin: 0; padding: 0 0 0 2px; list-style: none; counter-reset: step; }
.lp-steps li {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 14px 12px 46px;
  margin: 10px 0;
  position: relative;
}
.lp-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp ul { padding-left: 1.3em; }
.lp li { margin: 4px 0; }

/* ---- マナー ---- */
.lp-manner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 16px 12px;
  margin-top: 30px;
}
.lp-manner h2 { border: none; padding-left: 0; margin: 12px 0 6px; font-size: 15px; }

/* ---- FAQ ---- */
.lp details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 14px;
  margin: 10px 0;
}
.lp summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  color: var(--brown);
}
.lp details p { margin: 0 0 12px; }

/* ---- コースカード（ハブ・ほかのコース） ---- */
.lp-courses { display: grid; gap: 12px; padding: 0; margin: 16px 0; list-style: none; }
.lp-course-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  text-decoration: none;
  color: var(--text);
}
.lp-course-card .em { font-size: 26px; }
.lp-course-card b { color: var(--brown); }
.lp-course-card .count { margin-left: auto; font-size: 12px; color: var(--rose-dark); font-weight: 700; white-space: nowrap; }
.lp-course-card small { display: block; color: var(--gray); font-size: 12px; line-height: 1.5; }

/* ---- フッター ---- */
.lp-footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 18px 40px;
  font-size: 11px;
  color: var(--gray);
  border-top: 1px solid var(--line);
}
.lp-footer a { color: var(--gray); }
