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

body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.7;
}

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

a { text-decoration: none; color: inherit; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #e8f7f1, #ffffff);
  padding: 60px 0 80px;
  text-align: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #2a7f62;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}

.btn.primary {
  background: #2a7f62;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  border: 1px solid #2a7f62;
  color: #2a7f62;
}

/* Section */
.section { padding: 60px 0; }
.section-light { background: #f5f7f6; }
.section-white { background: #fff; }

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.section-lead {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

/* Grid */
.grid.three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 8px;
}

.card-muted {
  background: #f0f0f0;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #555;
}

/* Pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.pill {
  background: #fff;
  border: 1px solid #2a7f62;
  color: #2a7f62;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* Price */
.price-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.price-main {
  font-size: 22px;
  margin: 10px 0;
}

.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: #2a7f62;
}

/* Steps */
.steps {
  padding-left: 20px;
  font-size: 15px;
  color: #555;
}

/* CTA */
.section-cta {
  background: #e8f7f1;
  text-align: center;
}

.btn-large {
  padding: 14px 26px;
  font-size: 17px;
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 20px 0;
  text-align: center;
}

.footer-copy { font-size: 14px; }
.footer-note { font-size: 12px; color: #777; }

/* Responsive */
@media (max-width: 600px) {
  .hero-title { font-size: 22px; }
  .logo { font-size: 22px; }
}

