@charset "UTF-8";

/* ============================================================
   Reservation Sheet — 모바일: 바텀시트 / 데스크톱: sticky 사이드바
   ============================================================ */
.reservation-guide {
  padding: 8px 12px;
  border-radius: 12px;
  background: #eaf1f7;
  color: #284968;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
  margin-top: 0.6rem;
  word-break: break-all;
}
.reservation-guide.red {
  color: #f00;
  background: #fff4f0;
}
.essential {
  color: #ed1438;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}
.reservation-sheet {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

/* 모바일: 화면 하단에서 슬라이드업되는 풀스크린 바텀시트 (기본 숨김) */
.reservation-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  max-height: 80vh;
  max-height: 80vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--easing-out);
}
.reservation-sheet.is-open {
  transform: translateY(0);
}

.reservation-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 0;
}
.reservation-sheet__close {
  width: 100%;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.reservation-sheet__close::before {
  content: '';
  display: flex;
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: #dfe0e3;
  margin: 0 auto;
}
.reservation-sheet__text-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1.6rem;
}
.reservation-sheet__title {
  color: #2a2f38;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
.reservation-sheet__desc {
  color: #2a2f38;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}
.reservation-sheet__nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.reservation-sheet__nav .item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #80858b;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
  width: 100%;
  gap: 0.4rem;
  border-bottom: 1px solid #d5d7db;
  padding-bottom: 1rem;
}
.reservation-sheet__nav .item.active {
  color: #ed1438;
  border-bottom: 2px solid #ed1438;
}

.reservation-sheet__num {
  display: flex;
  width: 18px;
  height: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  aspect-ratio: 1/1;
  border-radius: 99px;
  background: #f0f2f5;
  color: #80858b;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}
.reservation-sheet__nav .item.active .reservation-sheet__num {
  background: #ed1438;
  color: #fff;
}

.reservation-sheet__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem var(--spacing-md);
  --step-scroll-offset: 2rem;
  scroll-padding-top: var(--step-scroll-offset);
}

.reservation-sheet__footer {
  flex-shrink: 0;
  padding: var(--spacing-sm) var(--spacing-md);
  padding-bottom: calc(var(--spacing-sm) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--color-border-primary);
  background: var(--color-white);
}
.reservation-sheet__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
}
.reservation-sheet__summary-name {
  font-size: var(--font-size-level-5);
  font-weight: var(--font-weight-bold);
}
.reservation-sheet__summary-price {
  font-size: var(--font-size-level-4);
  color: var(--color-text-secondary);
}
.reservation-sheet__summary-price strong {
  font-size: var(--font-size-level-3);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}
#summary-total-price-btn {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.validation-anchor {
  position: relative;
}

.field-error {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 20;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 8px;
  pointer-events: none;
  border-radius: 4px;
  background: #2a2f38;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
  white-space: normal;
}

.field-error::before {
  content: '⚠';
  margin-right: 4px;
  color: #ffc224;
}

.field-error::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 100%;
  border: 5px solid transparent;
  border-bottom-color: #2a2f38;
}

.cost-calc__row > .field-error {
  top: calc(100% - -2px);
  left: 40%;
  max-width: 60%;
}

.consent-item-validation-anchor.validation-anchor > .field-error {
  top: -6px;
  left: 10px;
  max-width: calc(100% - 32px);
}

.consent-each input[type='checkbox'][aria-invalid='true'] + .checkbox__control {
  /*border-color: #ed1438;*/
}

.phone-field.validation-anchor > .field-error {
  left: calc(8rem + 8px);
  max-width: calc(100% - 8rem - 8px);
}

[aria-invalid='true'] {
  /*border-color: #ed1438;*/
}
.reservation-sheet__kakao-note {
  text-align: left;
  margin-top: var(--spacing-sm);
}

/* 배경 딤 처리 (모바일 바텀시트 오픈 시) */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--easing-out);
}
.sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* 모바일 하단 고정 CTA */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: var(--spacing-sm) var(--spacing-md);
  padding-bottom: calc(var(--spacing-sm) + env(safe-area-inset-bottom));
  background: var(--color-white);
  border-top: 1px solid var(--color-border-primary);
}

/* ============================================================
   데스크톱(≥1024px): sticky 사이드바로 전환, 모바일 전용 UI 숨김
   ============================================================ */
