@charset "UTF-8";
.bundle-info {
  flex: 1 0 auto;
  padding: var(--p-5) 0 var(--p-18);
}

.bundle-info__section {
  padding-inline: var(--p-5);
}

.bundle-info__section + .divider,
.divider + .bundle-info__section {
  margin-top: var(--gap-8);
}

.bundle-info__heading {
  font-size: var(--font-size-component-large);
  font-weight: var(--font-weight-bold);
  color: var(--label-normal);
}

.bundle-info__heading + * {
  margin-top: var(--gap-4);
}

.product-choice {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
}

.product-choice__box {
  position: relative;
  display: block;
  padding: var(--p-4) var(--p-5);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  cursor: pointer;
}
.product-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.product-choice__box:hover::before {
  opacity: 0.0375;
}
.product-choice__box:active::before, .product-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.product-choice__box:has(.product-choice__input:checked) {
  border-color: var(--border-box-ultra);
}
.product-choice__box:has(.product-choice__input:checked) .product-choice__name {
  color: var(--label-normal);
  font-weight: var(--font-weight-semibold);
}
.product-choice__box:has(.product-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.product-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.product-choice__name {
  display: block;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-muted);
}

.product-choice__addr {
  display: block;
  margin-top: var(--gap-0-5);
  font-size: var(--font-size-component-small);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}

.product-choice__date {
  display: block;
  margin-top: var(--gap-1);
  font-size: var(--font-size-component-xsmall);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}

.line-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-2);
}

.line-choice__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 var(--p-3);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  color: var(--label-muted);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  text-align: center;
  cursor: pointer;
}
.line-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.line-choice__box:hover::before {
  opacity: 0.0375;
}
.line-choice__box:active::before, .line-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.line-choice__box:has(.line-choice__input:checked) {
  border-color: var(--border-box-ultra);
  color: var(--label-normal);
  font-weight: var(--font-weight-semibold);
}
.line-choice__box:has(.line-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.line-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.bundle-info__summary {
  padding: var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-strong);
}

.bundle-info__notes {
  margin-top: var(--gap-3);
  display: flex;
  flex-direction: column;
  gap: var(--gap-1);
}
.bundle-info__notes li {
  position: relative;
  padding-left: 12px;
  font-size: var(--font-size-component-xsmall);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-soft);
}
.bundle-info__notes li::before {
  content: "·";
  position: absolute;
  left: 3px;
}

.bundle-info .agreement__items .checkbox__label {
  font-weight: var(--font-weight-medium);
}

.bundle-consult {
  margin-top: var(--gap-8);
  padding-inline: var(--p-5);
}

.bundle-consult__box {
  display: flex;
  flex-direction: column;
  gap: var(--gap-4);
  padding: var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-strong);
}

.bundle-consult__item dt {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-soft);
}
.bundle-consult__item dd {
  margin: var(--gap-1) 0 0;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-normal);
}

.bundle-consult__agree {
  margin-top: var(--gap-4);
}

.bundle-done .result__body,
.bundle-unavail .result__body,
.bundle-complete .result__body {
  padding-top: var(--p-20);
}

.bundle-done__banner,
.bundle-done__summary,
.bundle-done .bundle-info__notes {
  width: 100%;
}

.bundle-done__summary,
.bundle-done .bundle-info__notes {
  text-align: left;
}

.bundle-done__banner {
  margin-top: var(--gap-8);
  padding: var(--p-4) var(--p-5);
  border: 1px solid var(--border-line-normal);
  border-radius: var(--rounded-2xl);
  background: var(--state-error-soft);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  color: var(--label-soft);
}

.bundle-done__summary {
  margin-top: var(--gap-8);
  padding: var(--p-4) var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-strong);
}

.bundle-unavail .bundle-info__notes {
  width: 100%;
  text-align: left;
}

.bundle-unavail__reason {
  margin-top: var(--gap-8);
  width: 100%;
  padding: var(--p-4) var(--p-5);
  border: 1px solid var(--border-line-normal);
  border-radius: var(--rounded-2xl);
}

.bundle-unavail__reason-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-2);
  padding-block: var(--p-1);
}
.bundle-unavail__reason-row dt {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-soft);
}
.bundle-unavail__reason-row dd {
  margin: 0;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--brand-red-normal);
  text-align: right;
}

.bundle-unavail__reason + .bundle-unavail__hours {
  margin-top: var(--gap-2);
}

.bundle-terms-table--wide .data-table td {
  width: 200px;
  min-width: 200px;
}

.bundle-terms-table strong {
  font-weight: var(--font-weight-medium);
}