/* ========== Achievements: Reuse base CSS, add needed classes ========== */

/* 実績サマリー */
.achievement-summary {
  font-size: 18px;
  color: var(--text-color);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  font-weight: bold;
}

.achievements-highlight {
  align-items: center;
}

/* 合格校リスト */
.achievement-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 32px;
  color: var(--text-color);
}

/* 合格者の声 */
.achievement-voices {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.achievement-voice-title {
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 8px;
}

.achievement-voice-text {
  font-size: 15px;
  color: var(--text-color);
}

/* お問い合わせボタン */
.achievement-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.achievement-button {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  font-weight: bold;
  color: var(--main-color);
  transition: all 0.3s ease;
  background: transparent;
}

.achievement-button:hover {
  background: var(--main-color);
  color: #fff;
}

/* ========== レスポンシブ ========== */
@media (min-width: 768px) {
  .achievement-summary {
    font-size: 20px;
  }
}
