@charset "UTF-8";
/* ============================================================
   三秒の栞 — ランディングページ (LP)
   完全独立CSS
   ============================================================ */
:root {
  --gold: #C8960A;
  --gold-light: #F5C842;
  --dark: #1A1A1A;
  --bg-warm: #F0EBE0;
  --bg-main: #F8F6F2;
  --bg-card: #ffffff;
  --border: #E8E0D4;
  --text: #1A1A1A;
  --text-sub: #555555;
  --red: #E24B4A;
  --radius-lg: 16px;
  --radius-md: 10px;
  --font-serif: 'Shippori Mincho B1', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --max-w: 800px; /* LPは横幅を絞る */
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg-warm);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   レイアウト・共通部品
   ========================================================= */
.lp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--bg-main);
  box-shadow: 0 0 40px rgba(0,0,0,0.03);
  overflow: hidden;
}

.sec {
  padding: 60px 30px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  line-height: 1.4;
}

.sec-title span.acc {
  color: var(--gold);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* =========================================================
   FV (First View)
   ========================================================= */
.hero {
  text-align: center;
  padding: 40px 30px 60px;
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}

.hero-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.hero-logo .acc { color: var(--gold); }

/* ① 無料バッジ */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFFBE8 0%, #FFF7D6 100%);
  border: 1.5px solid var(--gold-light);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 700;
  color: #7A5C00;
}

.free-badge__item {
  white-space: nowrap;
}

.free-badge__sep {
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.hero-copy {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 40px;
}

.hero-img {
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 600px;
}

/* =========================================================
   課題 (Problem)
   ========================================================= */
.problem {
  background-color: var(--bg-warm);
}

.card-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.problem-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}

.problem-desc {
  color: var(--text-sub);
  margin-bottom: 20px;
}

.problem-quote {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  background: #FFF1F0;
  padding: 15px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

/* =========================================================
   解決策 (Solution)
   ========================================================= */
.solution {
  background-color: #fff;
}

.sol-lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feat-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.feat-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feat-content p {
  color: var(--text-sub);
}

/* =========================================================
   使い方 (Steps)
   ========================================================= */
.steps {
  background-color: var(--bg-main);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-sub);
}

/* =========================================================
   比較 (Comparison)
   ========================================================= */
.comparison {
  background-color: #fff;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.comp-table th, .comp-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.comp-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--text-sub);
}

.comp-table .ours {
  background-color: #FDFAF4;
  font-weight: 700;
  color: var(--dark);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.comp-table tr:first-child .ours {
  border-top: 2px solid var(--gold);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.comp-table tr:last-child .ours {
  border-bottom: 2px solid var(--gold);
}

/* ③ 料金行（先頭データ行）を強調 */
.comp-table tr:nth-child(2) td {
  font-weight: 700;
  background-color: #FAFAF5;
}

.comp-table tr:nth-child(2) td.ours {
  color: #7A5C00;
  background-color: #FFFBE8;
  font-size: 16px;
}

/* =========================================================
   Footer CTA
   ========================================================= */
.footer-cta {
  background-color: var(--dark);
  text-align: center;
  padding: 80px 30px;
}

.footer-cta .sec-title {
  color: #fff;
}

.footer-cta .cta-btn {
  background-color: var(--gold);
  color: #fff;
}
.footer-cta .cta-btn:hover {
  background-color: #B5870A;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 600px) {
  .hero-copy { font-size: 26px; }
  .sec-title { font-size: 22px; }
  .step-grid { grid-template-columns: 1fr; }
  .comp-table th, .comp-table td { padding: 12px 10px; font-size: 13px; }
  .feat-item { flex-direction: column; gap: 10px; }
  .feat-num { font-size: 30px; }
  .free-badge { font-size: 12px; padding: 6px 16px; gap: 6px; }
}
