/* ===== 全体レイアウト ===== */
body {
  font-family: system-ui;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto; /* ✅ これで中央寄せ */
  text-align: center; /* ✅ コンテンツ中央揃え */
  background-color: #ffffff;
}

/* ===== 見出し ===== */
h1 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* ===== コントロール部分 ===== */
.control {
  margin: 12px 0;
  text-align: left; /* ✅ ラベルなどを左寄せで自然に見せる */
}

/* ===== ラベルとスライダー ===== */
label {
  display: block;
  margin-bottom: 4px;
}

input[type="range"] {
  width: 100%;
}

/* ===== ボタン ===== */
button {
  margin: 6px 4px;
  padding: 8px 14px;
  border: 1px solid #888;
  border-radius: 6px;
  cursor: pointer;
  background-color: #fff;
  transition: background 0.2s ease;
}

button:hover {
  background: #f0f0f0;
}

/* ===== スコア・結果表示 ===== */
#quizResult {
  font-weight: bold;
  margin-top: 10px;
}

#scoreBoard {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ===== 結果ボックス ===== */
#result {
  margin-top: 20px;
  background: #eef2ff;
  border-radius: 8px;
  padding: 15px;
}

/* ===== フィードバック ===== */
#feedback p {
  margin: 4px 0;
}

/* ===== ADSRキャンバス ===== */
#adsrCanvas {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto; /* ✅ キャンバスも中央に配置 */
}

.back-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #e2e8f0;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.back-button:hover {
  background-color: #cbd5e1;
}

