:root {
  --green: #2f8f5b;
  --green-dark: #1f6b41;
  --green-light: #eaf6ee;
  --navy: #202733;
  --gray: #666f7d;
  --gold: #f4b942;
  --radius: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--navy);
  background: #f9fbfa;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; }

.section-inner { max-width: 1040px; margin: 0 auto; padding: 64px 24px; }

.pr-badge {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  padding: 6px 10px;
  letter-spacing: 0.02em;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e2f0e6;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-weight: 800; font-size: 1.2rem; color: var(--green-dark); }
.logo span { color: var(--navy); font-size: 0.85rem; margin-left: 6px; }
.header-nav { display: flex; gap: 24px; }
.header-nav a { font-size: 0.9rem; font-weight: 600; color: var(--gray); }
.header-nav a:hover { color: var(--green-dark); }

.hero {
  background: linear-gradient(135deg, var(--green-light) 0%, #dcf0e3 100%);
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 760px; margin: 0 auto; padding: 72px 24px; position: relative; }
.hero-eyebrow { color: var(--green-dark); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; margin-bottom: 12px; }
.hero h1 { font-size: 2rem; line-height: 1.5; margin-bottom: 20px; }
.hero-lead { color: var(--gray); font-size: 0.98rem; margin-bottom: 32px; }
.btn-primary {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(31, 107, 65, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31, 107, 65, 0.45); }

.why h2, .ranking h2, .compare h2, .voice h2, .faq h2, .cta-final h2 { text-align: center; font-size: 1.7rem; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--gray); font-size: 0.9rem; margin-bottom: 40px; }
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.88rem; }

.ranking { background: var(--green-light); }
.rank-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #dcefe2;
}
.rank-card.rank-1 { border-color: var(--gold); background: #fff8e9; }
.rank-card-body { padding: 20px 28px; flex: 1; }
.rank-card-head h3 { font-size: 1.1rem; }
.rank-catch { color: var(--green-dark); font-weight: 600; font-size: 0.88rem; margin-top: 6px; }

.compare { background: #fff; }
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--green-light);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td { padding: 16px; text-align: left; border-bottom: 1px solid #dcefe2; }
.compare-table thead th { background: var(--green-dark); color: #fff; }
.compare-table .highlight-row { background: #fff8e9; font-weight: 700; }
.disclaimer-inline { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 16px; }

.cta-final {
  background: linear-gradient(135deg, var(--green-dark), #4fae7a);
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { max-width: 560px; margin: 16px auto 28px; font-size: 0.92rem; opacity: 0.95; }
.cta-final img { margin-top: 8px; }

.voice { background: var(--green-light); }
.voice .disclaimer-inline { margin-bottom: 32px; margin-top: 0; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-card { background: #fff; border-radius: var(--radius); padding: 22px; }
.voice-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; }
.voice-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.voice-card p { font-size: 0.86rem; color: var(--gray); }

.faq { background: #fff; }
.faq-list { max-width: 720px; margin: 32px auto 0; }
.faq-item { background: var(--green-light); border: 1px solid #dcefe2; border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 0.92rem; }
.faq-item p { margin-top: 10px; color: var(--gray); font-size: 0.88rem; }

.footer { background: var(--navy); color: #c9cfd8; }
.footer-inner { padding: 40px 24px; text-align: center; }
.footer-disclaimer { font-size: 0.75rem; line-height: 1.8; opacity: 0.85; }
.footer-copy { margin-top: 16px; font-size: 0.78rem; opacity: 0.6; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero h1 { font-size: 1.5rem; }
  .why-grid, .voice-grid { grid-template-columns: 1fr; }
}
