/* ========================
   全体設定
   ========================= */
body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: #f7f9fc;
  color: #222;
  margin: 0;
  padding: 20px;
}
h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
/* それぞれの項目ブロック */
.section {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* 設定の題名文字 */
.notice {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}
/* 小さめの文字 */
.level1 {
  font-size: 13px;
  color: #444;
  margin: 4px 0;
}
/* ラジオボタン全般 */
.radioButton label {
  display: block; /* 縦並びにする */
  margin-bottom: 5px;
  font-size: 16px;
}
/* ラジオボタン全般 */
input[type="radio"] {
  vertical-align: middle;
  margin-right: 3px; /* ボタンとテキストの間隔 */
}


/* ========================
   通知曜日
   ========================= */
.days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chipDays {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d0d7e2;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.chipDays.active {
  background: #2b8cff;
  color: #fff;
  border-color: #2b8cff;
  box-shadow: 0 2px 5px rgba(43, 140, 255, 0.4);
}