/* ===== ボタン ===== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #b71c1c;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #d32f2f;
}

/* ===== セクションタイトル ===== */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

/* ===== カード / 共通ボックス ===== */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