@media (min-width: 1024px) {
  .reservation-sheet {
    position: sticky;
    top: var(--site-header-height);
    z-index: 10;
    /*top: calc(64px + var(--spacing-xl));*/
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    /*max-height: calc(100vh - 64px - var(--spacing-xl) * 2);*/
    max-height: calc(100vh - var(--site-header-height));
    /*max-height: 100vh;*/
    border: 1px solid var(--color-border-primary);
    border-radius: 0;
    /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);*/
    box-shadow: none;
  }
  .reservation-sheet__header {
    padding-top: 2.3rem;
  }
  .reservation-sheet__close {
    display: none;
  }
  .mobile-cta-bar,
  .sheet-backdrop {
    display: none;
  }
}

/* ============================================================
   STEP 블록
   ============================================================ */
.step-block {
  padding: 0 0 2rem;
}
.step-block:last-child {
  border-bottom: none;
  padding: 0;
}
.step-num {
  color: #2a2f38;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  display: inline-flex;
  height: 20px;
  padding: 0 7px;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 4px;
  border-radius: 99px;
  background: #f0f2f5;
}
.step-block__title {
  color: #2a2f38;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 21px */
  letter-spacing: -0.375px;
}
.step-block__desc {
  color: #80858b;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;

  margin-top: 0.8rem;
}
.step-block__subtitle {
  color: #2a2f38;
  font-size: 15px;
  font-weight: 700;
  line-height: 140%; /* 21px */
  letter-spacing: -0.375px;
  margin-top: 1.2rem;
}
.field__info {
  color: #80858b;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
}
.field__info_red {
  display: block;
  color: #ed1438;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  margin-top: 0.6rem;
}
.branch-placeholder {
  color: var(--color-text-secondary);
  text-align: center;
  font-size: var(--font-size-level-4);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  letter-spacing: -0.35px;

  display: flex;
  height: 200px;
  justify-content: center;
  align-items: center;
  align-self: stretch;

  border-radius: 12px;
  border: 1px solid #e9e9e9;
}
.guidance-results[hidden] {
  display: none;
}

/* ============================================================
   썬팅 상품(STEP1)
   ============================================================ */

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
/*
	이미지 파일과 코드작성의 리소스 참조
	이미지 파일 단일 파일하나만 있으면됨.
	코드 하단 style 작성후 tag, class 지정, 위치 지정 해주어야됨.
*/
.product-tip {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border-radius: 99px;
  background: #80858b;
  color: #fff;
  width: 16px;
  height: 16px;
  font-size: 10px;
}

.info-dialog {
  width: min(calc(100% - 3.2rem), 31.2rem);
  max-height: calc(100dvh - 3.2rem);
  margin: auto;
  padding: 1.6rem 1.6rem 2rem;
  overflow-y: auto;
  border: 0;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  color: #2a2f38;
}

.info-dialog::backdrop {
  background: rgba(19, 23, 32, 0.56);
}

.info-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #d5d7db;
}

.info-dialog__title {
  color: #2a2f38;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.info-dialog__close {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: -0.4rem;
}

.info-dialog__close::before,
.info-dialog__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 1px;
  background: #2a2f38;
}

.info-dialog__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.info-dialog__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.info-dialog__notice {
  margin-top: 1.6rem;
  color: #d11938;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
  word-break: break-word;
}

.info-dialog__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.6rem;
  padding: 1.6rem 1rem;
  border-radius: 1.2rem;
  background: #f5f6f8;
}

.info-dialog__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
}

.info-dialog__list li::before {
  content: '';
  position: absolute;
  top: 0.85rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
}

.info-dialog__list--plain {
  gap: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.info-dialog__list--plain li {
  padding: 0.8rem 0 0;
  color: #696e77;
  line-height: 1.4;
}
.info-dialog__list--plain li:last-child {
  padding: 0.8rem 0 0.8rem;
}

.info-dialog__list--plain li::before {
  display: none;
}

.info-dialog__list--plain + .info-dialog__footnote {
  margin-top: 0;
  padding-top: 1.6rem;
  border-top: 1px solid #d5d7db;
}

.info-dialog__footnote {
  margin-top: 0.8rem;
  color: #80858b;
  font-size: 1.2rem;
  line-height: 1.4;
}

.info-dialog__intro {
  margin-top: 0.8rem;
  color: #80858b;
  font-size: 1.2rem;
  line-height: 1.4;
  white-space: pre-line;
}

.info-dialog__media-list {
  display: flex;
  flex-direction: column;
}

.info-dialog__media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid #edeff2;
}

.info-dialog--image-list .info-dialog__media-item:not(:last-child) {
  /*border-bottom-color: #d5d7db;*/
}

