.review-page {
  background: #f8f8f8;
  padding: 80px 20px;
}

.review-container {
  max-width: 1100px;
  margin: 0 auto;
}

.review-hero {
  text-align: center;
  margin-bottom: 50px;
}

.review-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #c6a75e;
  margin-bottom: 12px;
  font-weight: 600;
}

.review-title {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.review-lead {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.review-intro-box {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.review-intro-box p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin: 0;
}

.review-section {
  margin-bottom: 90px;
}

.review-heading {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 34px;
  position: relative;
}

.review-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c6a75e;
  margin: 14px auto 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
}

.review-card.featured {
  border: 1px solid #e3d3a4;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.review-text {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin: 0;
}

.review-text strong {
  color: #222;
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(198, 167, 94, 0.22) 60%);
}

.review-cta {
  background: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #ece7dc;
}

.review-cta-title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.review-cta p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin: 0 0 28px;
}

.review-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c6a75e;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.review-btn:hover {
  opacity: 0.85;
}

/* ---------- スマホ・タブレット ---------- */
@media (max-width: 768px) {
  .review-page {
    padding: 60px 16px;
  }

  .review-container {
    max-width: 100%;
  }

  .review-hero {
    margin-bottom: 40px;
  }

  .review-label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .review-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .review-lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .review-intro-box {
    padding: 22px 18px;
    border-radius: 16px;
    margin-bottom: 45px;
  }

  .review-intro-box p {
    font-size: 15px;
    line-height: 1.9;
  }

  .review-section {
    margin-bottom: 70px;
  }

  .review-heading {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .review-heading::after {
    width: 50px;
    margin-top: 12px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .review-cta {
    padding: 38px 20px;
    border-radius: 18px;
  }

  .review-cta-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .review-cta p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .review-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ---------- さらに小さいスマホ ---------- */
@media (max-width: 480px) {
  .review-page {
    padding: 50px 14px;
  }

  .review-title {
    font-size: 24px;
  }

  .review-lead {
    font-size: 15px;
  }

  .review-heading {
    font-size: 20px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.85;
  }

  .review-cta-title {
    font-size: 22px;
  }

  .review-cta p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .review-btn {
    display: block;           /* ← inline-blockをやめる */
    width: 100%;
    max-width: 320px;
    margin: 0 auto;           /* ← これが中央寄せの本体 */
    text-align: center;
    box-sizing: border-box;   /* ← はみ出し防止 */
  }
}