/* ページ全体の設定 */
body {
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* クイズコンテナ */
#quiz-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 20px;
  max-width: 400px;
  width: 90%;
  margin-top: 30px;
}

/* タイトル */
h1 {
  text-align: center;
  color: #333;
}

/* 問題番号 */
#question-number {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 5px;
}

/* 問題文 */
#question {
  font-size: 1.2em;
  margin-bottom: 15px;
}

/* 選択肢ボタン */
.choice {
  background-color: #ffffff;
  border: 2px solid #007bff;
  color: #007bff;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px;
  margin: 8px 0;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.choice:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* フィードバック文 */
#feedback {
  margin-top: 15px;
  font-size: 1em;
  text-align: center;
}

/* ボタン（次へ、再挑戦） */
button {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  font-size: 1em;
}
button:hover {
  background: #218838;
}

/* スコア履歴 */
#score-history-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 20px;
  max-width: 400px;
  width: 90%;
  margin: 20px 0 30px;
}
#score-history-container h2 {
  text-align: center;
  margin-bottom: 10px;
}
#score-history {
  list-style: none;
  padding: 0;
}
#score-history li {
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  text-align: center;
  font-size: 0.9em;
}
