@charset "UTF-8";
a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

pre {
  text-wrap: wrap;
  word-break: break-word;
  font-family: var(--skin-header-font);
  font-size: 100%;
  margin-bottom: 0;
}

#maincontent {
  padding-top: 5.625rem;
  padding-bottom: 8rem;
}

a:hover {
  text-decoration: none;
}

[class*=" xi-"], [class^=xi-] {
  font-size: 1.5rem;
}

body,
.card,
.card-header,
.hero {
  background-color: var(--skin-background-color-1);
  font-family: var(--skin-body-font);
  color: var(--skin-main-text-color-1);
}

.hero {
  border-bottom-color: var(--skin-background-color-1);
}

.main-menu {
  background-color: transparent;
}

.banner-color {
  background-color: var(--skin-banner-background-color-1);
}

.header-banner {
  background-color: var(--skin-banner-background-color-2);
  color: var(--skin-banner-text-color-1);
}

.header-banner .close-button .close {
  background-color: var(--skin-primary-color-1);
}

h1.header.page-title,
h1.header.page-title::before {
  background-color: var(--skin-heading-color-1);
  color: var(--skin-heading-color-1-invert);
}

.product-tile {
  background-color: var(--skin-background-color-1);
  border: 10px solid var(--skin-border-color-1);
}

.refinements ul li button {
  color: var(--skin-primary-color-1);
}

.custom-select {
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--skin-selectbox-background-color-1);
  color: var(--skin-selectbox-text-color-1);
}

a {
  color: var(--skin-link-color-1);
}

.price {
  color: var(--skin-price-1);
}

.dropdown-menu,
.dropdown-menu a,
.navbar,
.navbar .nav-item,
.navbar .nav-item a,
.navbar .nav-item.dropdown,
.navbar .nav-item.dropdown a {
  color: var(--skin-menu-color-1);
}
@media (min-width: 769px) {
  .dropdown-menu,
  .dropdown-menu a,
  .navbar,
  .navbar .nav-item,
  .navbar .nav-item a,
  .navbar .nav-item.dropdown,
  .navbar .nav-item.dropdown a {
    color: var(--custom-color-black);
  }
}

.navbar .nav-item.dropdown,
.navbar .nav-item.dropdown .dropdown-menu.show {
  color: var(--skin-selectbox-text-color-1);
}

.navbar .nav-item.dropdown .dropdown-menu.show {
  background-color: var(--skin-selectbox-background-color-1);
}
.navbar .nav-item.dropdown .dropdown-menu.show a,
.navbar .nav-item.dropdown .dropdown-menu.show .nav-item {
  color: var(--skin-selectbox-text-color-1);
}

.nav-item .nav-link:hover,
.nav-item .nav-link:focus,
.nav-item.show .nav-link {
  background-color: var(--skin-menu-color-1-invert);
  color: var(--skin-menu-color-1) !important;
}

button {
  border: none;
  border-radius: 0.625rem;
}

