/* 区分ごと準備・リハーサル／本番選択版の追加スタイル */

.variant-banner {
  background: #eef4e6;
  border-bottom: 1px solid #c5d6a8;
  padding: 10px 16px;
  text-align: center;
}
.variant-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #3a5219;
  line-height: 1.5;
}
.variant-banner a {
  color: #4a6921;
  font-weight: 700;
  text-decoration: underline;
}

.slot-block {
  margin-bottom: 24px;
}
.slot-block__lead {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.range-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.range-item {
  b order: 1px solid #f0f0f0;
  b order-radius: 10px;
  background: #fff;
  padding: 14px 16px;
}
.range-item.is-disabled {
  opacity: 0.55;
  background: #f5f5f5;
}
.range-item.is-disabled .range-option {
  cursor: not-allowed;
}
.range-item__title {
  margin: 0 0 12px;
  font-size: 20px;
    transform:rotate(0.03deg);
  color: #222;
}
.range-item__title small {
  margin-left: 8px;
  font-weight: 400;
  color: var(--muted, #666);
  font-size: 16px;
}
.range-item__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.range-option {
	width:100%;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 10px 12px;
	border: 3px solid #f0f0f0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
    transform:rotate(0.03deg);
	background: #fafafa;
}

.range-option:has(input[value="rehearsal"]:checked) {
	border-color: #c4a35a;
	background: #eee5d1;
	font-weight: 500;
}

.range-option:has(input[value="main"]:checked) {
	border-color: #597E2D;
	background: #dfefcb;
	font-weight: 500;
}

.range-option input[value="rehearsal"] {
	accent-color: #5a4b29;
}
.range-option input[value="main"] {
	accent-color: #405B21;
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: -5px 0 7px;
  font-size: 0.8rem;
  color: var(--muted);
}
@media screen and (max-width: 680px) {
  .slot-legend {
    gap: 8px;
  }
}


.slot-legend__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 2px;
  vertical-align: -1px;
}
.slot-legend__item--main::before {
  background: #597E2D;
}
.slot-legend__item--rehearsal::before {
  background: #c4a35a;
}

#slotRangeList.group-error {
  outline: 2px solid #c04040;
  outline-offset: 4px;
  border-radius: 8px;
}
