.howto-lead {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

/* ===== ステップカード ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-badge {
  display: inline-block;
  background: #2e5c2e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-icon { font-size: 2.6rem; margin-bottom: 12px; }
.step-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}
.step-btn {
  display: inline-block;
  background: #2e5c2e;
  color: #fff;
  padding: 9px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: bold;
  transition: background 0.15s;
  white-space: nowrap;
}
.step-btn:hover { background: #3a7a3a; }
.step-done {
  font-size: 0.88rem;
  color: #2e5c2e;
  font-weight: bold;
}

/* ===== FAQ ===== */
.howto-faq {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 32px;
}
.faq-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f4e8;
}
.faq-item { margin-bottom: 18px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-q {
  font-size: 0.92rem;
  font-weight: bold;
  color: #2e5c2e;
  margin-bottom: 5px;
}
.faq-a {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  padding-left: 14px;
  border-left: 3px solid #e8f4e8;
}
.faq-a a { color: #2e5c2e; }

@media (max-width: 767px) {
  .howto-faq { padding: 20px 18px; }
}