label:has(input[type=checkbox]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

input[type=checkbox] {
  appearance: none; /* 브라우저 기본 스타일 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../../custom/images/checkbox-uncheck.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background-image: url("../../custom/images/checkbox-checked.svg");
}

label:has(input[type=checkbox]),
input[type=checkbox] ~ label {
  cursor: pointer;
}

.custom-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5rem 0;
  cursor: pointer;
}

[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: max(2px, 0.1em) solid var(--custom-color-gray04);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
  margin-right: 0.5rem;
}

[type=radio]:checked {
  border: 0.3125rem solid var(--custom-primary);
}

textarea {
  width: 100%;
  height: 12.5rem;
  padding: 0.75rem 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--custom-color-gray04);
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-group input:not(input[type=checkbox]) {
  height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--custom-color-gray04);
  background: var(--custom-color-white);
  width: 100%;
}
.form-group input:not(input[type=checkbox]):disabled {
  color: var(--custom-color-gray03);
  border: 1px solid var(--custom-color-gray04);
  background: var(--custom-color-gray05);
}
.form-group .form__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  width: 8rem;
  display: inline-block;
  text-align: left;
  margin: 0.75rem 0;
}
.form-group .form__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-group .form__value.form__value_multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.form-group .custom-file-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.form-group .custom-file-upload .custom-file-name {
  position: relative;
  height: 3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--custom-color-gray04);
  border-radius: 0.25rem;
  overflow: hidden;
}
.form-group .custom-file-upload .custom-file-name::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1rem;
  height: 3rem;
  background-color: var(--custom-color-white);
  z-index: 1;
}
.form-group .custom-file-upload .custom-file-name input[type=file] {
  position: absolute;
  line-height: 1.5rem !important;
  border: 0 !important;
}
.form-group .custom-file-upload .custom-file-name input[type=file]::-webkit-file-upload-button {
  display: none;
}
.form-group .custom-file-upload .custom-file-name input[type=file]::file-selector-button {
  display: none;
}
.form-group .custom-file-upload .custom-file-name:has([disabled]) {
  background-color: var(--custom-color-gray03);
}
.form-group .custom-file-upload .custom-file-name:has([disabled])::before {
  background-color: var(--custom-color-gray03);
}
.form-group .custom-file-upload .btn {
  position: initial;
  line-height: 2.25rem;
  width: 8.4375rem;
}
.form-group .custom-file-upload .btn:after {
  display: none;
}
.form-group .custom-file-preview {
  border: 1px solid var(--custom-color-gray04);
  border-radius: 0.25rem;
  padding: 1rem;
  display: none;
  margin-top: 0.5rem;
}
.form-group .custom-file-preview .image-preview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-group .custom-file-preview li {
  position: relative;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--custom-color-gray04);
  overflow: hidden;
}
.form-group .custom-file-preview li .custom-file-preview__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form-group .custom-file-preview li .custom-file-preview__del {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--custom-primary);
  border-radius: 50%;
  background-color: var(--custom-color-white);
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.form-group .form__file-text {
  font-size: 0.875rem;
  color: var(--custom-color-error);
  margin-top: 0.25rem;
}
.form-group .privacy-form {
  padding-left: 8rem;
  margin-top: 1rem;
}
.form-group.s-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-group:has(:required) .form__label {
  position: relative;
}
.form-group:has(:required) .form__label::after {
  position: absolute;
  top: 0;
  content: "*";
  color: var(--custom-primary);
  margin-left: 0.25rem;
}

.form-group_password .form__value {
  position: relative;
}
.form-group_password .xi-eye, .form-group_password .xi-eye-off {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--custom-color-gray04);
  cursor: pointer;
}
.form-group_password .xi-eye-off {
  display: none;
}
.form-group_password.show .xi-eye {
  display: none;
}
.form-group_password.show .xi-eye-off {
  display: block;
}

.invalid-feedback {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--skin-header-font), sans-serif;
}

header ~ #maincontent .container a:not(.btn-primary, .btn-outline-primary) {
  cursor: pointer;
}

.page__container {
  margin-top: 3.625rem;
}

.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.breadcrumb a {
  font-size: 1rem;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item:not(:first-child) {
  position: relative;
  padding-left: 1rem;
  margin-left: 0.25rem;
}
.breadcrumb .breadcrumb-item::before {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.breadcrumb .breadcrumb-item:last-child a {
  color: var(--custom-primary) !important;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--custom-color-gray04);
  content: ">";
  font-size: 0.75rem;
  font-weight: 400;
}

.container, .col-12 {
  padding: 0;
}
.container .breadcrumb, .col-12 .breadcrumb {
  padding: 1rem 0;
  border-bottom: 0;
}

.modal-background {
  z-index: 3;
}

.wish-button {
  background: none;
  border: none;
  color: var(--custom-color-gray02);
}
.wish-button .xi-heart-o {
  display: block;
}
.wish-button .xi-heart {
  display: none;
  color: #f00;
}
.wish-button.like .xi-heart-o {
  display: none;
}
.wish-button.like .xi-heart {
  display: block;
}

select {
  appearance: none;
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  background-image: url("../../custom/images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 97% 50%;
  padding-right: 2rem;
}

.html-slot-container.brand__banner-img img {
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.html-slot-container.brand__banner-img p:last-child {
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 0;
}

.custom-table {
  width: 100%;
}
.custom-table .text-center {
  text-align: center;
}
.custom-table thead tr {
  border-bottom: 1px solid var(--custom-color-black);
}
.custom-table thead tr th {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  text-align: center;
  padding: 1rem 0.5rem;
}
.custom-table tbody tr {
  border-bottom: 1px solid var(--custom-color-gray05);
}
.custom-table tbody tr td {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
  padding: 1.5rem 0.5rem;
}

.pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: initial;
  margin-top: 1rem;
}
.pagination-wrapper .page-item .page-link {
  line-height: 139%;
  color: var(--custom-color-gray02);
  border: 1px solid var(--custom-color-gray04);
  background: var(--custom-color-white);
}
.pagination-wrapper .page-item .page-link .xi-angle-double-right,
.pagination-wrapper .page-item .page-link .xi-angle-double-left {
  position: relative;
  line-height: 0.5rem;
}
.pagination-wrapper .page-item .page-link .xi-angle-double-right .xi-angle-left:nth-child(2),
.pagination-wrapper .page-item .page-link .xi-angle-double-left .xi-angle-left:nth-child(2) {
  position: absolute;
  left: 0.3rem;
}
.pagination-wrapper .page-item .page-link .xi-angle-double-right .xi-angle-right:nth-child(2),
.pagination-wrapper .page-item .page-link .xi-angle-double-left .xi-angle-right:nth-child(2) {
  position: absolute;
  right: 0.3rem;
}
.pagination-wrapper .page-item .page-link i {
  font-size: 1rem;
}
.pagination-wrapper .page-item .page-link-num {
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
}
.pagination-wrapper .page-item.active .page-link {
  color: var(--custom-color-white) !important;
  background-color: var(--custom-secondary01);
  border-color: var(--custom-secondary01);
}

.custom-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.25rem;
  border-radius: 0.5rem;
  background-color: var(--custom-color-gray03);
}
.custom-tabs .custom-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.custom-tabs .custom-tab button {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: 0;
  color: var(--custom-color-gray02) !important;
  background-color: transparent;
  padding: 0.875rem;
  border-radius: 0.375rem;
}
.custom-tabs .custom-tab.active {
  border: 0;
}
.custom-tabs .custom-tab.active button {
  font-weight: 600;
  color: var(--custom-primary) !important;
  background-color: var(--custom-color-white);
}

.list-option__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.list-option__sort i {
  display: none;
}
.list-option__sort .sort__item {
  position: relative;
}
.list-option__sort .sort__item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1rem;
  background-color: var(--custom-color-gray02);
}
.list-option__sort .sort__item:last-child:after {
  display: none;
}
.list-option__sort button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--custom-color-gray02);
  padding: 0;
}
.list-option__sort button.sort__button--active {
  font-weight: 600;
  color: var(--custom-primary);
}
.list-option__sort button.sort__button--active i {
  display: inline-block;
}

.detail-board__container .board-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--custom-color-black);
}
.detail-board__container .board-header .title-info h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4875rem;
}
.detail-board__container .board-header .title-info span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: var(--custom-color-gray02);
}
.detail-board__container .board-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 162.023%; /* 1.62025rem */
  padding: 2rem 1rem;
}
.detail-board__container .board-footer {
  margin-bottom: 2rem;
}
.detail-board__container .board-footer .board-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-top: 1px solid var(--custom-color-gray03);
}
.detail-board__container .board-footer .board-nav-link .nav-list-dir {
  font-size: 1rem;
  color: var(--custom-color-gray02);
  line-height: 162.023%; /* 1.62025rem */
}
.detail-board__container .back-to-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 17.8125rem;
  height: 3.75rem;
  padding: 0.625rem 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid var(--custom-primary);
  margin: 0 auto 8rem;
}

