/* ===========================
   お客様の声セクション（Reviews）
=========================== */
.reviews {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #a45c6d;
}

.review-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.review-card {
  background-color: #fff8f8;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
}

.review-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 1rem;
  color: #a45c6d;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ===========================
   お客様の声：レスポンシブ対応（reviews.css専用）
=========================== */
@media (max-width: 768px) {
  .review-cards {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 90%;
  }
}
