/* Lab06固有のスタイル */
/* ルールポップアップ用のスタイル */
#rulePopup .popup-content {
  line-height: 1.8;
  margin-left: 8px;
  margin-right: 8px;
  max-width: 600px;
}
#rulePopup .popup-content h2 {
  margin-bottom: 16px;
  font-size: 1.5em;
}
#rulePopup .popup-content p {
  margin-bottom: 12px;
  text-align: left;
}
#rulePopup button {
  font-size: 1.15em;
  padding: 10px 32px;
  border-radius: 6px;
  background: #888;
  color: #fff;
  border: none;
  margin-top: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
#rulePopup button:hover {
  background: #444;
}

/* ルールを再度見るボタンのスタイル */
#showRuleBtn {
  font-size: 1em;
  padding: 10px 24px;
  border-radius: 6px;
  background: #666;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
  font-family: 'BIZ UDPGothic', 'Segoe UI', 'Meiryo', sans-serif;
}
#showRuleBtn:hover {
  background: #444;
}