.contents__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
  height: 35vh;
  color: var(--custom-color-gray02);
}
.contents__empty i {
  font-size: 3rem;
}
.contents__empty p {
  font-size: 1.5rem;
  font-weight: 300;
}

.img__container img, .custom-file-preview__img, .admin__form-upload img {
  cursor: pointer;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
}

.img-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.img-lightbox__content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.img-lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  background: var(--custom-color-white);
}

.img-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: none;
  background: #fff;
  font-size: 20px;
  line-height: 1px;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (min-width: 769px) and (max-width: 991px) {
  .account-dashboard__inner,
  .membership__container .section .section-inner,
  .brand__container,
  .container-wrap,
  .main-section,
  .container,
  .container-fluid,
  .container-xl,
  .container-lg,
  .container-md {
    width: 1000px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .main-section04 {
    overflow-x: hidden;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .col-md-10, .col-md-2 {
    width: initial;
  }
}

@media (max-width: 769px) {
  html {
    font-size: 0.875rem;
    word-break: keep-all;
  }
  #maincontent {
    padding-top: 6.6rem;
    padding-bottom: 5.5rem;
  }
  .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-group .form__label {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
  .wishlist__wish-button img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
/* cellns 공통 스타일 */
/* 화면에서는 숨기고, 스크린리더에는 노출 */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* 키보드 포커스가 오면 화면에 보이게 (선택) */
.sr-only:focus,
.sr-only:active {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  white-space: normal;
}

.contents__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  width: 100%;
  height: 35vh;
  color: var(--custom-secondary-gray02);
}
.contents__empty i {
  font-size: 3.75rem;
  color: var(--custom-color-gray02);
}
.contents__empty p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4875rem;
  color: var(--custom-color-gray02);
}

.page__container {
  margin-top: 3.625rem;
  margin-bottom: 8rem;
}

.page-title {
  padding-top: 3.5rem;
  margin-bottom: 2rem;
}
.page-title .title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.5rem;
  margin-bottom: 1rem;
  line-height: initial;
}
.page-title .title .total-item {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: var(--custom-color-gray02);
}
.page-title .page-header__description {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.625rem;
}

