.reserve-modal-check {
  display: none;
}

.reserve-open {
  display: inline-block;
  cursor: pointer;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.reserve-modal-check:checked + .reserve-modal {
  display: block;
}

.reserve-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  cursor: pointer;
}

.reserve-modal__box {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  margin: 8vh auto;
  padding: 36px 30px 32px;
  background: #fff;
  border-radius: 16px;
}

.reserve-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  text-align: center;
  line-height: 34px;
  font-size: 22px;
  cursor: pointer;
}

.reserve-modal__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 24px;
}

.reserve-modal__lead {
  margin: 0 0 24px;
  text-align: center;
}

.reserve-select {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.reserve-select label {
  display: block;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  font-weight: 700;
  cursor: pointer;
}

.reserve-content {
  display: none;
  padding: 22px;
  border-radius: 12px;
  background: #f7fbfd;
}

.reserve-select:has(.reserve-radio-first:checked) ~ .reserve-content--first {
  display: block;
}

.reserve-select:has(.reserve-radio-repeat:checked) ~ .reserve-content--repeat {
  display: block;
}

.reserve-web-btn {
  display: block;
  padding: 15px 20px;
  border-radius: 999px;
  background: #1f8ecb;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.reserve-tel {
  display: block;
  margin: 12px 0;
  color: #1f8ecb;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.reserve-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}