/* コスメコンプラ LP v0 — 未公開・ローカル確認用 */
:root {
  --primary: #b0578d;      /* コスメ系の落ち着いたピンク */
  --primary-dark: #8a3f6e;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --bg: #fdf8fb;
  --card: #ffffff;
  --border: #eadfe7;
}

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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
}

section, header, footer { padding: 64px 24px; }
h1 { font-size: 2.1rem; line-height: 1.5; }
h2 { font-size: 1.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.1rem; margin-bottom: 12px; }

.hero {
  background: linear-gradient(160deg, #fff 0%, #fbeaf4 100%);
  text-align: center;
  padding-top: 88px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-sub { color: var(--muted); margin: 24px auto; max-width: 640px; }
.hero-note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--primary-dark); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.card p, .card li { font-size: 0.92rem; color: var(--muted); }
.num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.plan { text-align: center; position: relative; }
.plan ul { list-style: none; text-align: left; margin-top: 16px; }
.plan li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.price { font-size: 1.7rem; font-weight: 700; color: var(--primary-dark); }
.price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.featured { border: 2px solid var(--primary); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  padding: 2px 16px;
  border-radius: 999px;
}
.pricing-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 24px; }

.poc { background: #fbeaf4; text-align: center; }
.poc > p { max-width: 560px; margin: 0 auto 32px; color: var(--muted); }
.poc-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.poc-form label { font-size: 0.9rem; font-weight: 600; }
.poc-form input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}
.poc-form button { margin-top: 8px; }

footer { background: var(--ink); color: #ddd; text-align: center; font-size: 0.85rem; }
.disclaimer { max-width: 720px; margin: 0 auto 16px; font-size: 0.78rem; color: #aaa; }

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  .sp { display: inline; }
}