.agreement-list {
  padding: 1rem;
  background-color: var(--custom-color-gray05);
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin-top: 2rem;
}
.agreement-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.agreement-list > li input {
  background-color: var(--custom-color-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.agreement-list > li label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
  cursor: pointer;
  margin-bottom: 0;
}
.agreement-list > li label span {
  color: var(--custom-primary);
}
.agreement-list > li button {
  font-size: 0.75rem;
  color: var(--custom-color-gray02);
  display: block;
  background: none;
  text-decoration: underline;
  padding: 0;
}
.agreement-list > li.agree-all label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
}
.agreement-list > li.agree-terms label {
  width: 100%;
}
.agreement-list > li.agree-terms-contents {
  display: none;
  font-size: 0.75rem;
  line-height: 1.3;
  height: 5rem;
  overflow: auto;
  border: 1px solid var(--custom-color-gray04);
  border-radius: 4px;
  padding: 8px 12px;
  background: var(--custom-color-white);
}
.agreement-list > li.agree-terms-contents article {
  margin-top: 0.5rem;
}
.agreement-list > li.agree-terms-contents.open {
  display: block;
}

.change-info__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0;
  border-radius: 0.25rem;
  background: var(--custom-color-gray01, #2D2D2D);
}
.change-info__tab .checkout__tab {
  color: var(--Gray-custom-color-gray04, #DDD);
  padding-left: 1rem;
  padding-right: 1rem;
}
.change-info__tab .checkout__tab.active {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  position: relative;
  color: var(--Gray-custom-color-white, #FFF);
}
.change-info__tab .checkout__tab.active::after {
  content: "";
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  width: calc(100% - 2rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: var(--custom-color-white);
}
.change-info__tab .checkout__tab:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
