h1 {
  font-size: 2rem;
  margin-bottom: 5px; /* 0よりは少し空ける */
  line-height: 1.3;
}

p {
  margin-top: 0;
  line-height: 1.3;
}

#game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

#question-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}

#countdown-area {
  font-size: 3em; /* ← 文字の大きさを指定（3emは親要素の3倍の大きさ） */
  font-weight: bold; /* ← 文字を太字にする */
  text-align: center; /* ← 中央揃えにする */
  margin: 20px 0; /* ← 上下の余白を調整 */
}

/* 問題表示の細かいレイアウト */
.q-label {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.q-problem {
  font-size: 2.5rem;
}

input#answer {
  font-size: 2rem;
  width: 120px;
  height: 60px;
  text-align: center;
  box-sizing: border-box;
  margin: 0; /* 余白をリセット */
  vertical-align: middle; /* 中央揃え補助 */
}



/* スコアとタイマー */
#score,
#timer {
  font-size: 1.3rem;
  margin-top: 10px;
}
