/* ==============================================
   result-card.css
   診断結果カードデザイン
   ============================================== */

.result-container {
  margin-top: 30px;
}

.result-card {
  background: #ffffff;
  border-left: 6px solid #00a6a6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.result-card h3 {
  color: #008080;
  margin-bottom: 10px;
}

.result-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.result-summary {
  text-align: center;
  background: #e8ffff;
  border-radius: 10px;
  padding: 25px 15px;
  font-size: 1.1rem;
  margin-top: 40px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.result-summary strong {
  color: #007c88;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .result-card {
    padding: 15px;
  }
  .result-summary {
    font-size: 1rem;
    padding: 20px;
  }
}