.info-dialog__media-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-dialog__media-title {
  color: #2a2f38;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}

.info-dialog__media-description {
  color: #80858b;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}

.info-dialog__media-image {
  display: block;
  max-width: 20rem;
  /*width: 100%;*/
  /*height: 10rem;*/
  /*margin-top: 1.2rem;*/
  object-fit: cover;
  border-radius: 0.8rem;
  /*background: #f5f6f8;*/
}

.info-dialog--sunroof .info-dialog__header,
.info-dialog--rear-window-bubble .info-dialog__header {
  border-bottom: none;
}
.info-dialog--sunroof .info-dialog__intro,
.info-dialog--rear-window-bubble .info-dialog__intro {
  margin: 0;
}
.info-dialog--rear-window-bubble .info-dialog__media-item {
  align-items: flex-start;
}

.info-dialog--rear-window-bubble .info-dialog__media-image {
  margin: 0.4rem auto 0;
  max-width: 100%;
}
.product-card {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition:
    border-color var(--duration-fast) var(--easing-out),
    box-shadow var(--duration-fast) var(--easing-out);
  background-color: var(--color-white);
  -webkit-tap-highlight-color: transparent;
}

.product-card__click-area {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product-card__tag {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.product-card__tag span {
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}
.product-card__tag .basic {
  color: #f06633;
}
.product-card__tag .standard {
  color: #ed1438;
}
.product-card__tag .premium {
  color: #4440b2;
}
.product-card__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__middle .product-card__title {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.product-name {
  color: #2a2f38;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.45px;
}
.product-card__prices {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-card__sale-discount {
  color: #ed1438;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;

  padding: 0 2px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff3a8;
}
.product-card__sale-amount {
  color: #2a2f38;
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  line-height: 140%; /* 21px */
  letter-spacing: -0.375px;
}
.product-card__sale-amount .price {
  color: #2a2f38;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.45px;
}

.product-card__desc {
  color: #696e77;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  white-space: pre-line;
  letter-spacing: -0.325px;
  margin-top: 0.4rem;
}

/* 선택 상태: :has() 활용 */
.product-card:has(.product-card__input:checked) {
  border-color: var(--color-primary);
}
/*
.product-card:has(.product-card__input:checked) .product-name,
.product-card:has(.product-card__input:checked) .product-card__sale-label,
.product-card:has(.product-card__input:checked) .product-card__sale-amount {
	color: var(--color-primary);
}*/

/* ============================================================
   약관 아코디언 (STEP2)
   ============================================================ */

.reservation-sheet .region-select-group {
  display: flex;
  gap: 0.6rem;
  flex-direction: row;
  margin-top: 0.6rem;
}
.region-select-wrap {
  flex: 1;
  min-width: 0;
}
.region-select:focus {
  /*border-color: var(--color-primary);*/
}

#reservation-sheet .region-select {
  width: 100%;
  height: 40px;
  padding: 0 var(--spacing-xxl) 0 var(--spacing-smxl);
  border: 1px solid var(--color-border-tertiary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-level-4);
  font-family: inherit;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4L6 8L2 4' stroke='%232A2F38' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4L6 8L2 4' stroke='black' stroke-opacity='0.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--spacing-smxl) center;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--easing-out);
}

#reservation-sheet .region-select:disabled,
.region-select:disabled {
  background-color: var(--color-bg-primary);
  color: var(--color-text-tertiary-light);
  cursor: not-allowed;
}
.time-slot-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.time-slot-list > div {
  position: relative;
}

.time-slot-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--color-border-tertiary);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  transition:
    border-color var(--duration-fast) var(--easing-out),
    background-color var(--duration-fast) var(--easing-out);
  -webkit-tap-highlight-color: transparent;
}
.time-slot-btn__input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.time-slot-btn__input:disabled {
  cursor: not-allowed;
}

.time-slot-btn__input:focus-visible + .time-slot-btn {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
/* ============================================================
   약관 아코디언 (STEP3)
   ============================================================ */
.branch-list-wrap {
  min-height: 200px;
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;

  border-radius: 12px;
  border: 1px solid #e9e9e9;
  margin-top: 0.6rem;
}
.branch-list {
  display: flex;
  flex-direction: column;
  /*gap: 6px;*/
  padding: 0;
  position: relative;
}
.branch-list li:last-child {
  margin-bottom: var(--spacing-sm);
}

.guidance-results {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  align-items: center;
  gap: 8px;

  color: #80858b;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  text-align: center;
  white-space: pre-line;
}

.branch-card {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e9e9e9;
  text-align: left;
  background-color: var(--color-white);
  transition:
    border-color var(--duration-fast) var(--easing-out),
    box-shadow var(--duration-fast) var(--easing-out);
  -webkit-tap-highlight-color: transparent;
  gap: var(--spacing-smxl);
}
.branch-card__map {
  min-width: 3.6rem;
}
.branch-card__name {
  color: #2a2f38;
  font-size: 13px;
  font-weight: 600;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
  display: block;
}

.branch-card__address {
  color: #80858b;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}
.branch-card .selected-icon {
  margin-left: auto;
  flex-shrink: 0;
}
.branch-card__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}
/*.branch-list input:checked + .branch-card {
	border-color: var(--color-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}*/
.branch-list input:checked + .branch-card .selected-icon > svg path:first-child {
  color: var(--color-primary);
}
.branch-card .selected-icon > svg path:first-child {
  color: #d5d7db;
}

/* ============================================================
   약관 아코디언 (STEP4)
   ============================================================ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field__input {
  width: 100%;
  height: 4rem;
  padding: 0 var(--spacing-md);
  border: 1px solid var(--color-border-tertiary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-level-4);
  color: var(--color-text-primary);
  background-color: var(--color-white);
  transition: border-color var(--duration-fast) var(--easing-out);
}
.form-field:last-child {
  margin-bottom: 0;
}
.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-field__prefix {
  /*flex: 1;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 8rem;
  height: 4rem;
  padding: 0 1.6rem;
  border: 1px solid var(--color-border-tertiary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-level-4);
  color: var(--color-text-primary);
  background-color: #edeff2;
  min-width: 52px;
  line-height: 140%; /* 19.6px */
  font-weight: 400;
  letter-spacing: -0.35px;
}

.reservation--result {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.4rem;
  margin-top: 2rem;
}
.reservation--result hr {
  height: 1px;
  background: #2a2f38;
  margin: 0.8rem 0;
}
.reservation--result-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.reservation--result-row[hidden] {
  display: none;
}
.reservation--result-name {
  color: #696e77;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
}
.reservation--result-price {
  color: #696e77;
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
}
.reservation--result-notice {
  color: #696e77;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
}
.reservation--result-label {
  color: #2a2f38;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
.reservation--result-total {
  color: #ed1438;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}

.section--consent {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-radius: 11px;
  border: 1px solid #e9e9e9;
  overflow: hidden;
}
.consent-all {
  align-self: stretch;
  border-bottom: 1px solid #e9e9e9;
  background: #f6f7f9;
}
.consent-all,
.consent-each,
.consent-detail__body {
  padding: 12px 16px;
}

.checkbox {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.consent-items {
  flex-direction: column;
}

.consent-items__item {
  display: flex;
  width: 100%;
}
.consent-items__item--detail {
  position: relative;
  display: block;
  border-bottom: 1px solid #e9e9e9;
}
.consent-items__item--detail:last-child {
  border: none;
}
.consent-items__item--detail > .checkbox {
  display: flex;
  width: 100%;
  padding-right: 3.2rem;
}

.consent-detail {
  width: 100%;
}
.consent-detail summary {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  list-style: none;
}
.consent-detail summary::-webkit-details-marker {
  display: none;
}
.consent-detail__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: url('/resources/sunshield2/img/main/icon_plus.svg') center / contain no-repeat;
}
.consent-detail[open] .consent-detail__arrow {
  background-image: url('/resources/sunshield2/img/main/icon_minus.svg');
}

.consent-detail__body {
  border-top: 1px dashed #e9e9e9;
}
.checkbox__label {
  font-size: var(--font-size-level-4);
  color: var(--color-text-primary);
  margin-left: 0.8rem;
  line-height: var(--line-height-normal);
  cursor: pointer;
  transition: color var(--duration-fast) var(--easing-out);
}

.consent-item__list__title {
  color: #2a2f38;
  font-size: 13px;
  font-weight: 700;
  line-height: 140%; /* 18.2px */
  letter-spacing: -0.325px;
  margin-top: 0.8rem;
}
.consent-item__list__title:first-child {
  margin-top: 0;
}
.consent-item__list.custom {
  margin-top: 0.8rem;
  gap: 6px;
  position: relative;
  padding-left: 1rem;
}

.consent-item__list-item {
  display: block;
  color: #696e77;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  word-break: break-all;
}
.consent-item__list-item > .red {
  color: #ed1438;
}
.consent-item__list-item::before {
  content: '• ';
}
.consent-item__list.custom .consent-item__list-item::before {
  position: absolute;
  left: 0;
}
