@charset "UTF-8";
.pc-wrap {
  position: relative;
  margin: 0 auto;
  width: 1440px;
  padding: 0 12px;
}

.ee-contents {
  min-width: 1440px;
  margin: 0 auto;
  padding-bottom: 120px;
  box-sizing: border-box;
}

.ee-contents {
  --header-height: 75px;
  --header-height-slim: 75px;
  --visible-header-height: 75px;
}
.jaju-header ~ .ee-contents {
  --header-height: 106px;
  --header-height-slim: 106px;
  --visible-header-height: 106px;
}
.jaju-header.has-banner ~ .ee-contents {
  --header-height: 206px;
  --header-height-slim: 206px;
  --visible-header-height: 206px;
}

body.overflow-hidden {
  overflow: hidden;
  padding-right: 6px;
  width: 100%;
  box-sizing: border-box;
}

.ee_loading {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7) url(../image/loading.gif) 50% 50%/30px 30px no-repeat;
  z-index: 5000;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
}

.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scroll::-webkit-scrollbar {
  display: none;
}

.word-break-break {
  word-break: break-all;
}

.replace-text {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.gold {
  color: #d99c63;
}

.hidden {
  display: none;
}

.popup-bg {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 145;
  background-color: rgba(0, 0, 0, 0.64);
  opacity: 0;
  transition: opacity 1s;
}
.popup-bg.active {
  opacity: 1;
  display: block;
}
.popup-bg.lower {
  z-index: 110;
}

.siv-popup,
.toast,
.popup-mini {
  display: none;
}
.siv-popup.active,
.toast.active,
.popup-mini.active {
  display: block;
}

.toast-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 328px;
  background: rgba(0, 0, 0, 0.75);
  padding: 12px 24px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.toast-message.active {
  color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: fadeinout;
  animation-name: fadeinout;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.siv-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 396px;
  height: 780px;
  max-height: 90vh;
  background: #fff;
  box-sizing: border-box;
  z-index: 150;
  overflow-x: hidden;
  overflow-y: auto;
}
.siv-popup::-webkit-scrollbar, .siv-popup::-webkit-scrollbar-thumb, .siv-popup::-webkit-scrollbar-track {
  display: none;
}
.siv-popup.fixed {
  padding-bottom: 0;
}
.siv-popup .input-reset {
  position: absolute;
  top: 24px;
  right: 12px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-16-px-thin-close.svg) no-repeat center/cover;
  z-index: 2;
}
.siv-popup .size_button {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #a0a0a0;
  text-decoration: underline;
}
.siv-popup .product__item {
  transform: translateZ(0);
}

.popup {
  /** 툴팁 팝업 **/
}
.popup__content {
  left: 0;
  width: 100%;
  padding: 0 34px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
}
.popup__content::-webkit-scrollbar, .popup__content::-webkit-scrollbar-thumb, .popup__content::-webkit-scrollbar-track {
  display: none;
}
.popup__content.no-padding {
  padding: 0;
}
.popup__content.type-1 {
  padding: 0 20px;
}
.popup__content.type-2 {
  padding: 0;
}
.popup__content.popup_padding {
  padding: 20px 20px 28px;
}
.popup-big {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  padding: 60px 48px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 150;
}
.popup-mini {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 311px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 150;
}
.popup-mini .header-popup {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  padding: 0;
  margin: 0 20px;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.popup-mini .header-popup.no-title {
  border: 0;
}
.popup-mini .header-popup__btn.close {
  width: 20px;
  height: 20px;
  top: auto;
  right: 0;
  background: url(../image/icon_close_black.svg) no-repeat center/cover;
}
.popup-mini .header-popup__title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: left;
}
.popup-mini__text {
  padding: 32px 20px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  color: #131922;
  text-align: center;
  word-break: keep-all;
}
.popup-mini__text .bold {
  font-weight: bold;
}
.popup-mini__text .text {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: bold;
}
.popup-mini__text .title {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
.popup-mini__text.type-2 {
  margin: 0 0 8px 0;
  text-align: left;
}
.popup-mini__text em {
  color: #d99c63;
  font-weight: bold;
}
.popup-mini__btns {
  display: flex;
}
.popup-mini__btns button,
.popup-mini__btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 48px;
  font-size: 14px;
  color: #fff;
}
.popup-mini__btns button.black,
.popup-mini__btns a.black {
  background-color: #131922;
}
.popup-mini__btns button.gray,
.popup-mini__btns a.gray {
  background-color: #929292;
}
.popup-mini__guide {
  padding: 0 20px;
}
.popup-mini__guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
.popup-mini__guide-title {
  width: 235px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.popup-mini__guide-close {
  width: 20px;
  height: 20px;
  background: url(../image/05-icon-32-px-thin-close.svg) no-repeat center/cover;
}
.popup-mini__guide-header.center {
  position: relative;
  display: block;
}
.popup-mini__guide-header.center .popup-mini__guide-title {
  position: absolute;
  z-index: 1;
  display: flex;
  width: calc(100% - 40px);
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-mini__guide-header.center .popup-mini__guide-close {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.popup-mini__guide-content {
  margin: 20px 0 28px;
}
.popup-mini__guide-text {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #131922;
}
.popup-mini__guide-text.interval {
  margin-bottom: 16px;
}
.popup-mini__guide-info {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  text-align: center;
  background-color: #f8f8f8;
}
.popup-mini__guide-info-2 {
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.popup-mini__guide-gifts img {
  width: 100%;
}
.popup-mini__guide-gifts-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-mini__guide.gifts .popup-mini__guide-header {
  border: 0;
}
.popup-mini__guide.gifts .popup-mini__guide-content {
  margin-top: 0;
}
.popup-mini__description {
  position: relative;
  padding: 0 0 8px 10.2px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.popup-mini__description::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  background-color: #404040;
}
.popup-mini__description:last-child {
  padding-bottom: 0;
}
.popup-mini__description.type-2 {
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.popup-mini__description.type-2::before {
  content: "";
  background-color: #929292;
}
.popup-mini__description .gray622 {
  color: #929292;
}
.popup-mini__description.gray700 {
  color: #787878;
}
.popup-mini__description.gray700::before {
  background-color: #929292;
}
.popup-mini__data {
  height: 158px;
  margin-top: 16px;
  background-color: #f8f8f8;
}
.popup-mini__discount-detail-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #131922;
}
.popup-mini__discount-detail-price.original {
  margin-bottom: 12px;
}
.popup-mini__discount-detail-price.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #a0a0a0;
  box-sizing: border-box;
}
.popup-mini__discount-detail-price.total .weight {
  font-weight: 500;
}
.popup-mini__discount-detail-price.total span {
  font-weight: bold;
}
.popup-mini__discount-detail-price.total b {
  font-size: 18px;
  line-height: 24px;
}
.popup-mini__change-option {
  width: 395px;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-mini__change-option .header-popup {
  border: none;
  margin: 20px 24px 0 24px;
}
.popup-mini__change-option .header-popup__title {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #131922;
}
.popup-mini__change-option .header-popup__btn.close {
  top: 14px;
  width: 24px;
  height: 24px;
}
.popup-mini__change-option .p-change-option__product {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
  padding: 16px;
  margin-bottom: 30px;
  background-color: #f8f8f8;
}
.popup-mini__change-option .p-change-option__name {
  font-size: 14px;
  line-height: 20px;
  color: #141a23;
}
.popup-mini__change-option .p-change-option__main-option {
  font-weight: bold;
  font-size: 12px;
  color: #404040;
}
.popup-mini__change-option .p-change-option__option {
  display: flex;
  flex-flow: column wrap;
}
.popup-mini__change-option .p-change-option__option li {
  font-size: 12px;
  color: #787878;
}
.popup-mini__change-option .p-change-option__message {
  font-size: 14px;
  line-height: 20px;
  color: #DB3C3C;
}
.popup-mini__change-option .p-change-option__list {
  margin-bottom: 28px;
}
.popup-mini__change-option .p-change-option__item {
  display: flex;
}
.popup-mini__change-option .p-change-option__item:not(:last-of-type) {
  margin-bottom: 16px;
}
.popup-mini__change-option .p-change-option__item--options .p-change-option__h3 {
  padding-top: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.popup-mini__change-option .p-change-option__item--options .siv-selectbox:not(:first-of-type) {
  margin-top: 8px;
}
.popup-mini__change-option .p-change-option__item--options + .p-change-option__item--options {
  margin-top: -11px;
}
.popup-mini__change-option .p-change-option__th {
  width: 57px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  padding-top: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: #404040;
}
.popup-mini__change-option .p-change-option__td {
  width: calc(100% - 57px);
}
.popup-mini__change-option .p-change-option__td .siv-colorchip__text {
  margin-top: 16px;
  float: right;
}
.popup-mini__change-option .p-change-option__td .siv-colorchip__text::after {
  content: "";
  display: block;
  clear: both;
}
.popup-mini__change-option .p-change-option__h3 {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-mini__change-option .p-change-option__h3 ~ .p-change-option__item:not(:last-of-type) {
  margin-bottom: 24px;
}
.popup-mini__change-option .p-change-option .siv-colorchip {
  gap: 8px 4px;
}
.popup-mini__change-option .p-change-option .form-amount {
  margin-bottom: 20px;
}
.popup-mini__change-option .p-change-option__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.popup-mini__change-option .p-change-option__total p:nth-of-type(1) {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  color: #404040;
}
.popup-mini__change-option .p-change-option__total p:nth-of-type(2) {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-mini__change-option .p-change-option__total p:nth-of-type(2) b {
  font-size: 24px;
  margin-right: 2px;
}
.popup-mini__change-option .p-change-option .btn-wrap {
  display: flex;
  margin-top: 32px;
  padding: 20px 0 34px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #fff;
}
.popup-mini__change-option .p-change-option .btn-wrap button {
  height: 56px;
  font-size: 16px;
}
.popup-mini__change-option .p-change-option .btn-wrap .hidden {
  display: none;
}
.popup-mini__img {
  display: flex;
  justify-content: space-between;
  margin: 24px 0 16px;
}
.popup-mini__img-product {
  width: 131px;
}
.popup-mini__img-product img {
  width: 100%;
  height: 131px;
}
.popup-mini__img-product p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #131922;
  text-align: center;
}
.popup-mini-app-guide {
  width: 500px;
}
.popup-mini-app-guide .popup-mini__guide {
  padding: 0;
}
.popup-mini-app-guide .popup-mini__guide-header {
  margin: 0 20px;
}
.popup-mini-app-guide .popup-mini__guide-content {
  margin: 0;
}
.popup-mini__app-list {
  margin: 28px 20px 20px 28px;
  display: flex;
  gap: 24px;
}
.popup-mini__app-item img {
  width: 95px;
}
.popup-mini__app-title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  font-weight: bold;
}
.popup-mini__app-text {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.popup-mini__app-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 40px 28px 42px;
  background-color: #f8f8f8;
}
.popup-mini__app-form p {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: #000;
}
.popup-mini__app-flex {
  display: flex;
  gap: 8px;
}
.popup-mini__app-flex .siv-selectbox {
  width: 96px;
}
.popup-mini__app-flex .form_input {
  width: 209px;
}
.popup-mini__strong {
  display: block;
  padding-bottom: 8px;
}
.popup-mini.layer_confirm .popup-mini__dormancy-util {
  display: block;
  margin: 15px 0 -15px;
  text-align: left;
  color: #404040;
  letter-spacing: -0.3px;
}
.popup-tooltip {
  visibility: hidden;
  position: absolute;
  top: 8px;
  left: -144px;
  width: 311px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  margin: auto;
  margin-top: 30px;
  background-color: #fff;
  z-index: 10;
  font-weight: 400;
}
.popup-tooltip .header-popup {
  position: relative;
  justify-content: flex-start;
  width: auto;
  padding: 0 20px;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.popup-tooltip .header-popup.no-title {
  border: 0;
}
.popup-tooltip .header-popup__title {
  width: auto;
  font-size: 16px;
  font-weight: bold;
  line-height: 56px;
  color: #000;
  text-align: left;
  padding: 0;
}
.popup-tooltip .popup__content {
  padding: 20px 20px 28px;
}
.popup-tooltip::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background: url(../image/grades_shape.png) no-repeat center/contain;
}
.popup-tooltip-text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  padding: 28px 20px;
}
.popup-tooltip.popup-tooltip-coupon-info {
  left: -286px;
}
.popup-tooltip.popup-tooltip-coupon-info::before {
  left: 303px;
}
.popup-tooltip.popup-tooltip-option-noti .header-popup {
  border-bottom: 0;
}
.popup-tooltip.popup-tooltip-option-noti .header-popup__title {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.popup-tooltip.popup-tooltip-option-noti .siv-bullet {
  padding: 0;
}
.popup-tooltip.popup__discount--logout {
  left: -142px;
}
.popup-tooltip.popup-tooltip-card-info {
  left: -135px;
}
.popup-tooltip.delivery-fee-info {
  left: -143px;
}
.popup-tooltip.popup-tooltip-delivery-guaranteed {
  left: -145px;
}
.popup-tooltip.mini-gift-wrap {
  left: -136px;
}
.popup-freebies2 .popup__content {
  padding: 0;
}
.popup__share-list {
  display: flex;
  justify-content: space-between;
  padding: 8px 24px 58px;
  background: #fff;
}
.popup__share--item {
  border-radius: 50%;
}
.popup__share--item.facebook {
  background: rgb(59, 90, 152);
}
.popup__share--item.kakao {
  background: rgb(254, 219, 0);
}
.popup__share--item.story {
  background: rgb(254, 219, 0);
}
.popup__share--item.url {
  background: #141a23;
}
.popup__share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.popup__share a img {
  width: 3.2px;
}
.popup__share--list {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 11px 0 10px;
  background: #fff;
}
.popup__share--item {
  border-radius: 50%;
}
.popup__share--item.facebook {
  background: rgb(59, 90, 152);
}
.popup__share--item.kakao {
  background: rgb(254, 219, 0);
}
.popup__share--item.url {
  background: #141a23;
}
.popup__share--item.line {
  background-color: #5ac463;
}
.popup__share--item.line img {
  width: 100%;
}
.popup__share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.popup__share a img {
  width: 26px;
}
.popup__description-item {
  position: relative;
  padding: 0 0 8px 10px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.popup__description-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  background-color: #404040;
}
.popup__description-item:last-child {
  padding-bottom: 0;
}
.popup__description-item.type-2 {
  font-size: 12px;
  color: #787878;
}
.popup__description-item.type-2::before {
  content: "";
  background-color: #929292;
}
.popup__description-item span {
  color: #000;
  text-decoration: underline;
}
.popup__description.type-2 {
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.popup__ranking-item {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
}
.popup__ranking-item.align {
  align-items: center;
  padding-bottom: 0;
}
.popup__ranking-badge {
  width: 69px;
  margin-right: 24px;
  text-align: center;
}
.popup__ranking-badge img {
  width: 32px;
}
.popup__ranking-badge p {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #404040;
}
.popup__ranking-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.popup__ranking-wrap {
  margin-top: 16px;
}
.popup__ranking-text {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 20px;
}
.popup__ranking-text.interval {
  margin-top: 8px;
}
.popup__ranking-description {
  position: relative;
  padding: 0 0 8px 8px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.popup__ranking-description::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #404040;
}
.popup__ranking-description:last-child {
  padding-bottom: 0;
}
.popup__box {
  padding: 24px 34px 40px;
  border-bottom: 8px solid #f0f0f0;
}
.popup__box.type-2 {
  padding-top: 0;
}
.popup__box.type-3 {
  padding-top: 8px;
}
.popup__box.type-4 {
  padding: 20px 34px 0;
}
.popup__box.type-5 {
  padding: 20px 34px 46px;
}
.popup__box.type-6 {
  padding: 20px 34px 40px;
}
.popup__box.destination {
  padding-top: 28px;
}
.popup__box.remove {
  border-bottom: 0;
}
.popup__box-description {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.popup__box-description:last-child {
  margin-bottom: 0;
}
.popup__box-title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  text-align: center;
}
.popup__box-text {
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  text-align: center;
}
.popup__box-text.type-2 {
  color: #787878;
  text-align: left;
}
.popup__box-number {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  line-height: 20px;
  color: #131922;
}
.popup__checkbox {
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
.popup__checkbox .checkbox__label > span {
  width: 260px;
  margin-right: 15px;
  color: #131922;
}
.popup__checkbox .arrow-right {
  transform: translateY(2px);
}
.popup__fixed-btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 16px 34px 34px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
}
.popup__btn {
  display: flex;
  margin-top: 40px;
}
.popup__btn.destination {
  margin-top: 90px;
}
.popup__btn.correction {
  margin-top: 60px;
}
.popup__btn.option {
  margin-top: 24px;
}
.popup__btn.option-2 {
  margin-top: 32px;
}
.popup__keyword {
  display: flex;
  flex-flow: row wrap;
  gap: 6px;
}
.popup__keyword button {
  max-width: 100%;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 40px;
  color: #000;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.popup-restock-notification .popup__content {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 76px);
}

.popup__restock-title {
  margin-top: 32px;
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  letter-spacing: 0;
  color: #141a23;
  font-weight: 500;
}
.popup__restock-description {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
}
.popup__restock-wrap {
  padding: 0 24px;
}
.popup__restock-wrap .form_input {
  margin: 0;
}
.popup__restock-input {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 24px 0;
}
.popup__restock-input li {
  display: flex;
  gap: 8px;
}
.popup__restock-input li .form_input {
  width: 100%;
}
.popup__restock-input li .siv-selectbox {
  width: 95px;
}
.popup__restock-input li .siv-selectbox ~ .form_input {
  width: calc(100% - 103px);
}
.popup__restock-popup {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 21px;
}
.popup__restock-popup button {
  font-size: 12px;
  text-decoration: underline;
  letter-spacing: 0;
  line-height: 20px;
  color: #a0a0a0;
}
.popup__restock-selectbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__restock-selectbox li p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  color: #141a23;
}
.popup__restock-selectbox li .siv-selectbox {
  margin-top: 8px;
}
.popup__restock-notice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.popup__restock-notice li {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
  padding-left: 10px;
  background: url(../image/04IconBulletSmallGray.svg) no-repeat top 7px left/2px;
}
.popup__restock-btn {
  position: sticky;
  position: -webkit-sticky;
  display: flex;
  bottom: 0;
  margin-top: auto;
  padding: 12px 24px 34px 24px;
  background-color: #fff;
}
.popup__restock-btn button {
  flex: 1;
}
.popup__restock .gray-bar {
  height: 8px;
  background: #f8f8f8;
}
.popup__terms--list {
  margin-bottom: 32px;
}
.popup__terms--item {
  margin-bottom: 16px;
}
.popup__terms--item:last-child {
  margin-bottom: 0;
}
.popup__terms--title {
  padding: 22px 0 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  color: #131922;
}
.popup__terms--description {
  font-size: 14px;
  color: #787878;
  word-break: break-all;
}
.popup__terms--description span {
  margin-right: 4px;
}
.popup__seller--item {
  font-size: 14px;
  line-height: 44px;
  color: #000;
}
.popup__seller--pagination {
  margin-top: 38px;
}
.popup__benefits--wrap {
  padding: 8px 34px 11px 34px;
}
.popup__benefits--wrap:last-child {
  padding: 20px 34px 80px;
  border-bottom: 0;
}
.popup__benefits--wrap:last-child .popup__benefits--box:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.popup__benefits--header {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  color: #131922;
  border-bottom: 1px solid #404040;
}
.popup__benefits--box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}
.popup__benefits--box.two {
  align-items: center;
}
.popup__benefits--logo {
  width: 64px;
  height: 64px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.popup__benefits--logo img {
  width: 100%;
}
.popup__benefits--text {
  position: relative;
  width: 244px;
  margin-bottom: 6px;
  padding-left: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  white-space: normal;
}
.popup__benefits--text::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  background-color: #404040;
  border-radius: 50%;
}
.popup__benefits--text:last-child {
  margin-bottom: 0;
}
.popup__common {
  background-color: #fff;
  z-index: 9999;
}
.popup__gifts {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px 20px 28px;
  box-sizing: border-box;
}
.popup__gifts-wrap {
  height: auto;
  margin: 0 auto;
}
.popup__gifts-wrap img {
  width: 100%;
}
.popup__gifts-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #131922;
  text-align: left;
}
.popup-brand, .popup-event {
  width: 1200px;
  min-height: 669px;
  padding: 0 40px 34px;
  height: auto;
  box-sizing: content-box;
}
.popup-brand .header-popup, .popup-event .header-popup {
  justify-content: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.popup-brand .header-popup__title, .popup-event .header-popup__title {
  width: auto;
  padding: 0;
  min-height: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
}
.popup-brand .header-popup__btn.close, .popup-event .header-popup__btn.close {
  right: 0;
}
.popup-brand .popup__content, .popup-event .popup__content {
  padding: 0;
  margin-top: 20px;
}
.popup-brand__search--input, .popup-event__search--input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  margin-left: 24px;
  padding: 9px 0 8px;
  border-bottom: 1px solid #929292;
  box-sizing: border-box;
}
.popup-brand__search--input input[type=text], .popup-event__search--input input[type=text] {
  width: 75%;
  font-size: 16px;
  line-height: 22px;
  border: 0;
}
.popup-brand__search--input input[type=text]::-moz-placeholder, .popup-event__search--input input[type=text]::-moz-placeholder {
  color: #929292;
}
.popup-brand__search--input input[type=text]::placeholder, .popup-event__search--input input[type=text]::placeholder {
  color: #929292;
}
.popup-brand__search--input.write .popup-brand__search--btns .icon-delete, .popup-event__search--input.write .popup-brand__search--btns .icon-delete {
  display: inline-block;
}
.popup-brand__search--btns, .popup-event__search--btns {
  display: flex;
  align-items: center;
}
.popup-brand__search--btns button, .popup-event__search--btns button {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.popup-brand__search--btns .icon-delete, .popup-event__search--btns .icon-delete {
  display: none;
  width: 16px;
  height: 16px;
  background: url(../image/iconCloseFill_s.svg) no-repeat center/contain;
}
.popup-brand__search--btns .icon-search, .popup-event__search--btns .icon-search {
  margin-left: 8px;
  background: url(../image/05-icon-24-px-thin-search.svg) no-repeat center/contain;
}
.popup-brand__option, .popup-event__option {
  display: flex;
  flex-wrap: wrap;
  max-height: 432px;
  overflow-y: auto;
}
.popup-brand__option::-webkit-scrollbar, .popup-event__option::-webkit-scrollbar {
  width: 4px;
}
.popup-brand__option::-webkit-scrollbar-thumb, .popup-event__option::-webkit-scrollbar-thumb {
  background-color: #131922;
  background-clip: padding-box;
}
.popup-brand__option::-webkit-scrollbar-track, .popup-event__option::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
.popup-brand__option--item, .popup-event__option--item {
  width: 25%;
  height: 36px;
  padding: 9px 0;
  box-sizing: border-box;
}
.popup-brand__option--detail, .popup-event__option--detail {
  display: flex;
  align-items: center;
}
.popup-brand__option--detail p, .popup-event__option--detail p {
  display: flex;
  margin-left: 8px;
  font-size: 14px;
  color: #000;
}
.popup-brand__option--detail p span, .popup-event__option--detail p span {
  display: inline-block;
}
.popup-brand__option--detail p span:nth-child(2), .popup-event__option--detail p span:nth-child(2) {
  margin-left: 4px;
  color: #929292;
}
.popup-brand__option--detail p .brandname, .popup-event__option--detail p .brandname {
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.popup-brand__option input[type=checkbox] ~ .checkbox, .popup-event__option input[type=checkbox] ~ .checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.popup-brand__option.write .popup-brand__option--item, .popup-event__option.write .popup-brand__option--item {
  display: none;
}
.popup-brand__option.write .popup-brand__option--item.match, .popup-event__option.write .popup-brand__option--item.match {
  display: block;
}
.popup-brand__btns, .popup-event__btns {
  position: absolute;
  display: flex;
  width: 328px;
  bottom: 34px;
  left: 50%;
  transform: translate(-50%);
}
.popup-brand__btns button, .popup-event__btns button {
  width: 50%;
  height: 48px;
  font-size: 14px;
  line-height: 48px;
}
.popup-brand__none, .popup-event__none {
  height: 432px;
}
.popup-brand__none p, .popup-event__none p {
  padding-top: 80px;
  font-size: 14px;
  line-height: 24px;
  color: #787878;
  text-align: center;
}
.popup-category {
  width: 920px;
  height: 534px;
  padding: 0 40px 34px;
  box-sizing: content-box;
}
.popup-category .header-popup {
  justify-content: flex-start;
  padding: 32px 0 12px;
  border-bottom: 1px solid #e0e0e0;
}
.popup-category .header-popup__title {
  width: auto;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  min-height: auto;
}
.popup-category .header-popup__btn.close {
  right: 0;
}
.popup-category .popup__content {
  padding: 0;
  margin-top: 20px;
}
.popup-category__wrap {
  display: flex;
  flex-wrap: nowrap;
  transform: translateX(0vw);
  transition: all 0.5s;
}
.popup-category__wrap .category_depth_01 .dep2,
.popup-category__wrap .category_depth_01 .dep3,
.popup-category__wrap .category_depth_01 .dep4,
.popup-category__wrap .category_depth_01 .dep5 {
  display: none;
}
.popup-category__wrap .category_depth_02 .dep3,
.popup-category__wrap .category_depth_02 .dep4,
.popup-category__wrap .category_depth_02 .dep5 {
  display: none;
}
.popup-category__wrap .category_depth_03 .dep4,
.popup-category__wrap .category_depth_03 .dep5 {
  display: none;
}
.popup-category__wrap .category_depth_04 .dep5 {
  display: none;
}
.popup-category__wrap > div {
  width: 100%;
  border-right: 1px solid #e0e0e0;
}
.popup-category__wrap > div .dep2 {
  padding: 0 10px 0 24px;
}
.popup-category__wrap > div .dep3 {
  padding: 0 10px 0 24px;
  border-right: 0;
}
.popup-category__list {
  height: 340px;
  overflow-y: auto;
}
.popup-category__list::-webkit-scrollbar {
  width: 4px;
}
.popup-category__list::-webkit-scrollbar-thumb {
  background-color: #131922;
  background-clip: padding-box;
}
.popup-category__list::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
.popup-category__item button,
.popup-category__item a {
  display: block;
  width: 195px;
  padding: 9px 0 7px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  box-sizing: border-box;
}
.popup-category__item button span,
.popup-category__item a span {
  margin-left: 4px;
  color: #929292;
}
.popup-category__item.on {
  background: url(../image/icon_bold_arrow_check.svg) no-repeat;
  background-position: center right 30px;
}
.popup-category__item.on a {
  font-weight: bold;
}
.popup-category__item.on a span {
  font-weight: normal;
}
.popup-category .popup-brand__btns {
  margin-top: 12px;
}
.popup-review_writing {
  padding-bottom: 0;
}
.popup-review_writing .toast__review {
  box-sizing: border-box;
  padding: 28px 24px 0px;
}
.popup-review_writing .toast__review-title2 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 43px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #131922;
  text-align: center;
}
.popup-review_writing .toast__review-title2 span {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.popup-review_writing .toast__review-title {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-review_writing .toast__review-title span {
  color: #312E81;
}
.popup-review_writing .toast__review-product {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.popup-review_writing .toast__review-product-thum {
  display: flex;
  width: 80px;
  height: 120px;
  margin-right: 19px;
  align-items: center;
  overflow: hidden;
  background-color: #f5f5f5;
  transform: translateZ(0);
}
.popup-review_writing .toast__review-product-thum img {
  width: 100%;
  height: auto;
  font-size: 0;
  mix-blend-mode: multiply;
}
.popup-review_writing .toast__review-product-info {
  width: 227px;
  margin-right: 0;
}
.popup-review_writing .toast__review-product-info--strong {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: -0.8px;
  color: #141a23;
}
.popup-review_writing .toast__review-product-info--description {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.8px;
  color: #404040;
}
.popup-review_writing .toast__review-product-info--price {
  font-size: 14px;
  font-weight: bold;
  color: #141a23;
  line-height: 20px;
  letter-spacing: -0.8px;
}
.popup-review_writing .toast__review-product-info--star {
  display: inline-flex;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
}
.popup-review_writing .toast__review-product-info--star .star {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../image/star_base.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  filter: invert(0.2);
  margin-right: 8px;
}
.popup-review_writing .toast__review-product-info--star .star.on {
  background-image: url(../image/star_fill.svg);
  filter: invert(0);
}
.popup-review_writing .toast__review-product-review {
  display: flex;
  align-items: center;
}
.popup-review_writing .toast__review-product-review .star_toggle {
  display: block;
  width: 20%;
  height: 32px;
  box-sizing: border-box;
}
.popup-review_writing .toast__review-product-review .star_toggle img {
  max-width: 100%;
}
.popup-review_writing .toast__review-product-review .text {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.18px;
  color: #141a23;
}
.popup-review_writing .toast__review .write-succession {
  margin: 0 -24px -20px;
  padding: 32px 24px 0;
  align-items: flex-start;
  border-top: 8px solid #f0f0f0;
}
.popup-review_writing .toast__review .write-succession .toast__review-product-thum {
  flex: none;
}
.popup-review_writing .toast__review .write-succession .toast__review-product-info {
  width: auto;
}
.popup-review_writing .toast__review .write-succession .select-checkbox {
  margin-right: 12px;
}
.popup-review_writing .toast__review .write-succession .point-text {
  margin-top: 15px;
  color: #312E81;
}
.popup-review_writing .toast__review-list {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}
.popup-review_writing .toast__review-item {
  font-size: 0;
}
.popup-review_writing .toast__review-item:not(:first-of-type) {
  margin-top: 36px;
}
.popup-review_writing .toast__review-item-question {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #404040;
}
.popup-review_writing .toast__review-item-answer {
  font-size: 0;
  margin: -4px;
}
.popup-review_writing .toast__review-item-answer label {
  display: inline-block;
  margin: 4px;
}
.popup-review_writing .toast__review-item-answer input[type=radio] {
  display: none;
}
.popup-review_writing .toast__review-item-answer input[type=radio] ~ span {
  display: inline-block;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0 14px;
  font-size: 16px;
  line-height: 48px;
  color: #000;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.popup-review_writing .toast__review-item-answer input[type=radio]:checked ~ span {
  border-color: #141a23;
}
.popup-review_writing .toast__review-item-answer input[type=radio]:disabled ~ span {
  background-color: #f8f8f8;
  color: #a0a0a0;
}
.popup-review_writing .toast__review-write {
  margin-bottom: 16px;
  margin-top: 48px;
  box-sizing: border-box;
}
.popup-review_writing .toast__review-write-title {
  margin-bottom: 24px;
  word-break: keep-all;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-review_writing .toast__review-write-textarea {
  position: relative;
  width: 100%;
  height: 170px;
  border: 1px solid #e0e0e0;
  padding: 16px 16px 0 16px;
  box-sizing: border-box;
}
.popup-review_writing .toast__review-write-textarea textarea {
  width: 100%;
  height: 120px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  resize: none;
  border: none;
  overflow: hidden;
}
.popup-review_writing .toast__review-write-textarea textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.popup-review_writing .toast__review-write-textarea textarea::placeholder {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.popup-review_writing .toast__review-write-textarea .text-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.06px;
  color: #787878;
}
.popup-review_writing .toast__review-img {
  display: flex;
  flex-wrap: wrap;
  margin: -4px -4px 13px -4px;
}
.popup-review_writing .toast__review-img label {
  margin: 4px;
  width: 59px;
  height: 59px;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
}
.popup-review_writing .toast__review-img .added {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  overflow: hidden;
}
.popup-review_writing .toast__review-img .added .added-image {
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
}
.popup-review_writing .toast__review-img .added .remove-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  font-size: 0;
  background: #e0e0e0 url(../image/icon_close.svg) no-repeat center/cover;
}
.popup-review_writing .toast__review-img .more {
  border: 1px dotted #e0e0e0;
}
.popup-review_writing .toast__review-img .more input {
  display: none;
}
.popup-review_writing .toast__review-img .more span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/icon_add_black.svg) no-repeat center/32px;
}
.popup-review_writing .toast__review-body-size {
  display: flex;
  flex-wrap: wrap;
}
.popup-review_writing .toast__review-body-size-title {
  flex: 1 100%;
  font-size: 16px;
  margin-bottom: 16px;
  color: #131922;
  line-height: 22px;
}
.popup-review_writing .toast__review-body-size .form_input {
  flex: 1;
  width: auto;
  padding: 0;
  display: flex;
  align-items: center;
  border: 0 none;
}
.popup-review_writing .toast__review-body-size .form_input input[type=text] {
  width: calc(100% - 34px);
  padding: 14px 16px;
  line-height: 20px;
  border: 1px solid #e0e0e0;
}
.popup-review_writing .toast__review-body-size .form_input input[type=text]::-webkit-outer-spin-button, .popup-review_writing .toast__review-body-size .form_input input[type=text]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.popup-review_writing .toast__review-body-size .form_input .measure {
  margin-left: 8px;
}
.popup-review_writing .toast__review-body-size .form_input + .form_input {
  margin-left: 19px;
}
.popup-review_writing .toast__review-body-size .body-size__agree {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.popup-review_writing .toast__review-body-size .body-size__agree .icon-arrow-right {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: url(../image/04IconArrowRight.svg) no-repeat center/cover;
}
.popup-review_writing .toast__review-body-size .siv-selectbox {
  margin-top: 16px;
}
.popup-review_writing .toast__review-body-size .body-size__consent {
  margin-top: 36px;
}
.popup-review_writing .toast__review-body-size .body-size__consent .checkbox__label > span {
  font-size: 14px;
  color: #131922;
}
.popup-review_writing .toast__review-body-size .toast__review-notice-list {
  margin-top: 20px;
  padding: 12px 0 36px;
  border-top: 1px solid #f0f0f0;
}
.popup-review_writing .toast__review-body-size .point-text {
  color: #312E81;
}
.popup-review_writing .toast__review-beauty-info-title {
  font-size: 16px;
  margin-bottom: 16px;
  color: #131922;
  line-height: 22px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__keyword {
  position: relative;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__keyword:after {
  content: "";
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
}
.popup-review_writing .toast__review-beauty-info .my-beauty__keyword.is-details:after {
  content: none;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__keyword.is-details .my-beauty__list {
  max-height: none;
  overflow: initial;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__keyword.is-details .button-keyword-more {
  display: none;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__head {
  display: flex;
  align-items: center;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__title {
  font-size: 16px;
  padding-left: 9px;
  color: #131922;
  line-height: 22px;
  background: url(../image/04IconBulletSmallGray.svg) no-repeat left top 8px/2px 2px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip {
  position: relative;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip .tooltip-content {
  font-size: 14px;
  display: none;
  position: absolute;
  top: 27px;
  left: 50%;
  padding: 11px 12px;
  color: #fff;
  line-height: 20px;
  white-space: nowrap;
  background-color: #131922;
  transform: translateX(-40%);
  z-index: 1;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip .tooltip-content:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 37.65%;
  border: 7px solid transparent;
  border-bottom-color: #131922;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip .button-tooltip {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 2px;
  background: url(../image/05-icon-16-info.svg) no-repeat 0 0;
  background-size: cover;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip .button-tooltip:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: 5px;
  transform: translate(-50%, -50%);
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip .blind {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.popup-review_writing .toast__review-beauty-info .my-beauty__tooltip.is-active .tooltip-content {
  display: block;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__max-number {
  font-size: 14px;
  margin-left: 4px;
  color: #312E81;
  line-height: 20px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  max-height: 148px;
  overflow: hidden;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__list .my-beauty__item .selections-item {
  font-size: 16px;
  position: relative;
  display: block;
  padding: 11px 14px 10px;
  color: #000;
  line-height: 19px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__input {
  position: absolute;
  z-index: -1;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__input:checked + .selections-item {
  border-color: #000;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__input:disabled + .selections-item {
  background-color: #f8f8f8;
  color: #a0a0a0;
}
.popup-review_writing .toast__review-beauty-info .my-beauty .button-keyword-more {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  color: #000;
  font-weight: 500;
  border: 1px solid #131922;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 2;
}
.popup-review_writing .toast__review-beauty-info .my-beauty .button-keyword-more:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../image/05Icon16PxThickArrowDown.png) no-repeat center/cover;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__selector .selector__inner {
  display: flex;
  align-items: center;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__selector .selector__inner:not(:first-child) {
  margin-top: 16px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__selector .selector__title {
  font-size: 14px;
  flex: none;
  width: 100px;
  padding-left: 9px;
  box-sizing: content-box;
  color: #101010;
  background: url(../image/04IconBulletSmallGray.svg) no-repeat left top 8px/2px 2px;
}
.popup-review_writing .toast__review-beauty-info .my-beauty__selector .selector__info {
  width: 100%;
}
.popup-review_writing .toast__review-beauty-info .simple-terms {
  margin-inline: -24px;
  padding: 42px 24px 40px;
  border-top: 8px solid #f0f0f0;
}
.popup-review_writing .toast__review-beauty-info .simple-terms__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.popup-review_writing .toast__review-beauty-info .simple-terms .checkbox__label > span {
  font-size: 14px;
  color: #131922;
}
.popup-review_writing .toast__review-beauty-info .simple-terms .icon-arrow-right {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: url(../image/05Icon32PxThinArrowRight.svg) no-repeat center/cover;
}
.popup-review_writing .toast__review-notice {
  padding-bottom: 40px;
}
.popup-review_writing .toast__review-notice-title {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-review_writing .toast__review-notice-item {
  padding-left: 9px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
  word-break: keep-all;
  background: url(../image/04IconBulletSmallGray.svg) no-repeat left top 8px/2px 1.8px;
}
.popup-review_writing .toast__review-notice-item:not(:last-of-type) {
  margin-bottom: 8px;
}
.popup-review_writing .toast__review-notice-item span {
  font-weight: 700;
  text-decoration: underline;
}
.popup-review_writing .toast__review-btn {
  display: flex;
  margin-top: 32px;
  padding: 20px 0 34px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
}
.popup-review_writing .toast__review-btn button {
  width: 164px;
  height: 48px;
  font-size: 14px;
  flex: 1;
}
.popup-review_writing .toast__review-btn button.close {
  background-color: #929292;
  color: #fff;
}
.popup-review_writing .toast__review-btn button.next {
  background-color: #f0f0f0;
  color: #c8c8c8;
}
.popup-review_writing .toast__review-btn button.submit {
  background-color: #141a23;
  color: #fff;
}
.popup__body-size .popup__body-info,
.popup__body-size .desc-list-type2 .item {
  font-size: 14px;
  margin-top: 8px;
  color: #404040;
  line-height: 20px;
}
.popup__body-size .desc-list-type2 .item {
  position: relative;
  padding-left: 10px;
}
.popup__body-size .desc-list-type2 .item:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #929292;
}
.popup__body-size .item-importance {
  font-size: 16px;
}
.popup-sent-card .popup__content {
  padding: 0;
}
.popup-sent-card .popup__present {
  padding: 20px 20px 32px;
}
.popup-sent-card .popup__present .present-card {
  overflow: hidden;
  height: 140px;
}
.popup-sent-card .popup__present .present-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.popup-sent-card .popup__present .present-text {
  padding-top: 24px;
}
.popup-sent-card .popup__present .present-text > * {
  font-size: 12px;
  color: #000;
}
.popup-sent-card .popup__present .present-person {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  font-weight: 500;
  line-height: 18px;
}
.popup-sent-card .popup__present .present-message {
  font-size: 12px;
  line-height: 18px;
  margin-top: 8px;
}
.popup-sent-card .popup__present .present-item {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px dashed #e0e0e0;
}
.popup-sent-card .popup__present .present-item .product__basic + .product__basic {
  margin-top: 24px;
}
.popup-sent-card .popup__present .present-item .product__info {
  display: grid;
  grid-template-columns: 80px minmax(calc(100% - 100px), auto);
  -moz-column-gap: 20px;
  column-gap: 20px;
  align-items: flex-start;
  padding: 0;
}
.popup-sent-card .popup__present .present-item .product__info-thum {
  display: flex;
  aspect-ratio: 2/3;
  background-color: #f8f8f8;
  align-items: center;
  overflow: hidden;
}
.popup-sent-card .popup__present .present-item .product__info-thum img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
}
.popup-sent-card .popup__present .present-item .product__info-detail span {
  display: block;
}
.popup-sent-card .popup__present .present-item .product__info-detail span.brand-name {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: -0.08px;
  color: #141a23;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popup-sent-card .popup__present .present-item .product__info-detail span.product-name {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.06px;
  color: #404040;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popup-sent-card .popup__present .present-item .product__info-options {
  margin-top: 4px;
}
.popup-sent-card .popup__present .present-item .product__info-option {
  font-size: 12px;
  line-height: 18px;
  color: #787878;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.popup_msg_resend {
  border: 1;
}
.popup_msg_resend .popup__present {
  padding: 20px 0 32px;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method:not(:first-child) {
  margin-top: 16px;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method input.radio-circle {
  width: 23px;
  height: 23px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method input.radio-circle:checked {
  border-color: #131922;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method input.radio-circle:checked::after {
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #131922;
  border-radius: 50%;
  background-color: #131922;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup_msg_resend .popup__present-msg-wrap .msg-method span {
  font-size: 14px;
  color: #404040;
  line-height: 20px;
  flex: 1;
}
.popup_msg_resend .popup__present-msg-number {
  margin-top: 32px;
  display: none;
}
.popup_msg_resend .popup__present-msg-number.show {
  display: block;
}
.popup_msg_resend .popup__present-msg-number .number-input {
  display: grid;
  grid-template-columns: 78px auto;
  -moz-column-gap: 7px;
  column-gap: 7px;
}
.popup_msg_resend .popup__present-msg-number .number-input .selected span {
  font-size: 13px;
}
.popup_msg_resend .popup__present-msg-number .number-input .form_input {
  padding: 0;
}
.popup_msg_resend .popup__present-msg-number .number-input input[type=number] {
  outline: none;
  font-size: 13px;
  padding-left: 16px;
  padding-right: 12px;
}
.popup_msg_resend .popup__present-msg-number .number-input input[type=number]::-webkit-outer-spin-button, .popup_msg_resend .popup__present-msg-number .number-input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.popup_msg_resend .popup__present-msg-number .number-import-button {
  display: flex;
  height: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 20;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #787878;
}
.popup_msg_resend .popup__present-msg-number .number-msg-notice {
  margin-top: 16px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.popup-shopping-bag {
  width: 764px;
  height: auto;
  min-height: 626px;
}
.popup-shopping-bag .header-popup__shopping-bag {
  margin-right: auto;
  padding-left: 34px;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message {
  display: flex;
  align-items: center;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__img {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  overflow: hidden;
  text-align: center;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__img img {
  max-width: 100%;
  height: 100%;
  mix-blend-mode: darken;
  vertical-align: top;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__text {
  flex-grow: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #131922;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  padding: 3px 3px 3px 6px;
  margin-left: 10px;
  font-size: 14px;
  line-height: 1.43;
  color: #787878;
}
.popup-shopping-bag .header-popup__shopping-bag .cart-message .message__link:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/05Icon32PxThinArrowRight.png) no-repeat center/cover;
}
.popup-shopping-bag:has(.recommended-product) .popup__content {
  padding-left: 0;
  padding-right: 0;
}
.popup-shopping-bag .recommended-product {
  border-top: 1px solid #e0e0e0;
  padding: 19px 34px 34px;
}
.popup-shopping-bag .recommended-product .section-head {
  height: auto;
  margin-bottom: 0;
  padding: 23px 0 21px;
}
.popup-shopping-bag .recommended-product .section-head__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000;
}
.popup-shopping-bag .recommended-product .product.swiper-container .product__data-brand {
  max-height: none;
}
.popup-delivery-guaranteed .header-popup__title {
  white-space: nowrap;
}

.siv-popup .change-password {
  margin-top: 40px;
}
.siv-popup .change-password .btn-wrap {
  margin-top: 40px;
}
.siv-popup .change-password-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  letter-spacing: 0;
}
.siv-popup .change-password-desc {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  margin-top: 20px;
}
.siv-popup .change-password-do-not-show {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #787878;
  margin-top: 25px;
}
.siv-popup .login__wrap {
  padding: 28px 0 112px;
}
.siv-popup .login__form .login__form-warning {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(219, 60, 60);
}
.siv-popup .login__form .login__form-warning.hidden {
  display: none;
}
.siv-popup .login__form .box-capcha {
  margin-top: 16px;
}
.siv-popup .login__form .form_input {
  margin-bottom: 8px;
}
.siv-popup .login__form .checkbox__label > span,
.siv-popup .login__form .radio__label > span {
  font-size: 14px;
}
.siv-popup .login__form .btn-wide {
  height: 48px;
  font-size: 14px;
}
.siv-popup .login__form .btn-wide.big {
  height: 70px;
}
.siv-popup .login__form .btn-wide.mid {
  height: 48px;
}
.siv-popup .login__form .btn-wide.sml {
  height: 32px;
}
.siv-popup .login__form .underline-wrap {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.siv-popup .login__form .underline-btn {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  color: #787878;
  text-decoration: underline;
}
.siv-popup .login__form .underline-btn:not(:last-child):before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  border-left: 1px solid #e0e0e0;
  content: "";
}
.siv-popup .login__form .login__form-input .form_input:last-child {
  margin-bottom: 0;
}
.siv-popup .login__form .login__form-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.siv-popup .login__form .login__form-wrap .find-id-pw {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
  text-decoration: underline;
}
.siv-popup .login__form .login__form-btn {
  margin-top: 28px;
}
.siv-popup .login__form .login__form-btn2 {
  margin-top: 60px;
}
.siv-popup .login__form .login__form-sns {
  margin-top: 40px;
  text-align: center;
}
.siv-popup .login__form .login__form-sns li {
  display: inline-block;
  margin: 0 0 0 -3px;
  padding: 0 16px;
}
.siv-popup .login__form .login__form-sns li a {
  display: block;
  text-align: center;
}
.siv-popup .login__form .login__form-sns li a .sns-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.siv-popup .login__form .login__form-sns li a .sns-bg.color-1 {
  background-color: #03cf5d;
}
.siv-popup .login__form .login__form-sns li a .sns-bg.color-2 {
  background-color: #1982f4;
}
.siv-popup .login__form .login__form-sns li a .sns-bg.color-3 {
  background-color: #231f20;
}
.siv-popup .login__form .login__form-sns li a .sns-bg img {
  width: 28px;
  height: 28px;
}
.siv-popup .login__form .login__form-sns li a .sns-img {
  width: 48px;
  height: 48px;
}
.siv-popup .login__form .login__form-sns li a .sns-img img {
  width: 48px;
  height: 48px;
}
.siv-popup .login__form .login__form-sns li a span {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 20px;
  color: #404040;
}
.popup-delivery-guaranteed .header-popup__title {
  white-space: nowrap;
}

.siv-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}
.siv-badge--no-gap {
  gap: 0;
}
.siv-badge__item {
  display: inline-block;
  line-height: 20px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  box-sizing: border-box;
}
.siv-badge__item--gold {
  background-color: #d99c63;
}
.siv-badge__item--gold-line {
  color: #d99c63;
  border: 1px solid #d99c63;
  letter-spacing: 0.3px;
  line-height: 18px;
}
.siv-badge__item--silver {
  background-color: #929292;
}
.siv-badge__item--vlack {
  background-color: #141a23;
}
.siv-badge__item--brown {
  background-color: #8c7571;
}
.siv-badge__item--blue {
  background-color: #3f507c;
}
.siv-badge__item--disabled {
  background-color: #c8c8c8;
}
.siv-badge__item--goldline {
  line-height: 20px;
  border: 1px solid #d99c63;
  color: #d99c63;
  font-weight: bold;
}

.btn-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 2;
  width: 100%;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}
.btn-wide.big {
  height: 70px;
  font-size: 14px;
}
.btn-wide.mid {
  height: 48px;
  font-size: 14px;
}
.btn-wide.sml {
  height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 400;
}
.btn-gray {
  color: #fff;
  background: #929292;
}
.btn-gray2 {
  color: #fff;
  background-color: #787878;
}
.btn-vlack {
  color: #fff;
  background: #131922;
}
.btn-vlack:hover {
  color: #fff;
}
.btn-vlack:disabled {
  color: #c8c8c8;
  background-color: #f0f0f0;
}
.btn-line-gray {
  background: #fff;
  border: 1px solid #e0e0e0;
}
.btn-line-gray:disabled {
  color: #c8c8c8;
}
.btn-line-gray:disabled span {
  opacity: 0.2;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-icon span {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.btn-icon span.download {
  background-image: url(../image/icon_download.png);
}
.btn-icon span.arrow-up {
  background-image: url(../image/05-icon-20-px-thin-arrow-up.svg);
}
.btn-icon span.arrow-right {
  background-image: url(../image/05-icon-20-px-thin-arrow-up.svg);
  transform: rotate(90deg);
}
.btn-icon span.arrow-down {
  background-image: url(../image/05-icon-20-px-thin-arrow-up.svg);
  transform: rotate(180deg);
}
.btn-icon span.plus {
  background-image: url(../image/05-icon-30-px-thin-add.svg);
}
.btn-icon.disabled {
  color: #c8c8c8;
}
.btn-icon.disabled span.download {
  opacity: 0.2;
}
.btn-wrap {
  display: flex;
}
.btn-wrap button,
.btn-wrap a {
  flex: 1;
}
.login .btn-wrap,
.join .btn-wrap, .btn-wrap--gap {
  gap: 8px;
}

.btn-wrap.type-v {
  gap: 8px;
  flex-direction: column;
}
.btn-wrap.type-v button,
.btn-wrap.type-v a {
  flex: initial;
}

.size_btntype .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
}
.size_btntype .product_name {
  font-size: 14px;
  line-height: 20px;
  color: #141a23;
  margin-bottom: 8px;
  font-weight: bold;
}
.size_btntype button {
  display: flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgb(244, 244, 244);
  font-size: 12px;
  color: rgb(19, 25, 34);
  position: relative;
}
.size_btntype button.on {
  border-color: rgb(19, 25, 34);
}
.size_btntype button:disabled, .size_btntype button.disabled {
  color: #f0f0f0;
}
.size_btntype button:disabled {
  border: none;
}
.size_btntype button:disabled::after, .size_btntype button.disabled::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/detail_product_item_color_disable_x.png) no-repeat center;
  background-size: 100% 100%;
}
.size_btntype button.disabled.on {
  background-color: #f0f0f0;
}
.size_btntype button.disabled.on::after {
  background: url(../image/detail_product_item_color_disable_select_x.svg) no-repeat center/cover;
  box-sizing: border-box;
}
.size_btntype button:hover {
  border-color: #131922;
}

.header-popup {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding-top: 20px;
  box-sizing: content-box;
  background-color: #fff;
  z-index: 100;
}
.header-popup-mini {
  display: flex;
  height: 56px;
  width: calc(100% - 40px);
  margin: 0 auto 20px auto;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
}
.header-popup-mini__title {
  width: 235px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  color: #000;
}
.header-popup-mini__btn {
  width: 20px;
  height: 20px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.header-popup-mini__btn.close {
  background: url(../image/icon_close.svg) no-repeat center/100%;
}
.header-popup__title {
  width: calc(100% - 108px);
  padding: 15px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #131922;
  text-align: center;
  box-sizing: border-box;
}
.header-popup__title.has-icon {
  width: auto;
  font-size: 14px;
}
.header-popup__title.has-icon .icon {
  position: relative;
  top: -1px;
  margin-right: 5px;
}
.header-popup__title.terms {
  padding: 16px 0 14px;
  line-height: 26px;
}
.header-popup__btn {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.header-popup__btn.close {
  right: 16px;
  background-image: url(../image/05-icon-32-px-thin-close.svg);
}
.header__section {
  padding: 40px 0;
  border-bottom: 2px solid #000;
}
.header__section.border-none {
  border-bottom: none;
}
.header__section h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 40px;
  color: #000;
  text-align: center;
}

.filter {
  width: 240px;
}
.filter .no-benefit {
  padding: 40px 0 80px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #787878;
}
.filter__header {
  font-size: 20px;
  font-weight: bold;
  color: #131922;
  cursor: pointer;
}
.filter__title {
  position: relative;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #131922;
  text-align: left;
  background-image: url(../image/05-icon-16-px-thin-arrow-down-filter.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 16px;
}
.filter__rescan {
  margin: 16px 0 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.filter__rescan--input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #929292;
  box-sizing: border-box;
}
.filter__rescan--input input[type=text] {
  border: 0;
  width: 76%;
}
.filter__rescan--input input::-moz-placeholder {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #929292;
}
.filter__rescan--input input::placeholder {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #929292;
}
.filter__rescan--btns button {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.filter__rescan--btns .icon-search {
  margin-left: 10px;
  background: url(../image/05-icon-24-px-thin-search.svg) no-repeat center/contain;
}
.filter__rescan .options {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
.filter__rescan .options .option {
  width: 50%;
}
.filter__rescan .options .option-detail {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.filter__rescan .options .option-detail p {
  margin-left: 8px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.filter__option {
  display: none;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f0f0;
}
.filter__option .options {
  display: flex;
  flex-wrap: wrap;
}
.filter__option .options .option {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.filter__option .options .option label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 36px;
  cursor: pointer;
  min-width: 0;
}
.filter__option .options .option p {
  display: flex;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
}
.filter__option .options .option p span {
  position: relative;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.filter__option .options .option p span:nth-child(2) {
  display: inline-block;
  margin-left: 4px;
  flex: 0 0 auto;
  color: #929292;
}
.filter__option .options .option p span.item {
  max-width: 50%;
}
.filter__option .options .option p span.item:nth-child(2) {
  padding-left: 15px;
  color: #000;
}
.filter__option .options .option p span.item:nth-child(2)::before {
  content: ">";
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  color: #000;
}
.option-detail.on, .option-detail.active {
  text-decoration: underline;
}

.filter__option .options .option.full p {
  white-space: normal;
  text-overflow: initial;
  overflow: visible;
}
.filter__option .options .option.full p span {
  text-overflow: initial;
  white-space: normal;
  overflow: visible;
}
.filter__option .options .option.full label {
  min-height: 36px;
  height: auto;
}
.filter__option .options .option .checkbox {
  margin-left: auto;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 16px;
}
.filter__option .options .option .like-btn {
  width: 16px;
  height: 16px;
  margin: 0 6px;
  flex-shrink: 0;
}
.filter__option .options .option .best {
  display: inline-block;
  width: 28px;
  height: 16px;
  background: url(../image/06-component-badge-product-list-02-best.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.filter__option .options .option-color {
  width: 50%;
  padding: 7px 0;
}
.filter__option .options .option-color label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}
.filter__option .options .option-color input[type=checkbox] {
  display: none;
}
.filter__option .options .option-color input[type=checkbox] ~ .color-wrap {
  border: 1px solid transparent;
}
.filter__option .options .option-color input[type=checkbox]:checked ~ .color-wrap {
  border: 1px solid #131922;
}
.filter__option .options .option-color .color-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  padding: 1px;
  box-sizing: border-box;
  overflow: hidden;
}
.filter__option .options .option-color .color-wrap img {
  width: 100%;
}
.filter__option .options .option-color .color-name {
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.filter__option .options.filter__category .option p {
  width: 100%;
}
.filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  margin: 24px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.filter__options--item {
  width: 50%;
}
.filter__options--detail {
  display: flex;
  align-items: center;
}
.filter__options--detail p {
  margin-left: 8px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  cursor: pointer;
}
.filter__color .options {
  gap: 8px;
}
.filter__color .option-color label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.filter__color .option-color input[type=checkbox] {
  display: none;
}
.filter__color .option-color input[type=checkbox] ~ span {
  border: 1px solid #e0e0e0;
}
.filter__color .option-color input[type=checkbox]:checked ~ span {
  border: 1px solid #000;
}
.filter__color .option-color input[type=checkbox]:disabled ~ span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/detail_product_item_color_disable_x.svg) no-repeat center/contain;
}
.filter__color .option-color .color-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 3px;
  box-sizing: border-box;
  overflow: hidden;
}
.filter__color .option-color .color {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.filter__price .middle {
  display: flex;
  align-items: center;
  height: 5px;
  padding: 25px 10px 0;
  box-sizing: content-box;
}
.filter__price .min_max_price {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.filter__price .min_max_price p {
  font-size: 14px;
  line-height: 20px;
  color: #929292;
}
.filter__price .selected_price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.filter__price .selected_price span {
  position: relative;
}
.filter__price .selected_price span::after {
  content: "원";
  position: absolute;
  top: 0;
  right: 11px;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
}
.filter__price .selected_price input {
  width: 100%;
  height: 40px;
  padding: 8px 27px 8px 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  text-align: right;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.filter__price .selected_price input::-webkit-outer-spin-button, .filter__price .selected_price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.filter__price .selected_price--wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter__price .selected_price--wrap p {
  width: calc(100% - 187px);
  word-break: keep-all;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.filter__price .btn-wide {
  height: 40px;
  margin-top: 12px;
}
.filter__btn--wrap {
  margin-top: 12px;
}
.filter__btn--wrap button {
  height: 40px;
  font-size: 14px;
}
.filter__btns {
  display: flex;
  gap: 4px;
  margin-top: 24px;
}
.filter__btns button {
  height: 40px;
  font-size: 14px;
  font-weight: 400;
}
.filter input[type=checkbox] ~ .checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.filter__list {
  margin-top: 16px;
  margin-bottom: 24px;
}
.filter__option_contents {
  margin-top: 25px;
}
.filter__option_contents .slider {
  width: 100%;
  height: 100%;
  /* 후에 padding: 1.5rem 20px 으로 수정합니다. 참고바랍니다. */
  padding: 9px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.filter__option_contents .slider input {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border: none;
  pointer-events: none;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
}
.filter__option_contents .slider input::-webkit-slider-thumb {
  pointer-events: all;
  /* appearance, background-color는 지워도 됨 */
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.filter__option_contents .slider .track {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
}
.filter__option_contents .slider .range {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  right: 30%;
  background-color: #000;
}
.filter__option_contents .slider .thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 50%;
}
.filter__option_contents .slider .left {
  left: 30%;
}
.filter__option_contents .slider .right {
  right: 30%;
}
.filter__option_contents .min_max_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  height: 20px;
  color: #929292;
}
.filter__option_contents .selected_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: #131922;
}
@media screen and (max-width: 768px) {
  .filter__option_contents .selected_price {
    flex-wrap: wrap;
  }
}
.filter__option_contents .selected_price input {
  width: 98px;
  height: 24px;
  font-size: 14px;
  padding: 8px 6px;
  color: #000;
  text-align: right;
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 1440px) {
  .filter__option_contents .selected_price input {
    width: 6.8056vw;
    height: 1.6667vw;
    font-size: 0.9722vw;
    padding: 0.5556vw 0.4167vw;
  }
}
@media screen and (max-width: 768px) {
  .filter__option_contents .selected_price input {
    width: 100%;
    height: 24px;
    font-size: 14px;
    padding: 8px 6px;
  }
}
.filter__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  cursor: pointer;
}
.filter__items-title {
  font-size: 16px;
  color: #131922;
}
.filter__items-arrow {
  width: 16px;
  height: 16px;
  margin-right: 1px;
  background: url(../image/category_filter_arrow.svg) no-repeat center/cover;
}
.filter__items-arrow.on {
  transform: scaleY(-1);
}
.siv_filter.on {
  margin-bottom: 24px;
}
.siv_filter.on .filter__title {
  height: 40px;
  background-image: url(../image/05-icon-16-px-thin-arrow-up-filter.svg);
  background-repeat: no-repeat;
  background-size: 16px;
}
.siv_filter.on .filter__option {
  display: block;
}

.filter__check {
  display: none;
  margin-bottom: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.filter__check.on {
  display: block;
}
.filter__check-list {
  margin-top: 10px;
}
.filter__check-list-square {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.filter__check-item-square {
  width: 34px;
  height: 34px;
  padding: 2px;
  margin-bottom: 8px;
  margin-right: 8px;
  border: 1px solid #e0e0e0;
}
.filter__check-item-square label {
  display: flex;
  cursor: pointer;
}
.filter__check-item-square label input[type=checkbox] {
  display: none;
}
.filter__check-item-square label input[type=checkbox] ~ span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
}
.filter__check-item-square label input[type=checkbox]:checked ~ span::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #000;
}
.filter__check-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  cursor: pointer;
}
.filter__check-item label p {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.filter__check-item label input[type=checkbox] {
  display: none;
}
.filter__check-item label input[type=checkbox] ~ span {
  width: 18px;
  height: 18px;
  background: url(../image/category_filter_non_checked.svg) no-repeat center/cover;
}
.filter__check-item label input[type=checkbox]:checked ~ span {
  background: url(../image/category_filter_checked.svg) no-repeat center/cover;
}
.filter__check-item label input[type=checkbox]:active ~ span {
  background: url(../image/category_filter_checked.svg) no-repeat center/cover;
  opacity: 0.5;
}
.filter__tag-wish {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 12px 0 6px;
  transform: translateY(3px);
  background: url(../image/category_filter_tag_wish.svg) no-repeat center/cover;
}
.filter__tag-best::before {
  content: "BEST";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 16px;
  transform: translateY(-1.5px);
  margin-right: 6px;
  font-size: 8px;
  text-align: center;
  color: #fff;
  background-color: #000;
}
.filter__see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  margin-top: 20px;
  color: #000;
  border: 1px solid #e0e0e0;
}
.filter__btn button {
  width: 118px;
  height: 40px;
  color: #fff;
}
.filter__btn button.filter__reset {
  background-color: #929292;
}
.filter__btn button.filter__apply {
  background-color: #131922;
}
.filter__select--text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 48px;
  color: #929292;
}
.filter__select--text span {
  font-weight: bold;
  color: #d99c63;
  text-decoration: underline;
  cursor: pointer;
}

.footer {
  border-top: 1px solid #f0f0f0;
  min-width: 1440px;
}
.footer.promotions {
  margin-top: 0;
}
.footer__top .pc-wrap {
  display: flex;
  height: 60px;
  align-items: center;
}
.footer__tel {
  display: inline-flex;
  align-items: center;
  margin-right: 60px;
}
.footer__tel b {
  font-size: 20px;
  color: #000;
}
.footer__tel p {
  margin: 2px 0 0 10px;
  font-size: 14px;
  color: #929292;
}
.footer__notice {
  display: inline-flex;
  gap: 32px;
}
.footer__notice a {
  font-size: 14px;
  color: #000;
}
.footer__sns {
  display: inline-flex;
  margin-left: auto;
  gap: 8px;
}
.footer__sns a {
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 0;
}
.footer__sns a.instagram {
  background-image: url(../image/ico_instagram.png);
}
.footer__sns a.facebook {
  background-image: url(../image/ico_facebook.png);
}
.footer__sns a.youtube {
  background-image: url(../image/05-icon-32-px-sns-youtube.png);
}
.footer__bottom {
  padding: 40px 0 60px;
  background-color: #f8f8f8;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__nav a {
  font-size: 14px;
  line-height: 17px;
  color: #000;
}
.footer__app {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  margin-top: -10px;
  align-items: center;
}
.footer__app--text {
  display: inline-flex;
  align-items: flex-end;
  margin-right: 16px;
  flex-flow: column;
  gap: 4px;
}
.footer__app--text span {
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.footer__app--text p {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 22px;
  color: #787878;
}
.footer__app--text p span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../image/05-icon-12-px-thin-arrow-right.png) no-repeat center/contain;
}
.footer__app--icon {
  display: block;
  width: 60px;
  height: 60px;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 9px;
}
.footer__info ul li {
  display: flex;
  align-items: center;
}
.footer__info ul li p,
.footer__info ul li a {
  position: relative;
  padding-right: 25px;
  font-size: 14px;
  line-height: 17px;
  color: #929292;
}
.footer__info ul li p::after,
.footer__info ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #e0e0e0;
}
.footer__info ul li p:last-child,
.footer__info ul li a:last-child {
  padding-right: 0;
}
.footer__info ul li p:last-child::after,
.footer__info ul li a:last-child::after {
  display: none;
}
.footer__info--confirm {
  margin-bottom: 7px;
}
.footer__info--confirm a {
  position: relative;
  padding-right: 42px;
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.footer__info--confirm a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-16-px-thin-arrow-right-gray.png) no-repeat center/contain;
}
.footer__info--notice {
  font-size: 14px;
  color: #787878;
  margin-bottom: 16px;
}
.footer__info--copyright {
  margin-bottom: 32px;
  font-size: 14px;
  color: #929292;
}
.footer__info--isms {
  display: flex;
  align-items: center;
}
.footer__info--isms a {
  display: inline-block;
  height: 40px;
  width: 44px;
  margin-right: 12px;
}
.footer__info--isms a img {
  width: 100%;
}
.footer__info--isms p {
  font-size: 14px;
  line-height: 20px;
  color: #929292;
}

.gnb-small {
  overflow: auto;
  margin-top: -16px;
  margin-bottom: 28px;
}
.gnb-small__wrap {
  display: flex;
  height: 48px;
  flex-wrap: nowrap;
  align-items: center;
}
.gnb-small__btn {
  margin-right: 32px;
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 0;
  color: #929292;
}
.gnb-small__btn.on {
  color: #141a23;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  margin-bottom: 16px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.section-head__title {
  font-size: 28px;
  line-height: 1.5;
  width: 100%;
  letter-spacing: -0.4px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section-head__title.white {
  color: #fff;
}
.section-head.with_nav {
  margin-bottom: 0;
}
.section-head .arrow-right {
  width: 28px;
  height: 28px;
  background: url(../image/ico_arrow_right_v.png) no-repeat center/cover;
}

.swiper-product {
  position: relative;
  overflow: hidden;
}
.swiper-product.white .siv-product__name,
.swiper-product.white .siv-product__price {
  color: #fff;
}
.swiper-product.white .siv-product__description {
  color: #f8f8f8;
}
.swiper-product .arrow {
  position: absolute;
  display: none;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.35);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  z-index: 5;
  transform: translateY(-50%);
}
.swiper-product .arrow.prev {
  left: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-left.svg);
}
.swiper-product .arrow.next {
  right: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-right.svg);
}
.swiper-product:hover .arrow {
  display: block;
}
.swiper-product--square .arrow {
  top: 50%;
  transform: translateY(-100%);
}
.swiper-product--456 .arrow {
  top: 342px;
}
.swiper-product--336 .arrow {
  top: 252px;
}
@media screen and (max-width: 1415px) {
  .swiper-product--336 .arrow {
    transform: translateY(-100%);
  }
}
.swiper-product--264 .arrow {
  top: 198px;
}
.swiper-product--216 .arrow {
  top: 162px;
}
.swiper-product--160 .arrow {
  top: 120px;
}

.swiper-component {
  position: relative;
  overflow: hidden;
}
.swiper-component .arrow {
  position: absolute;
  top: 230px;
  display: none;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.35);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  z-index: 5;
}
.swiper-component .arrow.prev {
  left: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-left.svg);
}
.swiper-component .arrow.next {
  right: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-right.svg);
}
.swiper-component:hover .arrow {
  display: block;
}
.swiper-component:hover .arrow.swiper-button-disabled {
  display: none;
}

.swiper-banner {
  position: relative;
  overflow: hidden;
}
.swiper-banner .btn {
  position: absolute;
  top: 44px;
  display: none;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.35);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  z-index: 5;
}
.swiper-banner .btn.prev {
  left: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-left.svg);
}
.swiper-banner .btn.next {
  right: 0;
  background-image: url(../image/05-icon-32-px-thin-arrow-light-right.svg);
}
.swiper-banner:hover .btn {
  display: block;
}
.swiper-banner:hover .btn.swiper-button-disabled {
  display: none;
}

.siv-product__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.siv-product__list.gap--60 {
  gap: 60px 24px;
}
.siv-product.type2 {
  overflow: hidden;
  position: relative;
}
.siv-product.type2 .siv-product__list {
  flex-wrap: nowrap;
  gap: 0;
}
.siv-product__item {
  display: flex;
  flex-wrap: wrap;
}
.siv-product__list--type01 .siv-product__item {
  width: 456px;
}
.siv-product__list--type02 .siv-product__item {
  width: 336px;
}
.siv-product__list--type03 .siv-product__item {
  width: 264px;
}
.siv-product__list--type04 .siv-product__item {
  width: 216px;
}
.siv-product__list--type05 {
  gap: 4px 9px;
}
.siv-product__list--type05 .siv-product__item {
  width: 159px;
}
.siv-product__list--160 .siv-product__item {
  width: 160px;
}

.siv-product__thum {
  position: relative;
  width: 100%;
}
.siv-product__thum .like-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.siv-product__thum a {
  display: flex;
  width: 100%;
  aspect-ratio: 2/3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8f8f8;
}
.siv-product__list--square .siv-product__thum a {
  aspect-ratio: 1/1;
}

.siv-product__thum a img {
  max-height: 100%;
  mix-blend-mode: multiply;
}
.siv-product__thum .siv-badge {
  position: absolute;
  bottom: 0;
  left: 0;
}
.siv-product__medal {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.siv-product__cover {
  position: absolute;
  width: 100%;
  padding: 0 15px;
  bottom: 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
}
.siv-product__cover * {
  color: #fff;
}
.siv-product__cover .siv-product__soldout {
  color: #fff;
}
.siv-product__cover .siv-product__soldout * {
  color: inherit;
}
.siv-product__size {
  display: none;
}
.siv-product__thum:hover .siv-product__size {
  display: flex;
}

.siv-product__soldout {
  display: flex;
  height: 44px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.siv-product__soldout p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.siv-product__size {
  min-height: 44px;
  padding: 10px 0;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 11px;
}
.siv-product__size-list {
  display: flex;
  flex-flow: row wrap;
  max-height: 40px;
  overflow-y: hidden;
  line-height: 16px;
  justify-content: center;
  gap: 8px;
}
.siv-product__size-list span {
  font-size: 14px;
}
.siv-product__size-search {
  width: 24px;
  height: 24px;
  background: url(../image/05-icon-32-px-thin-search.svg) no-repeat center/contain;
  text-indent: -9999px;
  font-size: 0;
  overflow: hidden;
}
.siv-product__size-search:hover {
  background-image: url(../image/ico_search.svg);
}
.siv-product__info {
  display: block;
  width: 100%;
  padding: 16px 8px;
  flex-basis: 100%;
}
.siv-product__ranking {
  display: flex;
  width: 27px;
  height: 21px;
  margin-bottom: 12px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fefefe;
  background: url(../image/ranking_gray.svg) no-repeat center/contain;
}
.siv-product__ranking.gold {
  background: url(../image/ranking_gold.svg) no-repeat center/contain;
}

.siv-product__name {
  width: 100%;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #000;
}
.siv-product__description, .siv-product__price {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
}
.siv-product__description {
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.siv-product__description .gold {
  color: #d99c63;
}
.siv-product__rate {
  display: inline-flex;
  margin-top: 8px;
}
.siv-product__rate::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../image/rating-small-focused.svg) no-repeat center/contain;
}
.siv-product__rate b,
.siv-product__rate span {
  font-weight: normal;
  font-size: 14px;
}
.siv-product__rate b {
  color: #000;
}
.siv-product__rate span {
  margin-left: 2px;
  color: #929292;
}
.siv-product__inform {
  margin-top: 12px;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #d99c63;
}
.siv-product .siv-colorchip {
  margin-top: 16px;
}
.siv-product__discount {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  overflow: hidden;
  z-index: 2;
}
.siv-product__discount--rate {
  position: relative;
  display: block;
  width: 60px;
  height: 52px;
  font-size: 20px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #131922;
}
.siv-product__discount--rate:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -2px;
  transform: rotate(-7deg);
  display: block;
  width: 75px;
  height: 10px;
  background: #131922;
}
.siv-product__option {
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.siv-product--swiper {
  position: relative;
  overflow: hidden;
}
.siv-product--swiper .siv-product__list {
  flex-wrap: nowrap;
  gap: initial;
}
.siv-product--swiper .swiper-navigation {
  position: absolute;
  display: none;
  width: 100%;
  justify-content: space-between;
  z-index: 2;
}
.siv-product__list--square-456 ~ .swiper-navigation {
  top: 228px;
}

.siv-product__list--type02 ~ .swiper-navigation {
  top: 252px;
}

.siv-product__list--type03 ~ .swiper-navigation {
  top: 198px;
}

.siv-product__list--type04 ~ .swiper-navigation {
  top: 162px;
}

.siv-product__list--180 ~ .swiper-navigation {
  top: 135px;
}

.siv-product--swiper .swiper-navigation .arrow {
  position: absolute;
  display: block;
  width: 56px;
  height: 56px;
  top: 0;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35) url(../image/05-icon-32-px-thin-arrow-light-left.svg) no-repeat center/32px;
}
.siv-product--swiper .swiper-navigation .arrow.prev {
  left: 0;
}
.siv-product--swiper .swiper-navigation .arrow.next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.siv-product--swiper:hover .swiper-navigation {
  display: flex;
}

.product__list {
  display: flex;
  justify-content: space-between;
}
.product__item {
  width: 295px;
}
.product__item.type_v {
  display: flex;
  align-items: center;
}
.product__item.type_v .product__thum {
  width: 56px;
  height: 84px;
  background-color: #f8f8f8;
}
.product__thum {
  position: relative;
  width: 100%;
  height: auto;
  background: #f8f8f8;
}
.product__thum .like-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  right: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background-image: url(../image/ico_like_off_light.svg);
}
.product__thum .like-btn.on {
  background-image: url(../image/ico_like_on_light.svg);
}
@-webkit-keyframes like-on {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes like-on {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.like-btn.on {
  -webkit-animation: like-on 1s;
  animation: like-on 1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.product__thum a,
.product__thum .no-click {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product__thum a img,
.product__thum .no-click img {
  width: 100%;
  mix-blend-mode: darken;
  -o-object-fit: cover;
  object-fit: cover;
}
.product__bedge {
  display: inline-flex;
  height: 20px;
  padding: 0 4px;
  align-items: center;
  font-size: 8px;
  color: #fff;
  letter-spacing: 0.53px;
  background-color: #929292;
  text-transform: uppercase;
}
.product__bedge-wrap {
  position: absolute;
  display: flex;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.product__bedge.gray, .product__bedge.gray:hover {
  color: #fff;
  background-color: #929292;
}
.product__bedge.best {
  background-color: #141a23;
}
.product__bedge.black {
  background-color: #141a23;
}
.product__bedge.new {
  background-color: #929292;
}
.product__bedge.exclusive {
  background-color: #d99c63;
}
.product__bedge.dc-rate {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #131922;
}
.product__info {
  display: flex;
  flex-direction: column;
  padding: 15px 30px 0 0;
}
.product__info * {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__info-ranking {
  display: flex;
  width: 27px;
  height: 21px;
  margin-bottom: 12px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fefefe;
  background: url(../image/ranking_gray.svg) no-repeat center/cover;
}
.product__info-ranking.gold {
  background: url(../image/ranking_gold.svg) no-repeat center/cover;
}
.product__info-strong {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #000;
}
.product__info-description, .product__info-price {
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.product__info-description {
  margin-bottom: 2px;
}
.product.swiper-container .product__list {
  gap: 0;
}
.product.swiper-container .product__item {
  margin: 0;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.siv-colorchip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.siv-colorchip--small {
  width: 100%;
  gap: 4px;
}
.siv-colorchip__label input {
  display: none;
}
.siv-colorchip__label.on .siv-colorchip__border {
  border: 1px solid #141a23;
}
.siv-colorchip__border {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  box-sizing: border-box;
}
.siv-colorchip__label input:checked ~ .siv-colorchip__border, .siv-colorchip__label input.checked ~ .siv-colorchip__border {
  border: 1px solid #141a23;
}
.siv-colorchip--small .siv-colorchip__border {
  width: 24px;
  height: 24px;
}
.siv-colorchip__option {
  position: relative;
  display: flex;
  width: 34px;
  height: 34px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
img.siv-colorchip__option {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.siv-colorchip__label input.disabled ~ .siv-colorchip__border span.siv-colorchip__option.siv-colorchip__option--text {
  color: rgba(20, 26, 35, 0.2);
}
.siv-colorchip__label input.disabled ~ .siv-colorchip__border {
  border: none;
}
.siv-colorchip__label input.disabled ~ .siv-colorchip__border::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/detail_product_item_color_disable_x.svg) no-repeat center/100% 40px;
}

.siv-colorchip__label input:checked.disabled ~ .siv-colorchip__border span.siv-colorchip__option::after,
.siv-colorchip__label input.checked.disabled ~ .siv-colorchip__border span.siv-colorchip__option::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.siv-colorchip__label input:checked.disabled ~ .siv-colorchip__border,
.siv-colorchip__label input.checked.disabled ~ .siv-colorchip__border {
  border: none;
  box-shadow: 0 0 0 1px #131922;
}
.siv-colorchip__label input:checked.disabled ~ .siv-colorchip__border::after,
.siv-colorchip__label input.checked.disabled ~ .siv-colorchip__border::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2) url(../image/detail_product_item_color_disable_select_x.svg) no-repeat center/100%;
}

.siv-colorchip__option img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.siv-colorchip__option--text {
  width: auto;
  height: 100%;
  padding: 0 8px;
  text-indent: initial;
  font-size: 12px;
  letter-spacing: 0;
  color: #141a23;
  background: none;
}
.siv-colorchip--small .siv-colorchip__option {
  width: 20px;
  height: 20px;
}
.siv-colorchip__text {
  color: #a0a0a0;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
  margin-left: auto;
  text-decoration: underline;
}
.siv-colorchip__tooltip {
  display: none;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-color);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  padding: 0 12px;
  line-height: 40px;
  background: #141a23;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.siv-colorchip__tooltip.type-2 {
  top: -80px;
  width: 223px;
  height: 62px;
  text-align: left;
}
.siv-colorchip__tooltip.type-2 .text-wrap .tooltip-color {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
}
.siv-colorchip__tooltip.type-2 .text-wrap .tooltip-desc {
  font-size: 12px;
  line-height: 18px;
  color: #c8c8c8;
}
.siv-colorchip__tooltip.type-2 .tooltip-arrow-right {
  width: 20px;
  height: 20px;
  background: url(../image/05-icon-32-px-thin-arrow-light-right.svg) no-repeat center/cover;
}
.siv-colorchip__label:hover .siv-colorchip__tooltip {
  display: flex;
}

.siv-colorchip__label:hover .siv-colorchip__tooltip.type-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.siv-colorchip__tooltip::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 18px);
  content: "";
  display: block;
  width: 40px;
  height: 38px;
  background: url(../image/combinedShape.png) no-repeat 50% 50%;
  background-size: cover;
  z-index: 10;
}

.siv-sizechip {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.siv-sizechip__label input {
  display: none;
}
.siv-sizechip__label.on .siv-sizechip__border {
  border: 1px solid #141a23;
}
.siv-sizechip__border {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  box-sizing: border-box;
}
.siv-sizechip__label input:checked ~ .siv-sizechip__border, .siv-sizechip__label input.checked ~ .siv-sizechip__border {
  border: 1px solid #141a23;
}
.siv-sizechip__option {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 12px;
  letter-spacing: 0;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
img.siv-sizechip__option {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.siv-sizechip__label input:disabled ~ .siv-sizechip__border span.siv-sizechip__option.siv-sizechip__option--text, .siv-sizechip__label input.disabled ~ .siv-sizechip__border span.siv-sizechip__option.siv-sizechip__option--text {
  color: rgba(20, 26, 35, 0.2);
}
.siv-sizechip__label input:disabled ~ .siv-sizechip__border, .siv-sizechip__label input.disabled ~ .siv-sizechip__border {
  border: none;
}
.siv-sizechip__label input:disabled ~ .siv-sizechip__border::after, .siv-sizechip__label input.disabled ~ .siv-sizechip__border::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/detail_product_item_color_disable_x.svg) no-repeat center;
  background-size: 100% 100%;
}

.siv-sizechip__label input:checked:disabled ~ .siv-sizechip__border span.siv-sizechip__option::after, .siv-sizechip__label input:checked.disabled ~ .siv-sizechip__border span.siv-sizechip__option::after,
.siv-sizechip__label input.checked:disabled ~ .siv-sizechip__border span.siv-sizechip__option::after,
.siv-sizechip__label input.checked.disabled ~ .siv-sizechip__border span.siv-sizechip__option::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(224, 224, 224, 0.64);
}
.siv-sizechip__label input:checked:disabled ~ .siv-sizechip__border, .siv-sizechip__label input:checked.disabled ~ .siv-sizechip__border,
.siv-sizechip__label input.checked:disabled ~ .siv-sizechip__border,
.siv-sizechip__label input.checked.disabled ~ .siv-sizechip__border {
  border: none;
}
.siv-sizechip__label input:checked:disabled ~ .siv-sizechip__border::after, .siv-sizechip__label input:checked.disabled ~ .siv-sizechip__border::after,
.siv-sizechip__label input.checked:disabled ~ .siv-sizechip__border::after,
.siv-sizechip__label input.checked.disabled ~ .siv-sizechip__border::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1.5px solid #141a23;
  background: url(../image/detail_product_item_color_disable_select_x.svg) no-repeat center;
  background-size: 100% 100%;
  box-sizing: border-box;
}

.like-btn {
  width: 24px;
  height: 24px;
  background-image: url(../image/icon_heart_light_off.svg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.like-btn.on {
  background-image: url(../image/icon_heart_light_on.svg);
}

.like-img {
  width: 24px;
  height: 24px;
  background-image: url(../image/icon_heart_light_off.svg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.like-img.on {
  background-image: url(../image/icon_heart_light_on.svg);
}

.swiper-container {
  overflow: hidden;
}
.swiper-container:hover .arrow {
  display: block;
}
.swiper-container .arrow {
  display: none;
  position: absolute;
  top: 50%;
  font-size: 100px;
  z-index: 100;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}
.swiper-container .arrow.next {
  right: 0;
  background: url(../image/category_vi_next_arrow.svg) no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.35);
  background-size: 32px 32px;
}
.swiper-container .arrow.prev {
  left: 0;
  background: url(../image/category_vi_prev_arrow.svg) no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.35);
  background-size: 32px 32px;
}
.swiper-container .col {
  margin: 0;
}
.swiper-pagination-progressbar {
  height: 4px;
  overflow: visible;
}
.swiper-pagination-progressbar.swiper-scrollbar {
  top: auto;
  left: auto;
  border-radius: 0;
  height: 4px;
}
.swiper-pagination-progressbar.swiper-scrollbar .swiper-pagination-progressbar-fill {
  background-color: #000;
}
.swiper-pagination-progressbar.swiper-scrollbar .swiper-pagination-progressbar-fill::before, .swiper-pagination-progressbar.swiper-scrollbar .swiper-pagination-progressbar-fill::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-pagination-progressbar.swiper-scrollbar .swiper-pagination-progressbar-fill::after {
  right: 0;
}
.swiper-pagination-progressbar.swiper-scrollbar.white {
  background-color: rgba(224, 224, 224, 0.64) !important;
}
.swiper-pagination-progressbar.swiper-scrollbar.white .swiper-pagination-progressbar-fill {
  background-color: #fff;
}
.swiper-pagination-progressbar.swiper-scrollbar.white .swiper-pagination-progressbar-fill::before, .swiper-pagination-progressbar.swiper-scrollbar.white .swiper-pagination-progressbar-fill::after {
  background-color: #fff;
}
.swiper-pagination-progressbar.swiper-scrollbar.black .swiper-pagination-progressbar-fill {
  background-color: #141a23;
}
.swiper-pagination-progressbar.swiper-scrollbar.black .swiper-pagination-progressbar-fill::before, .swiper-pagination-progressbar.swiper-scrollbar.black .swiper-pagination-progressbar-fill::after {
  background-color: #141a23;
}
.swiper-number .swiper-pagination {
  top: 22px;
  bottom: 0;
  left: 42%;
}
.swiper-number .swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 28px;
  font-size: 14px;
  line-height: 28px;
  color: #a0a0a0;
  text-align: center;
  background: transparent;
  opacity: 1;
}
.swiper-number .swiper-pagination .swiper-pagination-bullet-active {
  color: #fff;
  background-color: #131922;
}

/* 마이페이지 레이어메뉴 */
.layer__menu {
  z-index: 100;
  position: absolute;
  top: 88px;
  right: 50%;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #000;
  transform: translateX(50%);
}
.layer__menu.customer-service {
  display: none;
}
.layer__menu.before-login, .layer__menu.after-login {
  display: none;
}
.layer__menu-item {
  padding: 9px 0;
}
.layer__menu-item a {
  font-size: 14px;
  line-height: 20px;
  color: #787878;
  white-space: nowrap;
}
.layer__menu-item a.active {
  color: #000;
}
.layer__menu-item a:hover {
  color: #000;
}
.layer__menu::before, .layer__menu::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.layer__menu::before {
  border-bottom: 10px solid #000;
  top: -10px;
}
.layer__menu::after {
  border-bottom: 10px solid #fff;
  top: -9px;
}

.siv-selectbox {
  position: relative;
  width: 100%;
  background: #fff;
}
.siv-selectbox.disabled {
  background-color: #f8f8f8;
}
.siv-selectbox.disabled .selected {
  background-image: url(../image/05-icon-16-px-thin-arrow-down-disabled.svg);
}
.siv-selectbox.disabled .selected span {
  color: #a0a0a0;
}
.siv-selectbox .selected {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background: url(../image/05-icon-16-px-thin-arrow-down.svg) no-repeat right 12px center/16px auto;
}
.siv-selectbox .selected.is-selected {
  border-color: #141a23;
}
.siv-selectbox .selected.on {
  border-color: #141a23;
  background: url(../image/05-icon-16-18-px-thin-arrow-up.svg) no-repeat right 12px center/16px auto;
}
.siv-selectbox .selected span {
  display: block;
  width: calc(100% - 48px);
  margin-left: 16px;
}
.siv-selectbox .selectbox-wrap {
  position: absolute;
  display: none;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(-1px);
  z-index: 20;
  background-color: #fff;
  height: auto;
  max-height: 192px;
  border: 1px solid #141a23;
  overflow-x: hidden;
  overflow-y: auto;
}
.siv-selectbox .selectbox .option {
  height: 48px;
}
.siv-selectbox .selectbox .option label {
  position: relative;
  display: block;
  height: 48px;
}
.siv-selectbox .selectbox .option label input[type=radio] {
  display: none;
}
.siv-selectbox .selectbox .option label input[type=radio] ~ p {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  top: 0;
  left: 0;
  padding: 0 16px;
  box-sizing: border-box;
  cursor: pointer;
}
.siv-selectbox .selectbox .option label input[type=radio] ~ p.disabled span {
  color: rgb(200, 200, 200);
}
.siv-selectbox .selectbox .option label input[type=radio] ~ p span {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.siv-selectbox .selectbox .option label input[type=radio] ~ p:has(.optional-info) span {
  width: auto;
}
.siv-selectbox .selectbox .option label input[type=radio] ~ p .optional-info {
  flex-shrink: 0;
  padding-left: 10px;
  font-size: 14px;
  color: #d99c63;
}
.detail__bottom-info-options .siv-selectbox .selectbox .option label input[type=radio] ~ p .optional-info {
  padding-left: 5px;
  font-size: 12px;
}
.siv-selectbox .selectbox .option label input[type=radio]:checked ~ p span {
  font-weight: bold;
}
.siv-selectbox .selectbox .option label input[type=radio]:disabled ~ p span, .siv-selectbox .selectbox .option label input[type=radio].disabled ~ p span,
.siv-selectbox .selectbox .option label input[type=radio] .disabled span {
  color: rgb(200, 200, 200);
}
.siv-selectbox .selected span,
.siv-selectbox .selectbox .option input[type=radio] ~ p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-size: 14px;
  color: #141a23;
}
.detail__top-info-options .siv-selectbox .selected span,
.detail__top-info-options .siv-selectbox .selectbox .option input[type=radio] ~ p span {
  font-size: 16px;
}
.siv-selectbox.static .selectbox-wrap {
  position: static !important;
}
.selectbox-light-wrap {
  display: flex;
  width: auto;
  flex-flow: row wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.selectbox-light-wrap .title {
  margin-right: auto;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0;
  color: #000;
}

.siv-selectbox.light {
  width: auto;
  height: 56px;
  background-color: transparent;
}
.siv-selectbox.light .selected {
  height: inherit;
  padding: 0 20px 0 0;
  border: none;
  background: url(../image/05-icon-16-px-thin-arrow-down.svg) no-repeat right center/16px auto;
}
.siv-selectbox.light .selected.focus {
  background: url(../image/05-icon-20-px-thin-arrow-up.svg) no-repeat right center/16px auto;
}
.siv-selectbox.light .selected span {
  width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-overflow: initial;
}
.siv-selectbox.light .selectbox {
  padding: 8px 0;
}
.siv-selectbox.light .selectbox-wrap {
  min-width: calc(100% + 36px);
  right: 0;
  top: 0;
  margin-top: 56px;
  white-space: nowrap;
}
.siv-selectbox.light .selectbox .option {
  height: 40px;
}
.siv-selectbox.light .selectbox .option label {
  height: inherit;
}
.siv-selectbox.light .selectbox .option label input[type=radio] {
  display: none;
}
.siv-selectbox.light .selectbox .option label input[type=radio] ~ p span {
  text-overflow: initial;
  overflow: visible;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] ~ .checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../image/icon_checkbox_off.svg) no-repeat center/contain;
}
input[type=checkbox]:checked ~ .checkbox {
  background: url(../image/icon_checkbox_on_black.svg) no-repeat center/contain;
}

input[type=checkbox] ~ .checkbox-v {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../image/icon_checkbox_v.png) no-repeat center/contain;
  opacity: 0.2;
}
input[type=checkbox]:checked ~ .checkbox-v {
  opacity: 1;
}

input[type=checkbox] ~ .checkbox-text {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0;
  color: #000;
}

.checkbox__label {
  display: flex;
  align-items: flex-start;
}
.checkbox__label input {
  position: relative;
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  min-width: 20px;
  background: url(../image/icon_checkbox_off.svg) no-repeat center/100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.checkbox__label input:checked {
  background: url(../image/icon_checkbox_on_black.svg) no-repeat center/contain;
}
.checkbox__label input:disabled {
  background: url(../image/icon_checkbox_on_black.svg) no-repeat center/contain;
  opacity: 0.05;
}
.checkbox__label input:disabled ~ span {
  color: #c8c8c8;
}
.checkbox__label input:disabled:checked {
  background: url(../image/icon_checkbox_on_black.svg) no-repeat center/contain;
  opacity: 0.05;
}
.checkbox__label > span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  margin-right: 6px;
}

.radio__label {
  display: flex;
  align-items: flex-start;
  line-height: 24px;
}
.radio__label input {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 8px;
  font-size: 14px;
  color: #404040;
  background: url(../image/03-selection-controls-01-radio-deselected-a-enabled.svg) no-repeat center/contain;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.radio__label input:checked {
  background: url(../image/03-selection-controls-01-radio-selected-a-enabled.svg) no-repeat center/contain;
}
.radio__label input:disabled {
  background: url(../image/03-selection-controls-01-radio-selected-c-disabled.svg) no-repeat center/contain;
}
.radio__label input:disabled.not-checked {
  background: url(../image/03-selection-controls-01-radio-deselected-c-disabled.svg) no-repeat center/contain;
}
.radio__label input:disabled ~ span {
  color: #c8c8c8;
}
.radio__label > span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #404040;
  margin-top: 0.2px;
  margin-right: 6px;
}

.order__commonform-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}
.order__commonform-item:not(:first-of-type) {
  margin-top: 8px;
}
.order__commonform-item.interval {
  margin-top: 16px;
}
.order__commonform-item.new {
  margin-top: 24px;
}
.order__commonform-item.residence {
  display: block;
}
.order__commonform-item.zipcode {
  position: relative;
  margin-top: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #141a23;
}
.order__commonform-item.zipcode input {
  width: 197px;
  height: 22px;
  border: none;
}
.order__commonform-item.zipcode input:disabled {
  background-color: transparent;
}
.order__commonform-item.zipcode button {
  margin-left: auto;
  padding: 0 16px;
  height: 40px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  color: #000;
}
.order__commonform-item.padding-style {
  padding: 0 24px;
}
.order__commonform-item .siv-selectbox {
  width: 95px;
  margin: 0;
}
.order__commonform-item .siv-selectbox span {
  width: 100%;
}
.order__commonform-item.delete-func .delete-btn {
  position: absolute;
  right: 36px;
  z-index: 2;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/04IconClose.svg) no-repeat center/contain;
}
.order__commonform-item.delete-func .delete-btn.hidden {
  display: none;
}
.order__commonform-item .checkbox__label:nth-child(2) {
  margin-left: 28px;
}
.order__commonform-input-style {
  margin-top: 0;
}
.order__commonform-label {
  width: 100%;
}
.order__commonform-name {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.order__commonform-name::-moz-placeholder {
  color: #a0a0a0;
}
.order__commonform-name::placeholder {
  color: #a0a0a0;
}
.order__commonform-num {
  width: 224px;
  height: 48px;
  margin-left: 8px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  font-size: 14px;
}
.order__commonform-search {
  width: 229px;
  height: 48px;
  margin-right: 8px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.order__commonform-search::-moz-placeholder {
  color: #a0a0a0;
}
.order__commonform-search::placeholder {
  color: #a0a0a0;
}
.order__commonform-address {
  width: 90px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.order__commonform-residence {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.order__commonform-residence::-moz-placeholder {
  color: #a0a0a0;
}
.order__commonform-residence::placeholder {
  color: #a0a0a0;
}
.order__commonform-residence:first-child {
  border-bottom: 0;
}
.order__commonform-tab {
  position: -webkit-sticky;
  position: sticky;
  top: 76px;
  left: 0;
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
  background-color: #fff;
  z-index: 11;
}
.order__commonform-tab a {
  display: inline-block;
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: -0.1px;
  color: #929292;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.order__commonform-tab a.on {
  font-weight: 500;
  color: #000;
  border-bottom: 2px solid #131922;
}
.order__commonform-btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 7px 32px 0;
  background-color: #fff;
  box-sizing: border-box;
}
.order__commonform-btn.static {
  position: static;
}
.order__address-list {
  padding: 12px 34px 0;
}
.order__address-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.order__address-item {
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}
.order__address-item .name-wrap {
  width: 216px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #131922;
}
.order__address-item .badge {
  display: inline-block;
  margin: 1px 0 0 8px;
  padding: 0 7px;
  font-size: 8px;
  font-weight: bold;
  color: #fff;
  background-color: #131922;
}
.order__address-item:last-child {
  border-bottom: 0;
}
.order__address-delete {
  width: 24px;
  height: 24px;
  background: url(../image/05-icon-24-px-thin-close.svg) no-repeat center/cover;
}
.order__address-phone {
  padding: 0 0 8px 32px;
}
.order__address-phone span {
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.order__address-phone span:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 8px;
  background-color: #e0e0e0;
}
.order__address-info {
  width: 259px;
  padding-left: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #404040;
}
.order__address-empty {
  margin-top: 206px;
  font-size: 14px;
  line-height: 20px;
  color: #787878;
  text-align: center;
}
.order__address-new {
  padding: 32px 34px 28px;
  border-bottom: 8px solid #f0f0f0;
}
.order__address-agreement .popup__checkbox {
  padding: 20px 34px;
}
.order__address-agreement .popup__description {
  padding: 20px 34px 57px;
}

.address_input_box {
  display: flex;
  flex-flow: column wrap;
  margin-top: 12px;
  gap: 4px;
}
.address_input_box p {
  font-size: 14px;
  line-height: 20px;
  color: #1a0000;
}

.siv-tab__wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.siv-tab__wrap.swiper-container {
  overflow: hidden;
}
.siv-tab__btns {
  display: flex;
}
.siv-tab__btns button,
.siv-tab__btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.siv-tab__content.hidden {
  display: none;
}
.siv-tab--rectangle {
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}
.siv-tab--rectangle button,
.siv-tab--rectangle a {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  text-align: center;
  color: #000;
  border: solid 1px #e0e0e0;
  background-color: #fff;
}
.siv-tab--rectangle button.on,
.siv-tab--rectangle a.on {
  background: #131922;
  color: #fff;
}
.siv-tab--text {
  flex-wrap: nowrap;
  gap: 32px;
  width: 100%;
  height: 48px;
}
.siv-tab--text.swiper-wrapper {
  gap: 0;
}
.siv-tab--text button,
.siv-tab--text a {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 48px;
  color: #929292;
}
.siv-tab--text button.on,
.siv-tab--text a.on {
  color: #141a23;
}
.siv-tab--text button.gnb-small__btn,
.siv-tab--text a.gnb-small__btn {
  margin: 0;
}
.siv-tab--text button.swiper-slide,
.siv-tab--text a.swiper-slide {
  width: auto !important;
}
.siv-tab--underline {
  height: 48px;
}
.siv-tab--underline button,
.siv-tab--underline a {
  flex: 1;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  letter-spacing: -0.1px;
  color: #929292;
  border-bottom: 1px solid #e0e0e0;
}
.siv-tab--underline button.on,
.siv-tab--underline a.on {
  color: #000;
  font-weight: 500;
  border-bottom: 2px solid #141a23;
}
.siv-tab--folder button,
.siv-tab--folder a {
  flex: 1;
  height: 40px;
  color: #929292;
  font-size: 14px;
  border: 1px solid #f0f0f0;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #141a23;
}
.siv-tab--folder:last-child {
  border-right: 1px solid #f0f0f0;
}

.siv-tab--folder button.on,
.siv-tab--folder a.on {
  color: #141a23;
  font-weight: 500;
  border: 1px solid #141a23;
  border-bottom: 1px solid transparent;
}
.siv-tab--filter {
  gap: 8px;
  flex-wrap: wrap;
}
.siv-tab--filter .refresh,
.siv-tab--filter div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  line-height: 20px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.siv-tab--filter button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.siv-tab--filter .refresh {
  width: 40px;
  background: #fff url(../image/search_refresh_btn.svg) no-repeat center/cover;
}
.siv-tab--filter div {
  gap: 4px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #131922;
  background-color: #fff;
}
.siv-tab--filter div .delete-btn {
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-16-px-thin-close.svg) no-repeat center/cover;
}

.siv-banner.text .btn {
  top: 32px;
}
.siv-banner.text .arrow-right {
  position: absolute;
  top: 60px;
  right: 80px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../image/05-icon-32-px-bx-arrow-right.png) no-repeat center/contain;
  flex-shrink: 0;
  z-index: 1;
}
.siv-banner.text .swiper-pagination-bullets + .arrow-right {
  top: calc(50% - 21px);
}
.siv-banner.big .siv-banner__img {
  justify-content: center;
  background: url(../image/siv_banner_img_bg.svg) no-repeat center/cover;
}
.siv-banner.big .btn {
  top: 52px;
}
.siv-banner.short .siv-banner__img {
  gap: 78px;
}
.siv-banner.short .btn {
  top: 28px;
}
.siv-banner.text-box {
  margin-bottom: 80px;
  --background-color: #131922;
}
.siv-banner.text-box [data-swiper-slide-index="1"] {
  --background-color: #d99c63;
}
.siv-banner.text-box [data-swiper-slide-index="2"] {
  --background-color: #929292;
}
.siv-banner.text-box [data-swiper-slide-index="3"] {
  --background-color: #00bfa8;
}
.siv-banner.text-box [data-swiper-slide-index="4"] {
  --background-color: #8a2fed;
}
.siv-banner.text-box [data-swiper-slide-index="5"] {
  --background-color: #2f79ed;
}
.siv-banner.text-box .swiper-pagination {
  display: none;
  position: static;
  bottom: 0;
  margin-top: 38px;
  font-size: 0;
}
.siv-banner.text-box .swiper-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  margin: 0 2px;
  background: #e0e0e0;
  border-radius: 0;
  opacity: 1;
}
.siv-banner.text-box .swiper-pagination .swiper-pagination-bullet-active {
  background: #131922;
}
.siv-banner.text-box .swiper-banner {
  border-radius: 4px;
}
.siv-banner.text-box .swiper-banner.swiper-container-initialized > .btn {
  visibility: visible;
  pointer-events: auto;
}
.siv-banner.text-box .swiper-banner.swiper-container-initialized ~ .swiper-pagination {
  display: block;
}
.siv-banner.text-box .swiper-banner > .btn {
  top: 0;
  visibility: hidden;
  pointer-events: none;
}
.siv-banner.text-box .swiper-banner > .btn.prev {
  border-radius: 4px 0 0 4px;
}
.siv-banner.text-box .swiper-banner > .btn.next {
  border-radius: 0 4px 4px 0;
}
.siv-banner.text-box .siv-banner__text-box {
  display: flex;
  width: 100%;
  height: 56px;
  padding: 0 92px;
  background-color: var(--background-color);
  align-items: center;
  box-sizing: border-box;
}
.siv-banner.text-box .siv-banner__text-box p {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
  letter-spacing: -0.51px;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}
.siv-banner__swiper {
  margin-bottom: 80px;
}
.siv-banner__swiper .swiper-pagination {
  position: static;
  bottom: 0;
  margin-top: 38px;
  font-size: 0;
}
.siv-banner__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  margin: 0 2px;
  background: #e0e0e0;
  border-radius: 0;
  opacity: 1;
}
.siv-banner__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #131922;
}
.siv-banner__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 80px;
  background-color: #f5f5f5;
}
.siv-banner__text p {
  padding-right: 32px;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  color: #000;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.siv-banner__img {
  display: flex;
  justify-content: space-between;
  gap: 66px;
}
.siv-banner__img a {
  width: 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.siv-banner__img a.none-link {
  cursor: default;
}
.siv-banner__img a:first-child:last-child {
  width: calc(50% - 33px);
}
.siv-banner__img img {
  width: 100%;
}
.siv-banner__campaign {
  margin-bottom: 12px;
}
.siv-banner__campaign .swiper-pagination {
  display: none;
  position: static;
  font-size: 0;
  margin-top: 17px;
}
.siv-banner__campaign .swiper-pagination.swiper-pagination-bullets {
  display: block;
}
.siv-banner__campaign .swiper-pagination-bullet {
  width: 10px;
  height: 1px;
  border-radius: 0;
  background-color: #787878;
  opacity: 0.2;
}
.siv-banner__campaign .swiper-pagination-bullet-active {
  background-color: #141a23;
  opacity: 1;
}
.siv-banner__campaign .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1px;
}
.siv-banner__img-only {
  display: block;
  overflow: hidden;
  position: relative;
  height: 84px;
}
.siv-banner__img-only img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form_input {
  position: relative;
  display: flex;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  align-items: center;
  background-color: #fff;
}
.form_input.no-border {
  padding: 0;
  border: none;
}
.form_input.error {
  border-color: #db3c3c;
}
.form_input input {
  margin: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #131922;
  box-sizing: border-box;
  border: none;
  outline: none;
}
.form_input input[type=password] {
  font-size: 22px;
}
.form_input input::-moz-placeholder {
  color: #a0a0a0;
}
.form_input input::placeholder {
  color: #a0a0a0;
}
.form_input input.limited {
  width: calc(100% - 50px);
}
.form_input.disabled, .form_input.read-only {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
}
.form_input.disabled input, .form_input.read-only input {
  color: #a0a0a0;
  background: transparent;
}
.form_input.disabled input ~ button, .form_input.read-only input ~ button {
  display: none;
}
.form_input .text-length {
  position: absolute;
  display: block;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  letter-spacing: 0;
  color: #787878;
}
.form_input button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-16-px-thin-close.svg) no-repeat center/contain;
  z-index: 2;
}
.form_input button.hidden {
  display: none;
}

.form-amount {
  display: flex;
  width: 100%;
  height: 46px;
  border: 1px solid #e0e0e0;
  box-sizing: content-box;
}
.form-amount__btn {
  width: 46px;
  height: 46px;
  border: none;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.form-amount__btn--plus {
  border-left: 1px solid #e0e0e0;
  background-image: url(../image/05-icon-32-px-thin-add.svg);
}
.form-amount__btn--minus {
  border-right: 1px solid #e0e0e0;
  background-image: url(../image/05-icon-32-px-thin-subtraction.svg);
}
.form-amount .form-amount__input {
  width: calc(100% - 92px);
  height: 46px;
  border: none;
  padding: 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  color: #141a23;
}
.form-amount--disabled .form-amount__btn {
  background-color: #f8f8f8;
}
.form-amount--disabled .form-amount__btn--plus {
  background-image: url(../image/05-icon-32-px-thin-add-disabled.svg);
}
.form-amount--disabled .form-amount__btn--minus {
  background-image: url(../image/05-icon-32-px-thin-subtraction-disabled.svg);
}
.form-amount--disabled .form-amount .form-amount__input {
  background-color: #f8f8f8;
  color: #e0e0e0;
}

.siv-pagination {
  display: flex;
  width: 100%;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.siv-pagination__btn {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  font-size: 14px;
  color: #a0a0a0 !important;
  justify-content: center;
  align-items: center;
}
.siv-pagination__btn.on {
  font-weight: 500;
  color: #000 !important;
}
.siv-pagination__btn--prevLeap, .siv-pagination__btn--prev, .siv-pagination__btn--next, .siv-pagination__btn--nextLeap {
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.siv-pagination__btn--prevLeap {
  margin-right: -4px;
  background-image: url(../image/detail-arrow-left-double.png);
}
.siv-pagination__btn--prev {
  background-image: url(../image/detail-arrow-left.png);
}
.siv-pagination__btn--next {
  background-image: url(../image/detail-arrow-right2.png);
}
.siv-pagination__btn--nextLeap {
  margin-left: -4px;
  background-image: url(../image/detail-arrow-right-double.png);
}
.siv-pagination .swiper-pagination-bullet {
  background: none;
  border-radius: 0;
  margin: 0 !important;
  opacity: 1 !important;
}
.siv-pagination .swiper-pagination-bullet-active {
  font-weight: 500;
  color: #000 !important;
}

.siv-breadcrumb {
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
}
.siv-breadcrumb__item {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.siv-breadcrumb__item a,
.siv-breadcrumb__item button {
  font-size: 14px;
  color: #929292;
  letter-spacing: 0.35px;
  padding-bottom: 2px;
}
.siv-breadcrumb__item > a:hover, .siv-breadcrumb__item > button:hover {
  border-bottom: 1px solid #929292;
}
.siv-breadcrumb__item:not(:first-of-type)::before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 18px;
  transform: translateY(1px);
  background: url(../image/category_current_page_arrow.svg) no-repeat center/cover;
}
.siv-breadcrumb__item--current {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
}
.siv-breadcrumb__item--current > a, .siv-breadcrumb__item--current > button {
  color: #000;
  padding-right: 18px;
  background: url(../image/breadcrumb_arrow.svg) no-repeat right center/14px;
}
.siv-breadcrumb__item--current > a:hover, .siv-breadcrumb__item--current > button:hover {
  border-color: #000;
}
.siv-breadcrumb__item--current::after {
  display: none;
}
.siv-breadcrumb__item--current:hover .siv-breadcrumb__sub {
  display: block;
}
.siv-breadcrumb__item--black > a, .siv-breadcrumb__item--black > button {
  color: #000;
  padding-right: 18px;
}
.siv-breadcrumb__sub {
  position: absolute;
  display: none;
  padding: 12px 20px;
  top: 0;
  border: 1px solid #000;
  background-color: #fff;
  z-index: 5;
  transform: translateY(40px);
}
.siv-breadcrumb__sub.active {
  display: block;
}
.siv-breadcrumb__subItem {
  width: 140px;
}
.siv-breadcrumb__subItem.on a {
  font-weight: bold;
  color: #000;
}
.siv-breadcrumb__subItem a {
  display: block;
  max-width: 100%;
  line-height: 36px;
  font-size: 14px;
  color: #787878;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.siv-breadcrumb__subItem a:hover {
  color: #000;
  text-decoration: underline;
}

.calander__select .calander__wrap {
  display: none;
}
.calander__select .calander__wrap.on {
  display: flex;
}

.calander__wrap {
  display: flex;
  align-items: center;
}
.calander__wrap .form_input {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 12px 0 16px;
}
.calander__wrap .form_input input:-moz-read-only {
  height: 40px;
  font-size: 12px;
  letter-spacing: 0;
  color: #000;
  background: url(../image/icon_calander.svg) no-repeat center right;
}
.calander__wrap .form_input input:read-only {
  height: 40px;
  font-size: 12px;
  letter-spacing: 0;
  color: #000;
  background: url(../image/icon_calander.svg) no-repeat center right;
}
.calander__wrap .form_input input:-moz-read-only:focus-visible {
  outline: none;
}
.calander__wrap .form_input input:read-only:focus-visible {
  outline: none;
}
.calander__wrap > span {
  padding: 0 6px;
  font-size: 7px;
  flex-grow: 0.5;
}
.calander__wrap > .btn-wide {
  height: 40px;
  margin-left: 12px;
  width: 82px;
  flex-shrink: 0;
}

.calander__notice {
  display: none;
}
.calander__notice.padding-style {
  padding-bottom: 24px;
  padding-top: 8px;
}
.calander__notice.on {
  display: block;
}
.calander__notice-text {
  position: relative;
  padding: 0 0 8px 8px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.calander__notice-text:last-child {
  padding-bottom: 0;
}
.calander__notice-text::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 2px;
  height: 2px;
  background: #929292;
  border-radius: 50%;
}

.responsive_wrap .responsive_inner {
  width: 100%;
}
.responsive_wrap .responsive_inner .title {
  display: none;
}
.responsive_wrap .responsive_inner .responsive_content {
  width: 100%;
  margin: 0 auto;
}
.responsive_wrap .responsive_inner .responsive_full {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .responsive_wrap {
    background-color: #f0f0f0;
    padding-top: 60px;
    padding-bottom: 120px;
    margin-bottom: -120px;
  }
  .responsive_wrap .responsive_inner {
    width: 1000px;
    height: auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin: 0 auto;
    padding: 40px 0;
  }
  .responsive_wrap .responsive_inner .title {
    display: block;
    font-size: 32px;
    text-align: center;
    line-height: 40px;
  }
  .responsive_wrap .responsive_inner .responsive_content {
    width: 375px;
    margin: 0 auto;
  }
  .responsive_wrap .responsive_inner .responsive_full {
    width: 100%;
  }
}
.sb-order {
  width: calc(100% - 336px - 48px);
}
.sb-order__top {
  position: sticky;
  position: -webkit-sticky;
  display: flex;
  height: 66px;
  align-items: center;
  margin-bottom: 22px;
  z-index: 5;
  background-color: #fff;
  top: 75px;
}
.jaju-header ~ .shopping-bag .sb-order__top {
  top: 106px;
  transition: top 0.3s;
}
.jaju-header.has-banner ~ .shopping-bag .sb-order__top {
  top: 206px;
}
.sb-order__top .checkbox__label span {
  color: #000;
  font-size: 16px;
}
.sb-order__btns {
  display: flex;
  margin-left: auto;
}
.sb-order__btns button {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #787878;
  text-decoration: underline;
  align-items: center;
}
.sb-order__btns button:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  margin: 0 16px;
}
.sb-order__list {
  border-top: 1px solid #f0f0f0;
}
.sb-order__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0 43px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}
.sb-order__checkbox {
  margin-right: 12px;
}
.sb-order__thum {
  position: relative;
  width: 96px;
  margin-right: 28px;
  text-align: center;
}
.sb-order__thum .js-change-option {
  margin-top: 11px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #a0a0a0;
}
.sb-order__thum .like-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
}
.sb-order__frame {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 2/3;
  background-color: #f8f8f8;
  align-items: center;
  overflow: hidden;
}
.sb-order__frame > a {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 2/3;
  align-items: center;
  overflow: hidden;
}
.sb-order__frame img {
  width: 100%;
  mix-blend-mode: multiply;
}
.sb-order__soldout {
  position: absolute;
  display: flex;
  bottom: 0;
  height: 32px;
  width: 100%;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(20, 26, 35, 0.3);
  z-index: 2;
}
.sb-order__info {
  display: flex;
  min-height: 174px;
  flex-flow: column wrap;
  width: calc(100% - 24px - 12px - 96px - 28px - 44px - 141px - 60px - 91px - 57px);
  margin-right: 17px;
}
.sb-order__info .siv-badge {
  height: 20px;
  margin-bottom: 8px;
}
.sb-order__info .siv-badge__item {
  font-size: 8px;
}
.sb-order__brand {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  color: #000;
}
.sb-order__name {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  color: #000;
  word-break: break-all;
}
.sb-order__option {
  margin-bottom: 12px;
}
.sb-order__option li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #787878;
  word-break: break-all;
}
.sb-order__stock {
  margin-bottom: 25px;
}
.sb-order__stock li {
  font-size: 16px;
  color: #d99c63;
}
.sb-order__point {
  display: flex;
  margin-top: auto;
  gap: 8px 20px;
}
.sb-order__point li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0;
  color: #787878;
}
.sb-order__point li i {
  font-style: normal;
}
.sb-order__point li span {
  display: inline-flex;
  width: 20px;
  height: 16px;
  margin-right: 8px;
  background-color: #f0f0f0;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #141a23;
}
.sb-order__price {
  display: flex;
  width: 141px;
  margin-right: 80px;
  padding-top: 43px;
  flex-flow: column wrap;
  align-items: flex-end;
}
.sb-order__price .form-amount {
  width: 88px;
  height: 24px;
  margin-top: 16px;
}
.sb-order__price .form-amount__btn {
  width: 24px;
  height: 24px;
  background-size: 14px 14px;
}
.sb-order__price .form-amount .form-amount__input {
  width: 40px;
  height: 24px;
  font-size: 12px;
}
.sb-order__original-price {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.sb-order__current-price {
  position: relative;
  display: inline-flex;
  height: 30px;
  align-items: flex-end;
  font-size: 14px;
  letter-spacing: 0;
  color: #000;
}
.sb-order__current-price span {
  font-weight: bold;
  font-size: 22px;
  margin-right: 2px;
  transform: translateY(2px);
}
.sb-order__current-price .js-discounted {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  transform: translate(100%, -1px);
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../image/05-icon-32-px-thin-arrow-right.png) no-repeat center/contain;
}
.sb-order__buy {
  display: flex;
  width: 115px;
  height: 174px;
  align-items: center;
}
.sb-order__buy .js-buy-now {
  width: 92px;
  height: 40px;
  font-size: 16px;
  background-color: #fff;
}
.sb-order__buy .js-restock {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #404040;
  padding-right: 16px;
  background: url(../image/05-icon-16-px-thin-arrow-right.svg) no-repeat right center/14px;
}
.sb-order__delete {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 40px;
  right: 0;
  background: url(../image/05-icon-24-px-thin-close.svg) no-repeat center/contain;
}
.sb-order__total {
  padding: 25px 0 24px 0;
  text-align: center;
  background-color: #f8f8f8;
}
.sb-order__sum {
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #000;
}
.sb-order__sum span.bold {
  font-size: 18px;
  font-weight: bold;
}
.sb-order__sum .ico-tooltip-wrap {
  display: inline-block;
  vertical-align: text-bottom;
}
.sb-order__sum .ico-tooltip-wrap .popup-tooltip-text {
  text-align: left;
}
.sb-order__notice {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #787878;
}
.sb-order__novice {
  display: flex;
  flex-flow: column wrap;
  margin-top: 40px;
  gap: 8px;
}
.sb-order__novice li {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #404040;
}
.sb-order__novice li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  top: 10px;
  margin-left: -10px;
  border-radius: 50%;
  background-color: #404040;
}
.sb-order__empty {
  display: flex;
  padding: 100px 0 140px 0;
  margin-top: -22px;
  flex-flow: column wrap;
  gap: 20px;
  align-items: center;
}
.sb-order__empty p {
  font-size: 16px;
  line-height: 24px;
  color: #787878;
}
.sb-order__empty button {
  width: 327px;
}
.sb-order__additional {
  position: relative;
  width: calc(100% - 32px - 12px - 96px - 28px);
  margin-left: auto;
  padding: 17px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}
.sb-order__additional > *:not(:first-child) {
  margin-top: 15px;
}
.sb-order__additional .sb-shipping-alert {
  font-size: 16px;
  line-height: 24px;
  color: #db3c3c;
}
.sb-order__additional .sb-shipping-date {
  font-size: 16px;
  line-height: 24px;
  color: #787878;
}
.sb-order__alternative {
  width: 100%;
  border-top: 1px solid #f0f0f0;
  margin-top: 40px;
}
.sb-order__alternative .alternative-title {
  padding: 23px 36px 21px;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  font-weight: bold;
}
.sb-order__alternative .alternative-item .alternative-swiper {
  margin-left: 36px;
}
.sb-order__alternative .alternative-item .alternative-swiper .swiper-navigation {
  display: none;
}
.sb-order__alternative .alternative-item .alternative-swiper .swiper-navigation .arrow {
  width: 56px;
  height: 56px;
  top: 70px;
  transform: translateY(0);
}
.sb-order__alternative .alternative-item .alternative-swiper .swiper-navigation .arrow.swiper-button-disabled {
  background-color: rgba(0, 0, 0, 0.1);
}
.sb-order__alternative .alternative-item .alternative-swiper.swiper-has-navigation .swiper-navigation {
  display: block;
}
.sb-order__alternative .alternative-item .product__item {
  width: 117px;
}
.sb-order__alternative .alternative-item .product__thum .like-btn {
  top: 4px;
  right: 4px;
}
.sb-order__alternative .alternative-item .product__data {
  padding: 8px 0 17px;
}
.sb-order__alternative .alternative-item .product__data-brand {
  display: block;
  white-space: nowrap;
}

.sb-coupon.sb-coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: calc(100% - 32px - 12px - 96px - 28px);
  margin-top: 20px;
  margin-left: auto;
  padding: 20px 0 40px 0;
  border-top: 1px solid #f0f0f0;
}
.sb-coupon.sb-coupon .btn-icon {
  flex-shrink: 0;
  flex-grow: initial;
  width: 190px;
  padding: 0;
}
.sb-coupon.sb-coupon .btn-icon.gray {
  background-color: #f8f8f8;
}
.sb-coupon.sb-coupon .btn-text {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  height: 36px;
  margin-left: 24px;
  font-size: 14px;
  letter-spacing: 0;
  color: #404040;
}
.sb-coupon.sb-coupon .btn-text .arrow-right {
  width: 14px;
  height: 14px;
  background: url(../image/05-icon-16-px-thin-arrow-right.svg) no-repeat center/contain;
  text-indent: -9999px;
  font-size: 0;
  overflow: hidden;
}

.sb-gift {
  display: flex;
  flex-flow: column wrap;
  gap: 16px;
  width: calc(100% - 32px - 12px - 96px - 28px);
  margin-top: 16px;
  margin-left: auto;
  padding: 16px 0 40px 0;
  border-top: 1px solid #f0f0f0;
}
.sb-gift h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #141a23;
}
.sb-gift__list {
  display: flex;
  flex-flow: column wrap;
  gap: 16px;
  padding: 16px;
  background: #f8f8f8;
}
.sb-gift__item {
  position: relative;
  display: flex;
  padding-left: 12px;
  line-height: 24px;
  align-items: flex-start;
}
.sb-gift__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  top: 10px;
  left: 0;
  background-color: #141a23;
  border-radius: 50%;
}
.sb-gift__item span {
  display: block;
  max-width: 725px;
  font-size: 16px;
  letter-spacing: 0;
  color: #404040;
}
.sb-gift__item i {
  font-style: normal;
}
.sb-gift__item button {
  margin-left: auto;
}
.sb-gift__item button.search {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url(../image/ico_search.svg) no-repeat center/contain;
}
.sb-gift__item button.js-select-gift, .sb-gift__item button.js-reselect-gift {
  display: inline-flex;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0;
  color: #404040;
  align-items: center;
  gap: 2px;
}
.sb-gift__item button.js-select-gift .arrow-right, .sb-gift__item button.js-reselect-gift .arrow-right {
  width: 14px;
  height: 14px;
  background: url(../image/05-icon-16-px-thin-arrow-right.svg) no-repeat center/contain;
  text-indent: -9999px;
  font-size: 0;
  overflow: hidden;
}

.sb-etc {
  display: flex;
  width: calc(100% - 32px - 12px - 96px - 28px);
  margin-top: 18px;
  margin-left: auto;
  padding: 18px 0 40px 0;
  border-top: 1px solid #f0f0f0;
}
.sb-etc__list {
  display: flex;
  flex-flow: column wrap;
  gap: 18px;
}
.sb-etc__item {
  position: relative;
  display: flex;
  padding-left: 12px;
  line-height: 22px;
  align-items: flex-start;
}
.sb-etc__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  top: 9px;
  left: 0;
  background-color: #141a23;
  border-radius: 50%;
}
.sb-etc__item span {
  font-size: 14px;
  line-height: 22px;
  color: #141a23;
}
.sb-etc__item.alert::before {
  background-color: #db3c3c;
}
.sb-etc__item.alert span {
  color: #db3c3c;
}
.sb-etc__item button {
  display: inline-flex;
  margin-left: 16px;
  line-height: 22px;
  font-size: 14px;
  letter-spacing: 0;
  color: #787878;
  align-items: center;
  gap: 2px;
}
.sb-etc__item button .arrow-right {
  width: 14px;
  height: 14px;
  background: url(../image/05-icon-16-px-thin-arrow-right.svg) no-repeat center/contain;
  text-indent: -9999px;
  font-size: 0;
  overflow: hidden;
}

.sb-price {
  position: sticky;
  position: -webkit-sticky;
  width: 336px;
  padding: 40px 30px 34px 30px;
  background-color: #f5f5f5;
  box-sizing: border-box;
  top: 75px;
}
.jaju-header ~ .shopping-bag .sb-price {
  top: 106px;
  transition: top 0.3s;
}
.jaju-header.has-banner ~ .shopping-bag .sb-price {
  top: 206px;
}
.sb-price__list {
  display: flex;
  flex-flow: column wrap;
  gap: 9px;
}
.sb-price__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sb-price * {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.sb-price__title {
  display: inline-flex;
  align-items: center;
  color: #787878;
}
.sb-price__title b {
  color: #131922;
}
.sb-price__title .arrow-right {
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-16-px-thin-arrow-right.svg) no-repeat center/10px;
}
.sb-price__price {
  color: #131922;
}
.sb-price__price span,
.sb-price__price u,
.sb-price__price b {
  font-weight: 500;
}
.sb-price__border {
  width: 100%;
  height: 1px;
  margin-top: 7px;
  background-color: #e0e0e0;
  margin-bottom: 7px;
}
.sb-price__border.black {
  margin-bottom: 11px;
  background-color: #131922;
}
.sb-price__item--total {
  margin-bottom: 3px;
}
.sb-price__item--total .sb-price__title {
  font-weight: bold;
  color: #000;
}
.sb-price__item--total .sb-price__price {
  color: #d99c63;
}
.shopping-bag .sb-price__price {
  color: #000;
}

.sb-price__item--total .sb-price__price span,
.sb-price__item--total .sb-price__price u,
.sb-price__item--total .sb-price__price b {
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
}
.sb-price__item--point {
  padding-top: 16px;
}
.sb-price__item--point .sb-price__title,
.sb-price__item--point .sb-price__title b,
.sb-price__item--point .sb-price__title button {
  font-size: 14px;
  line-height: 20px;
}
.sb-price__item--agreement .personal-agreement {
  width: 100%;
}
.sb-price__item--agreement .personal-agreement * {
  line-height: 20px;
}
.sb-price__item--agreement .personal-agreement .agreement__title {
  font-size: 14px;
  color: #131922;
  font-weight: bold;
  padding-bottom: 18px;
}
.sb-price__item--agreement .personal-agreement .agreement__list-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sb-price__item--agreement .personal-agreement .agreement__list-title .agreement-toggle {
  width: 16px;
  height: 16px;
  background: url(../image/icon_arrow_down.svg) no-repeat center/cover;
  transform: rotate(180deg);
}
.sb-price__item--agreement .personal-agreement .agreement__list-title.close .agreement-toggle {
  transform: rotate(0);
}
.sb-price__item--agreement .personal-agreement .agreement__list-title.close ~ .agreement__list-inner {
  display: none;
}
.sb-price__item--agreement .personal-agreement .agreement__list-title .checkbox__label span {
  font-size: 14px;
}
.sb-price__item--agreement .personal-agreement .agreement__list-title .checkbox__label > span {
  font-weight: 500;
  color: #404040;
}
.sb-price__item--agreement .personal-agreement .agreement__list-title .checkbox__label input {
  width: 20px;
  height: 20px;
}
.sb-price__item--agreement .personal-agreement .agreement__list-inner {
  font-size: 12px;
  color: #787878;
  padding: 17px 0;
}
.sb-price__item--agreement .personal-agreement .agreement__list-inner .agreement-info {
  padding: 12px 0;
  font-size: 12px;
  color: #787878;
}
.sb-price__item--agreement .personal-agreement .agreement__list-inner .agreement-info strong.agreement-info__emphasized {
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
.sb-price__item--agreement .personal-agreement .agreement__list-inner .agreement-info strong.agreement-info__emphasized.smaller-font {
  font-size: 12px;
}
.sb-price__item--agreement .personal-agreement .agreement__list:not(:first-child) {
  margin-top: 16px;
}
.sb-price__item.point .sb-price__title, .sb-price__item.point .sb-price__price {
  font-size: 14px;
  color: #404040;
  line-height: 20px;
}
.sb-price__item.point .sb-price__title b,
.sb-price__item.point .sb-price__title span, .sb-price__item.point .sb-price__price b,
.sb-price__item.point .sb-price__price span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.sb-price__agreement {
  display: flex;
  width: 272px;
  align-items: center;
  color: #131922;
  font-size: 14px;
  line-height: 20px;
  justify-content: space-between;
}
.sb-price__agreement .arrow-right {
  width: 16px;
  height: 16px;
  background: url(../image/ico_arrow_right_gray.svg) no-repeat center/contain;
}
.sb-price__btns {
  display: flex;
  gap: 4px;
  margin-top: 24px;
}
.sb-price__btns button.btn-line-gray {
  width: 104px;
  padding: 0 12px;
  background-color: #fff;
  justify-content: flex-end;
  background-image: url(../image/ico_gift-v2.svg);
  background-repeat: no-repeat;
  background-position: 12px 12px;
  background-size: 20px;
  font-size: 16px;
  line-height: 22px;
}
.sb-price__btns button.btn-vlack {
  width: calc(100% - 104px - 4px);
  font-size: 16px;
}
.sb-price .payment-detail {
  width: 100%;
}
.sb-price .payment-detail .payment-type {
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #131922;
}
.sb-price .payment-detail .price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sb-price .payment-detail .price-item .price-label {
  font-size: var(--price-label-font, 16px);
  font-weight: 400;
  line-height: var(--price-line-height, 24px);
  color: var(--price-label-color, #787878);
}
.sb-price .payment-detail .price-item .price-value {
  color: var(--price-label-color, #131922);
  font-weight: 400;
}
.sb-price .payment-detail .price-item .price-value,
.sb-price .payment-detail .price-item .price-value strong {
  font-size: var(--price-label-font, 16px);
  line-height: var(--price-line-height, 24px);
}
.sb-price .payment-detail .price-item .price-value strong {
  display: inline-block;
  font-weight: 500;
  padding-right: 2px;
}
.sb-price .payment-detail .price-item button.price-value strong {
  text-decoration: underline;
}
.sb-price .payment-detail .item-group-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #131922;
}
.sb-price .payment-detail.order-payment .item-group-order {
  border-top: 1px solid #131922;
  padding: 8px 0 0;
}
.sb-price .payment-detail.order-payment .item-group-order > .price-item {
  padding: 8px 0;
}
.sb-price .payment-detail.order-payment .item-group-order > .price-item > .price-label {
  font-weight: 700;
}
.sb-price .payment-detail.order-payment .item-group-order > .price-item > .price-value,
.sb-price .payment-detail.order-payment .item-group-order > .price-item > .price-value strong {
  font-weight: 700;
}
.sb-price .payment-detail.order-payment .item-group-detail {
  border-left: 2px solid #d5d5d5;
  padding: 1px 0 0px 8px;
}
.sb-price .payment-detail.order-payment .item-group-detail .price-item ~ .price-item {
  margin-top: 8px;
}
.sb-price .payment-detail.order-payment .item-group-point {
  padding: 16px 0 0;
  margin-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.sb-price .payment-detail.order-payment .item-group-point .price-item ~ .price-item {
  margin-top: 8px;
}
.sb-price .payment-detail.order-payment .item-group-payment {
  padding: 16px 0 17px;
  border-top: 1px solid #131922;
}
.sb-price .payment-detail.order-payment .item-group-payment .price-label {
  --price-label-color: #000;
  font-weight: 700;
}
.sb-price .payment-detail.order-payment .item-group-payment .price-value {
  --price-label-color: #d99c63;
  --price-label-font: 16px;
  --price-line-height: 22px;
  font-weight: 500;
}
.sb-price .payment-detail.order-payment .item-group-payment .price-value strong {
  --price-label-font: 28px;
  --price-line-height: 30px;
  font-weight: 700;
}
.sb-price .payment-detail.order-payment .item-group-discount {
  padding: 16px 12px;
  --price-label-color: #404040;
  background-color: #f8f8f8;
}
.sb-price .payment-detail.order-payment .item-group-method {
  border-top: 1px solid #e0e0e0;
  padding: 14px 0 0;
}
.sb-price .payment-detail.order-payment .item-group-method > .price-item {
  padding: 4px 0;
  --price-label-font: 14px;
  --price-line-height: 20px;
  --price-label-color: #404040;
}
.sb-price .payment-detail.order-payment .item-group-method > .price-item.deposit {
  --price-label-color: #131922;
}
.sb-price .payment-detail.order-payment .item-group-method > .price-item.deposit .price-label {
  font-weight: 400;
}
.sb-price .payment-detail.order-payment .item-group-method .additional-information {
  --price-label-font: 14px;
  --price-line-height: 20px;
  --price-label-color: #404040;
}
.sb-price .payment-detail.order-payment .item-group-method .additional-information > .price-item {
  padding: 4px 0;
}
.sb-price .payment-detail.order-payment .item-group-method .additional-information.remit > .price-item {
  padding: 4px 0;
  justify-content: flex-start;
}
.sb-price .payment-detail.order-payment .item-group-method .additional-information.remit > .price-item .price-value:before {
  content: ":";
  padding: 0 3px;
}
.sb-price .payment-detail.order-payment .item-group-method .additional-information.remit > .price-item .price-value strong:not(.gold) {
  font-weight: 400;
}
.sb-price .payment-detail.order-payment .item-group-method ~ .item-group-method {
  margin-top: 16px;
}

.siv-bullet {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
}
.siv-bullet li {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  word-break: keep-all;
  white-space: normal;
  text-align: left;
}
.siv-bullet li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
}
.siv-bullet li.font-size-16 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.siv-bullet li.bullet-4 {
  position: relative;
  padding-left: 10px;
  white-space: normal;
}
.siv-bullet li.bullet-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.siv-bullet li.bullet-4.type-2::before {
  top: 12px;
}
.siv-bullet--gray li {
  color: #787878;
}
.siv-bullet--gray li::before {
  background-color: #929292;
}
.siv-bullet--vlack li {
  color: #141a23;
}
.siv-bullet--vlack li::before {
  background-color: #141a23;
}
.siv-bullet--black li {
  color: #000;
}
.siv-bullet--black li::before {
  background-color: #000;
}
.siv-bullet--text-gray li {
  color: #404040;
}
.siv-bullet--text-gray li::before {
  background-color: #141a23;
}
.siv-bullet li.gold {
  color: #d99c63;
}
.siv-bullet li.gold::before {
  background-color: #d99c63;
}
.siv-bullet li.alert {
  color: #db3c3c;
}
.siv-bullet li.alert::before {
  background-color: #db3c3c;
}

.login .form_input,
.join .form_input {
  position: relative;
  display: block;
  margin-bottom: 8px;
  padding: 0;
  border: none;
}
.login .form_input input,
.login .form_input textarea,
.join .form_input input,
.join .form_input textarea {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #131922;
  border: 1px solid #e0e0e0;
  margin: 0;
}
.login .form_input input.writing,
.login .form_input textarea.writing,
.join .form_input input.writing,
.join .form_input textarea.writing {
  padding-right: 44px;
}
.login .form_input input:-moz-read-only, .login .form_input textarea:-moz-read-only, .join .form_input input:-moz-read-only, .join .form_input textarea:-moz-read-only {
  color: #c8c8c8;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
}
.login .form_input input:disabled, .login .form_input input:read-only,
.login .form_input textarea:disabled,
.login .form_input textarea:read-only,
.join .form_input input:disabled,
.join .form_input input:read-only,
.join .form_input textarea:disabled,
.join .form_input textarea:read-only {
  color: #c8c8c8;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
}
.login .form_input input:-moz-read-only ~ button, .login .form_input textarea:-moz-read-only ~ button, .join .form_input input:-moz-read-only ~ button, .join .form_input textarea:-moz-read-only ~ button {
  display: none;
}
.login .form_input input:disabled ~ button, .login .form_input input:read-only ~ button,
.login .form_input textarea:disabled ~ button,
.login .form_input textarea:read-only ~ button,
.join .form_input input:disabled ~ button,
.join .form_input input:read-only ~ button,
.join .form_input textarea:disabled ~ button,
.join .form_input textarea:read-only ~ button {
  display: none;
}
.login .form_input input::-moz-placeholder, .login .form_input textarea::-moz-placeholder, .join .form_input input::-moz-placeholder, .join .form_input textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a0a0a0;
  opacity: 1;
  /* Firefox */
}
.login .form_input input::placeholder,
.login .form_input textarea::placeholder,
.join .form_input input::placeholder,
.join .form_input textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a0a0a0;
  opacity: 1;
  /* Firefox */
}
.login .form_input input:-ms-input-placeholder,
.login .form_input textarea:-ms-input-placeholder,
.join .form_input input:-ms-input-placeholder,
.join .form_input textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a0a0a0;
}
.login .form_input input::-ms-input-placeholder,
.login .form_input textarea::-ms-input-placeholder,
.join .form_input input::-ms-input-placeholder,
.join .form_input textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a0a0a0;
}
.login .form_input button,
.join .form_input button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/04IconClose.svg) no-repeat center/contain;
}
.login .form_input button.hidden,
.join .form_input button.hidden {
  display: none;
}
.login .form_input textarea,
.join .form_input textarea {
  resize: none;
  height: 66px;
}
.login .input-reset:not(.hidden),
.join .input-reset:not(.hidden) {
  display: block !important;
}
.login .form_input input[type=password],
.join .form_input input[type=password] {
  font-size: 14px;
}
.login .checkbox__label > span,
.login .radio__label > span,
.join .checkbox__label > span,
.join .radio__label > span {
  font-size: 14px;
}
.login .btn-wide,
.join .btn-wide {
  height: 48px;
}
.login .btn-wide.big,
.join .btn-wide.big {
  height: 70px;
}
.login .btn-wide.mid,
.join .btn-wide.mid {
  height: 48px;
}
.login .btn-wide.sml,
.join .btn-wide.sml {
  height: 32px;
}
.login .line-tab__btns,
.join .line-tab__btns {
  display: flex;
  height: 48px;
  border-bottom: 1px solid #e0e0e0;
}
.login .line-tab__btns button,
.join .line-tab__btns button {
  flex: 1;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  letter-spacing: -0.01px;
  color: #929292;
}
.login .line-tab__btns button.on,
.join .line-tab__btns button.on {
  height: 49px;
  color: #000;
  border-bottom: 2px solid #141a23;
}

.membership-integrated__list {
  margin-bottom: 16px;
}
.membership-integrated__item {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
}
.membership-integrated__item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.membership-integrated__title-2 {
  width: 82px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  color: #787878;
}
.membership-integrated__description-2 {
  width: 233px;
  font-size: 16px;
  font-weight: bold;
}
.membership-integrated__description-2.margin {
  margin-top: 8px;
}
.membership-integrated__description-3 {
  margin-top: 8px;
  font-size: 14px;
  color: #787878;
}
.membership-integrated__box {
  width: 233px;
}
.membership-integrated__list-2 {
  padding: 0 24px;
}
.membership-integrated__item-2 {
  padding-left: 10px;
  position: relative;
  font-size: 14px;
  letter-spacing: 0;
  color: #404040;
}
.membership-integrated__item-2:not(.membership-integrated__item-2:first-of-type) {
  margin-top: 8px;
}
.membership-integrated__item-2::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #404040;
}
.membership-ranking {
  padding-top: 8px;
}
.membership-ranking__list:nth-child(n+2) {
  border-top: 1px solid #e0e0e0;
}
.membership-ranking__list img {
  width: 100%;
}
.membership-ranking__item {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}
.membership-ranking__item.bronze {
  align-items: center;
}
.membership-ranking__badge {
  width: 69px;
  text-align: center;
  margin-right: 24px;
}
.membership-ranking__badge img {
  width: 45px;
}
.membership-ranking__badge-text {
  margin-top: 10px;
  font-size: 12px;
  color: #404040;
  font-weight: bold;
}
.membership-ranking__title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.membership-ranking__wrap {
  padding-top: 8px;
}
.membership-ranking__text-2 {
  margin: 8px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}
.membership-ranking__desc {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
  margin-top: 24px;
}
.membership-ranking__desc li {
  position: relative;
  padding-left: 10px;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.membership-ranking__desc li::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 2px;
  background-color: #404040;
  border-radius: 50%;
  top: 8px;
  left: 0;
}

.club-benefit {
  background-color: #f9f9f9;
  padding-bottom: 32px;
}
.club-benefit__head {
  padding: 40px 0 22px;
}
.guide-head + .guide-area > .club-ranking__head {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.club-benefit__logo {
  margin-bottom: 16px;
  text-align: center;
}
.club-benefit__logo img {
  display: inline-block;
}
.club-benefit__logo img.jaju {
  width: 72px;
  height: 21px;
}
.club-benefit__h1 {
  margin-bottom: 14px;
  color: #141a23;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  text-align: center;
}
.club-benefit__h3 {
  margin-bottom: 8px;
  padding: 0 24px;
  color: #141a23;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}
.club-benefit__txt {
  color: #787878;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.club-benefit__txt--sub {
  color: #404040;
  font-size: 16px;
  line-height: 20px;
}
.club-benefit__list {
  margin: 0 -9px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.05);
}
.popup-club-join-jaju .club-benefit__list {
  box-shadow: none;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  border-radius: 0;
  margin: 0 auto;
}
.club-benefit__item {
  padding: 22px 0;
  margin: 0 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.club-benefit__item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.popup-club-join-jaju .club-benefit__item {
  margin: 0;
}
.club-benefit__item::before {
  content: "";
  display: block;
  width: 77px;
  height: 77px;
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-sizing: content-box;
}
.popup-club-join-jaju .club-benefit__item::before {
  padding-left: 10px;
}
.club-benefit__item:first-child {
  padding-top: 30px;
}
.club-benefit__item:last-child {
  padding-bottom: 30px;
}
.club-benefit__item.item-new::before {
  background-image: url(/fo/assets/jaju/image/logo/club-benefit-new.png);
}
.club-benefit__item.item-monthly::before {
  background-image: url(/fo/assets/jaju/image/logo/club-benefit-monthly.png);
}
.club-benefit__item.item-additional::before {
  background-image: url(/fo/assets/jaju/image/logo/club-benefit-additional.png);
}
.club-benefit__text {
  min-width: 0;
}
.club-benefit__title {
  font-size: 15px;
  line-height: 21px;
  color: #222222;
  font-weight: bold;
}
.club-benefit__sub {
  display: block;
  font-size: 13px;
  line-height: 19px;
  color: #222222;
  margin-top: 5px;
}
.club-benefit__desc {
  margin-top: 8px;
}
.club-benefit__desc .dot-list li {
  font-size: 12px;
  line-height: 24px;
  color: #999;
}
.club-benefit__coupon--visual {
  position: relative;
  width: 100%;
  height: 164px;
  margin: 0 auto 16px;
  background: url(../image/coupon_bg.svg) no-repeat center/cover;
}
.club-benefit__coupon--visual > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.club-benefit__coupon--visual p {
  position: absolute;
  left: 24px;
}
.club-benefit__coupon--visual .text-1 {
  top: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #d99c63;
}
.club-benefit__coupon--visual .text-2 {
  bottom: 44px;
  font-size: 33px;
  line-height: 48px;
  color: #fff;
}
.club-benefit__coupon--visual .text-2 .unit {
  margin-left: 4px;
  font-size: 20px;
}
.club-benefit__coupon--visual .text-3 {
  bottom: 20px;
  left: 24px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.85);
}
.club-benefit__coupon--visual .icon-download {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../image/icon_white_download.svg) no-repeat center/cover;
}

.club-ranking__head {
  padding: 22px 0;
}
.guide-head + .guide-area > .club-ranking__head {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.club-ranking__logo {
  margin-bottom: 16px;
  text-align: center;
}
.club-ranking__logo img {
  display: inline-block;
}
.club-ranking__logo img.jaju {
  width: 71px;
  height: 20px;
}
.club-ranking__logo img.sib {
  width: 150px;
  height: 20px;
}
.club-ranking__logo img.du {
  width: 15.3px;
  height: 32px;
}
.club-ranking__h1 {
  margin-bottom: 14px;
  color: #131922;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  text-align: center;
}
.club-ranking__h3 {
  margin-bottom: 8px;
  padding: 0 24px;
  color: #141a23;
  font-size: 16px;
  line-height: 2.2px;
  font-weight: bold;
}
.club-ranking__txt {
  color: #787878;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.club-ranking__txt--sub {
  color: #404040;
  font-size: 16px;
  line-height: 20px;
}
.club-ranking__coupon--visual {
  position: relative;
  margin-bottom: 16px;
  text-align: center;
}
.club-ranking__coupon--visual p {
  position: absolute;
  left: 24px;
}
.club-ranking__coupon--visual .text-1 {
  top: 24px;
  font-size: 13px;
  font-weight: 100;
  line-height: 18px;
  letter-spacing: 0;
  color: #d99c63;
}
.club-ranking__coupon--visual .text-2 {
  top: 72px;
  font-size: 33px;
  line-height: 48px;
  letter-spacing: 0;
  color: #fff;
}
.club-ranking__coupon--visual .text-2 .unit {
  font-size: 20px;
  margin-left: 4px;
}
.club-ranking__coupon--visual .text-3 {
  top: 126px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #fff;
}
.club-ranking__coupon--visual .icon-download {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../image/icon_white_download.svg) no-repeat center/cover;
}
.club-ranking__coupon--visual::before {
  content: "";
  display: block;
  width: 100%;
  height: 164px;
  background: url(../image/coupon_bg.svg) no-repeat center/cover;
}

.my__club-benefit {
  /* 혜택리스트 */
}
.my__club-benefit .sub-tit {
  padding: 22px 0 20px;
  margin-top: 8px;
}
.my__club-benefit .sub-tit .checkbox__label > span {
  color: #141a23;
  font-size: 18px;
  font-weight: bold;
}
.my__club-benefit .sub-txt {
  padding-bottom: 8px;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .cnt-tit {
  font-size: 16px;
}
.my__club-benefit .cnt-txt {
  padding-bottom: 18px;
  color: #404040;
  font-size: 16px;
  line-height: 22px;
}
.my__club-benefit .cnt-txt-small {
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .cnt-sub {
  padding-bottom: 8px;
  color: #141a23;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}
.my__club-benefit .dot-list {
  margin-top: 8px;
}
.my__club-benefit .dot-list ~ .activity-article-set {
  margin-top: 20px;
}
.my__club-benefit .inner-cont + .inner-cont {
  padding-top: 28px;
}
.my__club-benefit .inner-line {
  margin: 0 -24px;
  padding: 28px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.my__club-benefit .inner-line:nth-of-type(1) {
  padding-top: 22px;
}
.my__club-benefit .inner-line:nth-last-of-type(1) {
  padding-bottom: 0;
  border-bottom: 0;
}
.my__club-benefit--header {
  padding: 22px 0;
  text-align: center;
}
.my__club-benefit--header .logo {
  margin-bottom: 16px;
}
.my__club-benefit--header .logo.jaju img {
  width: 70.9px;
  height: 20px;
}
.my__club-benefit--header .logo.beauty img {
  width: 150px;
  height: 20px;
}
.my__club-benefit--header .logo.du img {
  width: 15.3px;
  height: 32px;
}
.my__club-benefit--header .head-tit {
  padding: 0;
  margin-bottom: 14px;
}
.my__club-benefit--header .note {
  color: #787878;
  font-size: 14px;
  line-height: 22px;
}
.my__club-benefit--section {
  padding-bottom: 40px;
  border-top: 0;
}
.my__club-benefit--section:nth-last-of-type(1) {
  padding-bottom: 0;
}
.my__club-benefit--section + .my__club-benefit--section {
  border-top: 8px solid #f0f0f0;
}
.my__club-benefit--section .notice-list ~ .benefit-article-set .benefit-article {
  border-top: 1px solid #f0f0f0;
}
.my__club-benefit--section .notice-list ~ .activity-article-set {
  margin-top: 20px;
}
.my__club-benefit .activity-article-set {
  padding-bottom: 0px;
}
.my__club-benefit .activity-article {
  padding: 24px 0;
  border-top: 1px solid #f0f0f0;
}
.my__club-benefit .activity-article:nth-last-of-type(1) {
  border-bottom: 1px solid #f0f0f0;
}
.my__club-benefit .activity-score dt {
  position: relative;
  padding-left: 95px;
  margin-bottom: 4px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.my__club-benefit .activity-score dt:before {
  content: "";
  position: absolute;
  top: 17px;
  left: 20px;
  display: block;
  width: 55px;
  height: 55px;
}
.my__club-benefit .activity-score dt.actv-itm-1:before {
  background: url("../image/icon_actv_itm_1.png") no-repeat 50%;
  background-size: 64.5px auto;
}
.my__club-benefit .activity-score dt.actv-itm-2:before {
  background: url("../image/icon_actv_itm_2.png") no-repeat 50%;
  background-size: 63px auto;
}
.my__club-benefit .activity-score dt.actv-itm-3:before {
  background: url("../image/icon_actv_itm_3.png") no-repeat 50%;
  background-size: 70.5px auto;
}
.my__club-benefit .activity-score dt.actv-itm-4:before {
  background: url("../image/icon_actv_itm_4.png") no-repeat 50%;
  background-size: 58.5px auto;
}
.my__club-benefit .activity-score dt.actv-itm-5:before {
  background: url("../image/icon_actv_itm_5.png") no-repeat 50%;
  background-size: 67.5px auto;
}
.my__club-benefit .activity-score dt.actv-itm-6:before {
  background: url("../image/icon_actv_itm_6.png") no-repeat 50%;
  background-size: 82.5px auto;
}
.my__club-benefit .activity-score dd {
  padding-left: 95px;
  margin-bottom: 6px;
  color: #787878;
  font-size: 12px;
  line-height: 20px;
}
.my__club-benefit .activity-score dd ul {
  display: flex;
  gap: 10px;
}
.my__club-benefit .activity-score dd ul li {
  display: flex;
  gap: 8px;
}
.my__club-benefit .activity-score dd ul li b,
.my__club-benefit .activity-score dd ul li em {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .activity-score .bp {
  color: #d99c63;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.my__club-benefit .benefit-article-set.tb {
  padding: 16px 0 8px;
}
.my__club-benefit .benefit-article {
  padding: 24px 0;
  border-top: 1px solid #f0f0f0;
}
.my__club-benefit .benefit-article:nth-of-type(1) {
  border-top: 0;
}
.my__club-benefit .benefit-article:nth-last-of-type(1) {
  border-bottom: 1px solid #f0f0f0;
}
.my__club-benefit .benefit-article dl dd {
  word-break: keep-all;
  word-wrap: break-word;
}
.my__club-benefit .benefit-article dl dd ul li {
  position: relative;
  padding-left: 8.3px;
  margin-top: 8px;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
  word-break: keep-all;
  word-wrap: break-word;
}
.my__club-benefit .benefit-article dl dd ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #404040;
  border-radius: 50%;
  transform: translateY(-50%);
}
.my__club-benefit .benefit-badge dt {
  position: relative;
  padding-left: 93.3px;
  margin-bottom: 17px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
.my__club-benefit .benefit-badge dt:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 18px;
  display: block;
  width: 45px;
  height: 45px;
}
.my__club-benefit .benefit-badge dd {
  padding-left: 93.3px;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
}
.my__club-benefit .benefit-badge.jaju dt.welcome:before {
  background: url("../image/badge_jaju_welcome.png") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.jaju dt.good:before {
  background: url("../image/badge_jaju_good.png") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.jaju dt.great:before {
  background: url("../image/badge_jaju_great.png") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.jaju dt.best:before {
  background: url("../image/badge_jaju_best.png") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt.welcome:before {
  background: url("../image/badge_beauty_welcome.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt.friend:before {
  background: url("../image/badge_beauty_friend.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt.family:before {
  background: url("../image/badge_beauty_family.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt.royal:before {
  background: url("../image/badge_beauty_royal.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt.prestige:before {
  background: url("../image/badge_beauty_prestige.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.beauty dt span {
  font-weight: normal;
}
.my__club-benefit .benefit-badge.du dt.level0:before {
  background: url("../image/du_level0.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt.level1:before {
  background: url("../image/du_level1.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt.level2:before {
  background: url("../image/du_level2.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt.level3:before {
  background: url("../image/du_level3.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt.level4:before {
  background: url("../image/du_level4.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt.level5:before {
  background: url("../image/du_level5.svg") no-repeat 50%/contain;
}
.my__club-benefit .benefit-badge.du dt span {
  font-weight: normal;
}
.my__club-benefit .benefit-coupon {
  padding: 8px 0;
  text-align: center;
}
.my__club-benefit .benefit-coupon img {
  width: 327px;
  height: 164px;
}
.my__club-benefit .benefit-agree {
  position: relative;
}
.my__club-benefit .benefit-agree dt {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  color: #787878;
  font-size: 12px;
  line-height: 18px;
  font-size: 12px;
  text-align: left;
}
.my__club-benefit .benefit-agree dd {
  padding-left: 82px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .benefit-agree dd ul li {
  color: #000;
}
.my__club-benefit .benefit-agree dd ul li:before {
  color: #000;
}
.my__club-benefit .follow-article-set {
  padding-bottom: 8px;
}
.my__club-benefit .follow-article {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.my__club-benefit .follow-article li {
  display: flex;
  gap: 50px;
  padding: 12px 10px 14px;
  border-bottom: 1px dotted #f0f0f0;
}
.my__club-benefit .follow-article li:nth-last-of-type(1) {
  border-bottom: 0;
}
.my__club-benefit .follow-article li span,
.my__club-benefit .follow-article li em {
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .follow-article li span {
  width: 100px;
  color: #787878;
}
.my__club-benefit .follow-article li span b {
  font-weight: blod;
}
.my__club-benefit .follow-article li span b.l1 {
  color: #9c9398;
}
.my__club-benefit .follow-article li span b.l2 {
  color: #655f61;
}
.my__club-benefit .follow-article li span b.l3 {
  color: #4f3e46;
}
.my__club-benefit .follow-article li span b.l4 {
  color: #640000;
}
.my__club-benefit .follow-article li span b.l5 {
  color: #a80a25;
}
.my__club-benefit .follow-article li span b.l6 {
  color: #e60000;
}
.my__club-benefit .follow-article li em {
  color: #000;
  white-space: nowrap;
}
.my__club-benefit .follow-article-set + .notice-list {
  margin-top: 8px;
}
.my__club-benefit .agreed-article-set {
  padding: 16px 0 10px;
}
.my__club-benefit .agreed-article {
  padding: 24px 0;
  border-top: 1px solid #f0f0f0;
}
.my__club-benefit .agreed-article:nth-last-of-type(1) {
  border-bottom: 1px solid #f0f0f0;
}
.my__club-benefit .agreed-article dl dd {
  word-break: keep-all;
  word-wrap: break-word;
}
.my__club-benefit .agreed-article dl dd ul li {
  position: relative;
  padding-left: 8.3px;
  margin-top: 8px;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
  word-break: keep-all;
  word-wrap: break-word;
}
.my__club-benefit .agreed-article dl dd ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  background: #404040;
  border-radius: 50%;
  transform: translateY(-50%);
}
.my__club-benefit .agreed-tbl {
  position: relative;
}
.my__club-benefit .agreed-tbl dt {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  color: #787878;
  font-size: 12px;
  line-height: 18px;
  font-size: 12px;
  text-align: left;
}
.my__club-benefit .agreed-tbl dd {
  padding-left: 82px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.my__club-benefit .agreed-tbl dd ul li {
  color: #000;
}
.my__club-benefit .agreed-tbl dd ul li:before {
  color: #000;
}

.dot-list li {
  padding-left: 10px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  position: relative;
}
.dot-list li:not(:first-of-type) {
  margin-top: 8px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 2px;
  height: 2px;
  background: #404040;
  border-radius: 50%;
}
.dot-list li .gold {
  color: rgb(217, 156, 99);
}
.dot-list.type01 li {
  padding-left: 8px;
  position: relative;
  font-size: 14px;
  color: #404040;
  line-height: 20px;
}
.dot-list.type01 li.size {
  font-size: 12px;
}
.dot-list.type01 li.gold {
  color: #d99c63;
}
.dot-list.type01 li.gold::before {
  background: #d99c63;
}
.dot-list.type01 li:not(.dot-list.type01 li:first-of-type) {
  margin-top: 8px;
}
.dot-list.type01 li:before {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 0.2px;
  height: 0.2px;
  background: #404040;
  border-radius: 50%;
}
.dot-list.type01.i-big .item:before {
  width: 4px;
  height: 4px;
}
.dot-list.type02 li {
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.dot-list.type02 li::before {
  top: 7px;
  background: #929292;
}
.dot-list.type02 li span {
  text-decoration: underline;
}

.v-about {
  padding-bottom: 0;
  color: #000;
  letter-spacing: -0.035em;
}
.v-about--inner {
  position: relative;
  max-width: 1920px;
  padding-inline: 80px;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}
.v-about__vi {
  --v-media-dim: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(255, 0, 0, 0.40) 100%);
  overflow: hidden;
  background-color: #eee;
  color: #fff;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  height: 1000px;
}
.v-about__vi > .v-about--inner-vi, .v-about__vi > .v-about--inner {
  position: relative;
  max-width: 1920px;
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  margin: 0 auto;
}
.v-about__vi > .v-about--inner {
  padding-block: 0 80px;
  padding-inline: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.v-about__vi > .v-about--inner button,
.v-about__vi > .v-about--inner a {
  pointer-events: auto;
}
.v-about__vi--video {
  --v-media-aspect-ratio: 1920 / 1000;
  --v-media-fit: cover;
  position: absolute;
  width: 1920px;
  height: 1000px;
  top: 0;
  margin-left: -960px;
  left: 50%;
}
.v-about__vi--video .v-media-embed--dim:after {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.v-about__vi--contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v-about__vi--contents h3 {
  margin-top: auto;
  font-size: 140px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.v-about__vi--contents p {
  font-size: 20px;
  line-height: 1.3;
}
.v-about__description {
  height: 1000px;
}
.v-about__description:nth-child(odd) {
  background-color: #eee;
}
.v-about__description:nth-child(odd) .v-about--inner {
  display: flex;
}
.v-about__description:nth-child(odd) .v-about__description--contents {
  width: 47.29%;
  margin-left: auto;
}
.v-about__description--image {
  position: absolute;
  bottom: 0;
}
.description1 .v-about__description--image {
  left: 49.69%;
}
.description2 .v-about__description--image {
  right: 53.39%;
}
.description3 .v-about__description--image {
  left: 47.6%;
}
.description4 .v-about__description--image {
  right: 54.32%;
}
.v-about__description--contents {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 80px;
}
.v-about__description--contents h3 {
  margin-top: auto;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
}
.v-about__description--contents p {
  padding-top: 42px;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.5;
  color: #4e4e4e;
}

.terms .siv-tab--underline {
  height: 68px;
}
.terms .siv-tab--underline button {
  height: 68px;
  line-height: 68px;
  font-size: 20px;
}
.terms .siv-tab--underline button.on {
  font-weight: bold;
}
.terms__content--list {
  display: flex !important;
  flex-direction: column !important;
  margin: 40px 0 80px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #787878 !important;
}
.terms__content--list p {
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.terms__content--list p strong {
  display: inline-flex !important;
  height: 64px !important;
  align-items: center !important;
  font-size: 24px !important;
  font-weight: bold !important;
  color: #000 !important;
  letter-spacing: 0 !important;
  line-height: 32px !important;
}
.terms__content--list p *:not(strong) {
  font-size: inherit !important;
  color: inherit !important;
  border: none !important;
  letter-spacing: inherit !important;
}
.terms__content--list table {
  width: 100% !important;
  border-collapse: collapse !important;
}
.terms__content--list table td {
  padding: 20px 14px !important;
  text-align: center !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #404040 !important;
  border: 1px solid #f0f0f0 !important;
}
.terms__content--list table td p {
  display: inline-block !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  word-break: break-all !important;
}
.terms__content--list table td a {
  display: block !important;
  font-weight: 500 !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 24px !important;
  color: #a0a0a0 !important;
}
.terms__content--list table tr:first-of-type td {
  background-color: #f8f8f8 !important;
}
.terms__content--list table tr:first-of-type td p {
  font-weight: 500 !important;
  color: #000 !important;
}
.terms__content--list table tr:nth-of-type(4) td:nth-of-type(1) p:nth-of-type(2) {
  display: block !important;
}
.terms__content--title {
  font-size: 24px;
  font-weight: bold;
  line-height: 64px;
  color: #000;
}
.terms__content--text {
  font-size: 16px;
  line-height: 24px;
  color: #787878;
}
.terms__content--text span {
  display: inline-block;
  margin-right: 8px;
}
.terms__content--description {
  margin-bottom: 16px;
}
.terms__content--description:last-child {
  margin-bottom: 0;
}
.terms__content--description .terms__content--text:nth-child(2) {
  margin-top: 8px;
  padding-left: 20px;
}
.terms__content--table {
  margin: 24px 0 32px;
}
.terms__content--table.margin {
  margin-bottom: 0;
}
.terms__content--table th,
.terms__content--table td {
  padding: 20px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.terms__content--table th {
  font-weight: 500;
  color: #000;
  background-color: #f8f8f8;
}
.terms__content--table td {
  color: #404040;
}
.terms__content--box {
  display: flex;
  justify-content: space-between;
}
.terms__content--box .siv-selectbox {
  width: 456px;
}
.terms__content--box .btn-wide {
  width: 456px;
  flex-grow: 0;
  font-size: 16px;
}

.guide-area {
  padding: 0 24px 40px 24px;
  border-top: 8px solid #f0f0f0;
}
.guide-area.no-border {
  border: none;
}
.my__club-benefit .guide-area:nth-of-type(1) {
  border-top: none;
}

.popup__content > .guide-area:first-child {
  padding-top: 8px;
}
.popup__content > .guide-area:first-child .guide-head {
  margin-top: 0;
}

.guide-area.close {
  padding-bottom: 0;
}
.guide-area.close .guide-head__btn:after {
  transform: translateY(-50%);
}
.guide-head {
  display: flex;
  height: 64px;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
}
.guide-head__btn {
  position: relative;
  width: 100%;
  text-align: left;
}
.guide-head__btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/ico_arrow_down.svg) no-repeat center/cover;
  transform: rotate(180deg) translateY(50%);
}
.guide-head__btn-right {
  width: 16px;
  height: 16px;
  background: url(../image/icon_arrow_right.svg) no-repeat center/cover;
}
.guide-head.sub-head {
  margin-top: 0;
}
.guide-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0;
  color: #131922;
}
.guide-title.title_14 {
  font-size: 14px;
  text-align: left;
}
.guide-title.title_16 {
  font-size: 16px;
}
.guide-txt {
  padding-bottom: 18px;
  color: #404040;
  font-size: 16px;
  line-height: 22px;
  color: #404040;
}
.guide-txt-small {
  font-size: 14px;
  line-height: 20px;
}
.guide-txt.mb16 {
  margin-bottom: 16px;
}
.guide-txt.mb16__content--list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 80px;
}
.guide-txt.mb16__content--title {
  font-size: 24px;
  font-weight: bold;
  line-height: 64px;
  color: #000;
}
.guide-txt.mb16__content--text {
  font-size: 16px;
  line-height: 24px;
  color: #787878;
}
.guide-txt.mb16__content--text span {
  display: inline-block;
  margin-right: 8px;
}
.guide-txt.mb16__content--description {
  margin-bottom: 16px;
}
.guide-txt.mb16__content--description:last-child {
  margin-bottom: 0;
}
.guide-txt.mb16__content--description .terms__content--text:nth-child(2) {
  margin-top: 8px;
  padding-left: 20px;
}
.guide-txt.mb16__content--table {
  margin: 24px 0 32px;
}
.guide-txt.mb16__content--table.margin {
  margin-bottom: 0;
}
.guide-txt.mb16__content--table th,
.guide-txt.mb16__content--table td {
  padding: 20px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.guide-txt.mb16__content--table th {
  font-weight: 500;
  color: #000;
  background-color: #f8f8f8;
}
.guide-txt.mb16__content--table td {
  color: #404040;
}
.guide-txt.mb16__content--box {
  display: flex;
  justify-content: space-between;
}
.guide-txt.mb16__content--box .siv-selectbox {
  width: 456px;
}
.guide-txt.mb16__content--box .btn-wide {
  width: 456px;
  flex-grow: 0;
  font-size: 16px;
}
.guide-btn-text {
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  padding-right: 14px;
  color: #787878;
  background: url(../image/icon_arrow_right_gray.svg) no-repeat right center/12px 12px;
}
.guide-btn-text-wrap {
  margin-top: 16px;
}

.popup-coupon-double-none .popup__content {
  padding: 0;
}
.popup-coupon-double-none .cupon1_area:not(:first-of-type) {
  display: none;
}
.popup-coupon-double-none .coupon-list-wrap {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 517px;
}
.popup-coupon-double-none .popup__coupon-list {
  position: sticky;
  position: -webkit-sticky;
  top: 76px;
  left: 0;
  display: flex;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #e0e0e0;
  z-index: 10;
  background-color: #fff;
}
.popup-coupon-double-none .popup__coupon-item {
  flex: 1;
}
.popup-coupon-double-none .popup__coupon-item a {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: -0.1px;
  color: #929292;
}
.popup-coupon-double-none .popup__coupon-item a.on {
  height: 47px;
  font-weight: 500;
  color: #000;
  border-bottom: 2px solid #000;
}
.popup-coupon-double-none .popup__coupon-coupon-list {
  display: flex;
  flex-flow: column nowrap;
  padding: 32px 34px 0 34px;
  gap: 8px;
}
.popup-coupon-double-none .popup__coupon-coupon-item {
  position: relative;
  width: 100%;
  height: 164px;
  background: url(../image/coupon_bg.svg) no-repeat center/100%;
}
.popup-coupon-double-none .popup__coupon-coupon-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  width: 1px;
  height: 129px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0) 0%);
  background-position: center;
  background-size: 1px 10px;
  background-repeat: repeat-y;
}
.popup-coupon-double-none .popup__coupon-coupon-item-gold {
  position: absolute;
  color: #d99c63;
  top: 20px;
  left: 24px;
  width: 217px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
}
.popup-coupon-double-none .popup__coupon-coupon-item-big {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
  left: 24px;
  bottom: 44px;
  font-size: 33px;
  line-height: 48px;
  letter-spacing: 0;
}
.popup-coupon-double-none .popup__coupon-coupon-item-big span {
  font-size: 20px;
  transform: translateY(4px);
}
.popup-coupon-double-none .popup__coupon-coupon-item-big .maximum-discount {
  margin-left: 7px;
  font-size: 12px;
  transform: translateY(7px);
  color: #e0e0e0;
}
.popup-coupon-double-none .popup__coupon-coupon-item-big .maximum-discount i {
  font-style: normal;
}
.popup-coupon-double-none .popup__coupon-coupon-item-small {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
}
.popup-coupon-double-none .popup__coupon-coupon-item button {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.popup-coupon-double-none .popup__coupon-coupon-item button img {
  width: 100%;
  height: auto;
}
.popup-coupon-double-none .popup__coupon-coupon-item.disable {
  opacity: 0.36;
}
.popup-coupon-double-none .popup__coupon-coupon-item.disable .popup__coupon-coupon-item-gold, .popup-coupon-double-none .popup__coupon-coupon-item.disable .popup__coupon-coupon-item-big, .popup-coupon-double-none .popup__coupon-coupon-item.disable .popup__coupon-coupon-item-small {
  color: #fff;
}
.popup-coupon-double-none .popup__coupon-none-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 462px;
}
.popup-coupon-double-none .popup__coupon-none-box-text {
  font-size: 14px;
  color: #787878;
}
.popup-coupon-double-none .popup__coupon-text {
  padding: 24px 34px 53px 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
}
.popup-coupon-double-none .popup__coupon-text-title {
  position: relative;
  padding-left: 10px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
}
.popup-coupon-double-none .popup__coupon-text-title::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #929292;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
.popup-coupon-double-none .popup__coupon-text-title.gold {
  color: #d99c63;
}
.popup-coupon-double-none .popup__coupon-text-title.gold::before {
  background-color: #d99c63;
}

.pm-gift__image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.pm-gift__description {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #141a23;
}

.ico-tooltip {
  position: relative;
  width: 16px;
  height: 16px;
  background: url(../image/icon_tooltip.svg) no-repeat center/contain;
}
.ico-tooltip-wrap {
  position: relative;
  display: block;
}
.ico-tooltip-wrap:hover .popup-tooltip {
  visibility: visible;
}

.siv-starpoint {
  display: flex;
  align-items: center;
}
.siv-starpoint__wrap {
  position: relative;
  width: 152px;
  height: 24px;
  background-color: #c8c8c8;
  margin-right: 12px;
}
.siv-starpoint__wrap::before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background: url(../image/starpoint_bg.png) no-repeat center/100% 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.siv-starpoint__wrap.small {
  width: 80px;
  height: 16px;
  margin-right: 12px;
}
.siv-starpoint__box {
  position: relative;
  z-index: 1;
}
.siv-starpoint__box img {
  width: 100%;
  vertical-align: top;
}
.siv-starpoint__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  font-size: 0;
  background: #d99c63;
  text-indent: -9999px;
  overflow: hidden;
}
.siv-starpoint__bar.vlack {
  background: #141a23;
}
.siv-starpoint__rate {
  font-size: 24px;
  font-weight: bold;
  color: #d99c63;
}
.siv-starpoint__rate.vlack {
  color: #141a23;
}
.siv-starpoint__rate.replace-text {
  font-size: 0;
}

.size__wrap {
  height: calc(100% - 50px);
}
.size__topinfo .siv-bullet li::before {
  width: 4px;
  height: 4px;
}

.select_wrap {
  position: relative;
}
.select_wrap .size_select {
  margin-top: 22px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  line-height: 46px;
  padding: 0 16px;
  margin-bottom: 1px;
  border: 1px solid #e0e0e0;
}
.select_wrap .size_select span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #131922;
}
.select_wrap .size_select.on img {
  transform: rotate(-180deg);
}
.select_wrap .size_select img {
  width: 20px;
  transform: rotate(0deg);
}
.select_wrap .select_ul {
  width: 100%;
  margin-top: -1px;
  box-sizing: border-box;
  z-index: 20;
  background-color: #fff;
  height: 192px;
  padding: 0 16px;
  border: 1px solid #141a23;
  overflow: scroll;
  position: absolute;
  left: 0;
  top: 48px;
  display: none;
}
.select_wrap .select_ul.on {
  display: block;
}
.select_wrap .select_ul li {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #141a23;
  box-sizing: border-box;
}
.select_wrap .select_ul li.on {
  font-weight: bold;
}

.option_quantity {
  display: flex;
  margin-top: 16px;
}
.option_quantity button {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.option_quantity .minus {
  background-image: url(../image/05Icon24PxThinSubtraction.png);
  border: 1px solid #e0e0e0;
  border-right: 0;
  box-sizing: border-box;
}
.option_quantity .number {
  width: calc(100% - 96px);
  height: 48px;
  text-align: center;
  line-height: 48px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.option_quantity .number input {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 0;
  font-size: 14px;
  color: #141a23;
  vertical-align: top;
}
.option_quantity .plus {
  background-image: url(../image/05Icon24PxThinAdd.png);
  border: 1px solid #e0e0e0;
  border-left: 0;
  box-sizing: border-box;
}

.popup-review .popup__review-title {
  margin-top: 24px;
  font-size: 24px;
  color: #000;
  line-height: 34px;
}
.popup-review .popup__review-title span {
  color: #d99c63;
}
.popup-review .popup__review-wrap {
  display: flex;
  margin-top: 20px;
}
.popup-review .popup__review-wrap ~ .popup__review-title {
  margin-top: 48px;
}
.popup-review .popup__review-wrap-img {
  display: flex;
  width: 80px;
  height: 120px;
  margin-right: 20px;
  background-color: #f8f8f8;
  align-items: center;
  overflow: hidden;
}
.popup-review .popup__review-wrap-img img {
  mix-blend-mode: multiply;
  width: 100%;
}
.popup-review .popup__review-wrap-text {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
}
.popup-review .popup__review-wrap-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: -0.08px;
  color: #000;
}
.popup-review .popup__review-wrap-description {
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.popup-review .popup__review-wrap-star {
  margin-top: 12px;
}
.popup-review .popup__review-wrap-star .siv-starpoint__wrap {
  height: 32px;
  width: 190px;
}
.popup-review .popup__review-wrap-star .siv-starpoint__rate {
  display: none;
}
.popup-review .popup__review-writie {
  position: relative;
  width: 100%;
  height: 160px;
  padding: 16px;
  margin-top: 24px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
}
.popup-review .popup__review-textarea {
  width: 100%;
  height: 92px;
  resize: none;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #141a23;
}
.popup-review .popup__review-count {
  position: absolute;
  bottom: 16px;
  right: 10px;
  font-size: 12px;
  color: #787878;
  line-height: 18px;
}
.popup-review .popup__review-box {
  display: flex;
  flex-flow: row wrap;
  gap: 9px;
  margin-top: 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
.popup-review .popup__review-img {
  position: relative;
  display: flex;
  align-items: center;
  width: 58px;
  height: 58px;
  box-sizing: border-box;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.popup-review .popup__review-img img {
  width: 100%;
  mix-blend-mode: multiply;
}
.popup-review .popup__review-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #e0e0e0 url(../image/05-icon-32-px-thin-close-box.svg) no-repeat center/100%;
}
.popup-review .popup__review-plus {
  position: relative;
  width: 58px;
  height: 58px;
  box-sizing: border-box;
  background: url(../image/03-button-03-icon-add.svg) no-repeat center/100%;
}
.popup-review .popup__review-description {
  margin-top: 16px;
  gap: 6px;
}
.popup-review .popup__review-description-text {
  font-size: 12px;
  font-weight: "SF Pro Display", "Roboto", sans-serif;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
}
.popup-review .popup__review-description.siv-bullet li::before {
  top: 8px;
}
.popup-review .popup__review-description span {
  text-decoration: underline;
  color: #000;
}
.popup-review .popup__review-form {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}
.popup-review .popup__review-form-list:not(:first-of-type) {
  margin-top: 36px;
}
.popup-review .popup__review-form-title {
  font-size: 16px;
  font-weight: "SF Pro Display", "Roboto", sans-serif;
  line-height: 22px;
  letter-spacing: 0;
  color: #404040;
}
.popup-review .popup__review-form-title.text {
  margin-top: 36px;
}
.popup-review .popup__review-form-label {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}
.popup-review .popup__review-form-label label input {
  display: none;
}
.popup-review .popup__review-form-label label input ~ span {
  display: inline-flex;
  height: 48px;
  padding: 0 14px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  letter-spacing: -0.5px;
  box-sizing: border-box;
}
.popup-review .popup__review-form-label label input:checked ~ span {
  border-color: #000;
}
.popup-review .popup__review-btn {
  display: flex;
  margin-top: 48px;
}
.popup-review .popup__review-btn button {
  flex-grow: 1;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #141a23;
}
.popup-review .popup__review-btn button.gray {
  background-color: #787878;
}

.popup__review-photo,
.popup-poto-review_detail {
  width: 920px !important;
  height: auto;
  padding: 0 34px 34px 34px;
  min-height: 0;
}
.popup__review-photo .header-popup,
.popup-poto-review_detail .header-popup {
  width: calc(100% + 68px);
  height: 56px;
  padding-bottom: 20px;
  margin-left: -34px;
}
.popup__review-photo .header-popup__title em,
.popup-poto-review_detail .header-popup__title em {
  font-weight: normal;
  color: #787878;
}
.popup__review-photo .popup__content,
.popup-poto-review_detail .popup__content {
  padding: 0;
}

.popup__review-photo-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row wrap;
  gap: 6.6px;
  height: 600px;
  max-height: calc(90vh - 130px);
  overflow-y: auto;
  margin-top: -1px;
}
.popup__review-photo-box::-webkit-scrollbar {
  display: block;
  width: 4px;
}
.popup__review-photo-box::-webkit-scrollbar-thumb {
  background-color: #131922;
  background-clip: padding-box;
}
.popup__review-photo-box::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
.popup__review-photo-img {
  position: relative;
  display: flex;
  width: 207px;
  height: 207px;
  align-items: center;
  overflow: hidden;
}
.popup__review-photo-img.blind img {
  filter: blur(40px);
}
.popup__review-photo-img.blind:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}
.popup__review-photo-img img {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.popup__review-photo-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(../image/05-icon-16-images.svg) no-repeat center/cover, rgba(19, 25, 34, 0.5);
  background-size: 16px;
}
.popup__review-detail {
  height: 600px;
  max-height: calc(90vh - 130px);
  overflow-y: auto;
  margin-top: -1px;
  padding-right: 20px;
}
.popup__review-detail::-webkit-scrollbar {
  display: block;
  width: 4px;
}
.popup__review-detail::-webkit-scrollbar-thumb {
  background-color: #131922;
  background-clip: padding-box;
}
.popup__review-detail::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
.popup__review-detail li {
  position: relative;
  display: flex;
  height: 558px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.popup__review-detail li:not(:last-of-type) {
  margin-bottom: 17px;
}
.popup__review-detail-swiper {
  width: 456px;
}
.popup__review-detail-swiper .arrow {
  width: 56px;
  height: 56px;
  background-size: contain;
}
.popup__review-detail .swiper-container {
  margin: 0;
}
.popup__review-detail-thum {
  display: flex;
  width: 456px;
  height: 558px;
  background-color: #f8f8f8;
  align-items: center;
  overflow: hidden;
}
.popup__review-detail-thum.blind img {
  filter: blur(40px);
}
.popup__review-detail-thum.blind:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}
.popup__review-detail-thum img {
  width: 100%;
}
.popup__review-detail-wrap {
  position: relative;
  width: 372px;
  height: 543px;
}
.popup__review-detail-wrap.is-satisfied .popup__review-detail-text {
  max-height: 190px;
}
.popup__review-detail-wrap.is-satisfied .popup__review-detail-info-size-detail {
  margin-top: 15px;
}
.popup__review-detail .detail-wrap {
  display: flex;
  height: 56px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}
.popup__review-detail .siv-starpoint__wrap {
  height: 20px;
  width: 116px;
}
.popup__review-detail .siv-starpoint__wrap::before {
  content: "";
  width: 117px;
  height: 22.5px;
  top: -1px;
  left: -0.3px;
}
.popup__review-detail .siv-starpoint__bar {
  height: 18px;
}
.popup__review-detail .siv-starpoint__rate {
  font-size: 20px;
}
.popup__review-detail .siv-starpoint__rate span {
  color: #141a23;
}
.popup__review-detail-info {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.popup__review-detail-info-name, .popup__review-detail-info-day {
  display: inline-flex;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
  align-items: center;
}
.popup__review-detail-info-name::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  margin: 0 8px;
}
.popup__review-detail-bedge {
  position: relative;
  display: flex;
  flex-basis: 100%;
  padding-top: 10px;
  gap: 8px;
  align-items: center;
}
.popup__review-detail-bedge .siv-badge__item {
  height: auto;
}
.popup__review-detail-bedge > p {
  color: #929292;
  font-size: 14px;
}
.popup__review-detail-size-info {
  margin-bottom: 4px;
}
.popup__review-detail-size-info .size-info__option {
  font-size: 16px;
  color: #787878;
  line-height: 24px;
}
.popup__review-detail-size-info .size-info__option:not(:first-child) {
  margin-top: 4px;
}
.popup__review-detail-info-size-detail {
  margin-top: 24px;
}
.popup__review-detail-info-size-detail .detail__bottom-review-info-rate-list {
  padding: 0;
  border: 0 none;
}
.popup__review-detail-info-size-detail .detail__bottom-review-info-rate-item {
  justify-content: flex-start;
  height: auto;
  background: none;
}
.popup__review-detail-info-size-detail .detail__bottom-review-info-rate-item:not(:last-of-type) {
  margin-bottom: 8px;
}
.popup__review-detail-info-size-detail .detail__bottom-review-info-rate-bedge {
  margin: 0;
}
.popup__review-detail-offshop {
  color: #787878;
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.popup__review-detail-text {
  margin-top: 16px;
  flex-basis: 100%;
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
  max-height: 350px;
  overflow-y: auto;
}
.popup__review-detail-more {
  position: absolute;
  width: 372px;
  height: 56px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  right: 0;
  bottom: 0;
}
.popup__review-detail-link {
  display: inline-flex;
  font-size: 14px;
  color: #787878;
  letter-spacing: 0;
  align-items: center;
}
.popup__review-detail-link:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  margin: 0 8px;
}
.popup__review-detail .like-review-btn {
  display: flex;
  gap: 4px;
  align-items: center;
}
.popup__review-detail .like-review-btn span.icon {
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/icon_review_like.png) no-repeat center/contain;
}
.popup__review-detail .like-review-btn span.icon.on {
  background: url(../image/icon_review_like_on.png) no-repeat center/contain;
}
.popup__review-detail .like-review-btn span.text {
  font-size: 12px;
  letter-spacing: 0;
  color: #141a23;
}

@-webkit-keyframes slidein {
  from {
    width: 0px;
  }
  to {
    width: 120px;
  }
}

@keyframes slidein {
  from {
    width: 0px;
  }
  to {
    width: 120px;
  }
}
@-webkit-keyframes slideout {
  from {
    width: 120px;
  }
  to {
    width: 0px;
  }
}
@keyframes slideout {
  from {
    width: 120px;
  }
  to {
    width: 0px;
  }
}
.popup-detail-vi {
  position: fixed;
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  top: 0;
  left: 0;
  padding: 0;
  background-color: #fff;
  z-index: 150;
  transform: translate(0);
  overflow: hidden;
}
.popup-detail-vi__close {
  position: absolute;
  width: 81.3px;
  height: 81.3px;
  top: 39.3px;
  right: 159.3px;
  background: url(../image/05-icon-32-px-ultra-thin-close.svg) no-repeat center/contain;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 10;
}
.popup-detail-vi .gallery {
  position: relative;
}
.popup-detail-vi .gallery__center {
  position: relative;
  display: flex;
  width: calc(100% - 120px);
  padding-right: 120px;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.popup-detail-vi .gallery__slide {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.popup-detail-vi .gallery__slide .swiper-wrapper {
  height: 100%;
}
.popup-detail-vi .gallery__slide .swiper-slide {
  position: relative;
  display: flex;
  padding-top: 58px;
  padding-bottom: 121px;
  height: auto;
  max-height: 100vh;
  justify-content: center;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.popup-detail-vi .gallery__slide .swiper-slide img {
  position: absolute;
  height: 780px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100vh - 58px - 121px);
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: move;
}
.popup-detail-vi .gallery__slide .swiper-navigation {
  position: absolute;
  display: flex;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  gap: 120px;
  z-index: 20;
}
.popup-detail-vi .gallery__slide .swiper-button-prev, .popup-detail-vi .gallery__slide .swiper-button-next {
  position: relative;
  width: 32px;
  height: 32px;
  top: 0;
  margin-top: 0;
  background: url(../image/05-icon-32-px-thin-arrow-left-black.svg) no-repeat center/contain;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  z-index: 2;
  left: auto;
  right: auto;
  flex-shrink: 0;
}
.popup-detail-vi .gallery__slide .swiper-button-prev:after, .popup-detail-vi .gallery__slide .swiper-button-next:after {
  background: none;
}
.popup-detail-vi .gallery__slide .swiper-button-next {
  transform: rotate(180deg);
}
.popup-detail-vi .gallery__slide .swiper-button-disabled {
  opacity: 0;
}
.popup-detail-vi .gallery__slide .swiper-pagination {
  font-size: 12px;
  letter-spacing: 0;
  color: #404040;
  bottom: auto;
  left: auto;
  position: static;
  white-space: nowrap;
}
.popup-detail-vi .gallery__slide .swiper-pagination-current {
  color: #131922;
  font-weight: bold;
}
.popup-detail-vi .gallery__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100vh;
  margin-right: -121px;
  background-color: #f8f8f8;
  border-left: 1px solid #e0e0e0;
  transition: margin-right 0.5s;
  z-index: 10;
}
.popup-detail-vi .gallery__right.active {
  margin-right: 0;
}
.popup-detail-vi .gallery__toolbar {
  position: absolute;
  width: 56px;
  bottom: 260px;
  transform: translateX(-56px);
  border-right: none;
  box-sizing: border-box;
  z-index: 10;
}
.popup-detail-vi .gallery__tool {
  width: 56px;
  height: 56px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.popup-detail-vi .gallery__tool:not(.open-thumbs) {
  margin-bottom: -1px;
}
.popup-detail-vi .gallery__tool.refresh {
  background: #fff url(../image/icon_refresh.svg) no-repeat center/contain;
}
.popup-detail-vi .gallery__tool.zoomin {
  background: #fff url(../image/popup_zoom_in.png) no-repeat center/32px;
}
.popup-detail-vi .gallery__tool.zoomout {
  background: #fff url(../image/popup_zoom_out.png) no-repeat center/32px;
}
.popup-detail-vi .gallery__tool.open-thumbs {
  background: #fff url(../image/group-2.svg) no-repeat center/32px;
}
.gallery__right.active .open-thumbs {
  background-color: #f8f8f8;
  border-right: none;
}

.popup-detail-vi .gallery__tool:hover {
  background-color: #f8f8f8;
}
.popup-detail-vi .gallery__thumbarea {
  position: absolute;
  text-align: center;
  justify-content: center;
  width: 62px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-detail-vi .gallery__thumbarea .swiper-button-prev, .popup-detail-vi .gallery__thumbarea .swiper-button-next {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  top: 0;
  margin-top: 0;
  background: url(../image/05-icon-32-px-thin-arrow-left-black.svg) no-repeat center/contain;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  z-index: 2;
  left: auto;
  right: auto;
  flex-shrink: 0;
}
.popup-detail-vi .gallery__thumbarea .swiper-button-prev {
  transform: rotate(90deg);
}
.popup-detail-vi .gallery__thumbarea .swiper-button-next {
  transform: rotate(270deg);
}
.popup-detail-vi .gallery__thumbarea .swiper-button-disabled {
  opacity: 0;
}
.popup-detail-vi .gallery__thumbarea .swiper-pagination-fraction {
  margin: 12px auto;
  font-size: 12px;
  letter-spacing: 0;
  color: #404040;
  bottom: auto;
  left: auto;
  position: relative;
  text-align: center;
}
.popup-detail-vi .gallery__thumbarea .swiper-pagination-fraction .swiper-pagination-current {
  color: #131922;
  font-weight: bold;
}
.popup-detail-vi .gallery__thumbs {
  max-height: 678px;
  padding: 1px 0;
}
.popup-detail-vi .gallery__thumbs .swiper-wrapper {
  align-items: center;
}
.popup-detail-vi .gallery__thumbs .swiper-slide {
  width: 60px;
  height: 90px;
  background-color: #fff;
  cursor: pointer;
}
.popup-detail-vi .gallery__thumbs .swiper-slide:hover, .popup-detail-vi .gallery__thumbs .swiper-slide.on {
  box-shadow: 0 0 0 1px #131922;
}
.popup-detail-vi .gallery__thumbs .swiper-slide img {
  width: 60px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup-common-terms {
  overflow-x: hidden;
}
.popup-common-terms .popup__content {
  font-size: 14px;
  height: 667px;
  padding-top: 27px;
  line-height: 20px;
  overflow-y: auto;
  letter-spacing: 0;
  color: #404040;
}
.popup-common-terms .popup__content ul {
  margin: 8px 0;
}
.popup-common-terms .popup__content ul li {
  padding-left: 10px;
}
.popup-common-terms table {
  min-width: 0;
  margin-top: 30px;
  border-collapse: collapse;
  width: auto !important;
  table-layout: auto !important;
}
.popup-common-terms table th,
.popup-common-terms table td {
  text-align: center;
  font-size: 12px !important;
  line-height: 18px;
  letter-spacing: 0;
  border: 1px solid #f0f0f0 !important;
}
.popup-common-terms table th {
  padding: 8px 10px !important;
  color: #000;
  font-weight: 500;
  background-color: #f8f8f8 !important;
  width: auto !important;
}
.popup-common-terms table th p {
  font-size: 12px;
  font-weight: 500;
}
.popup-common-terms table td {
  padding: 11px 10px;
  color: #404040;
  background-color: #fff;
}
.popup-common-terms table td b {
  font-size: 12px !important;
  font-weight: normal !important;
}

.pop_change_add {
  padding-bottom: 0;
}
.pop_change_add .desc {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
}
.pop_change_add .desc-item {
  position: relative;
  padding-left: 10px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
}
.pop_change_add .desc-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #929292;
}
.pop_change_add .order__address-empty-msg {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 392px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
}
.pop_change_add .siv-tab__wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 76px;
  background-color: #fff;
  z-index: 10;
}
.pop_change_add .popup__content {
  position: fixed;
  width: 100%;
  top: 76px;
  padding: 0;
}
.pop_change_add .order-delivery-list .order__address-item .order__address-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap {
  width: 216px;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap span {
  font-size: 16px;
  letter-spacing: 0;
  word-break: break-all;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap span.name {
  color: #141a23;
  font-weight: 500;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap span.address-name {
  color: #787878;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap span.address-name::before {
  content: "| ";
  color: #787878;
}
.pop_change_add .order-delivery-list .order__address-item .name-wrap span.address-label {
  color: #787878;
}
.pop_change_add .order-delivery-list .order__address-item .address-edit {
  display: inline-flex;
  align-items: center;
}
.pop_change_add .order-delivery-list .order__address-item .address-edit button {
  display: inline-flex;
  align-items: center;
  color: #787878;
  font-size: 12px;
  line-height: 18px;
}
.pop_change_add .order-delivery-list .order__address-item .address-edit button.delete_address::before {
  content: "|";
  margin: 0 8px;
  color: #e0e0e0;
}
.pop_change_add .order-delivery-list .order__address-item .phone-number,
.pop_change_add .order-delivery-list .order__address-item .address {
  width: 216px;
  margin-top: 8px;
  margin-left: 32px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.pop_change_add .order-delivery-list .order__address-item .phone-number {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.pop_change_add .order-delivery-list .order__address-item .phone-number span {
  display: inline-flex;
  color: #787878;
  align-items: center;
}
.pop_change_add .order-delivery-list .order__address-item .phone-number span:not(:last-of-type)::after {
  content: "|";
  color: #e0e0e0;
  margin: 0 8px;
}
.pop_change_add .order-delivery-new {
  padding: 32px 34px 0 34px;
}
.pop_change_add .order-delivery-new .gray-bar {
  width: calc(100% + 103px);
  height: 8px;
  background: #f0f0f0;
  transform: translateX(-34px);
}
.pop_change_add .order-delivery-new .new-address {
  padding-bottom: 28px;
}
.pop_change_add .order-delivery-new .new-address-setting {
  display: flex;
  margin: 28px 0 0;
  gap: 28px;
}
.pop_change_add .order-delivery-new .new-address-setting .checkbox__label {
  flex: 1;
}
.pop_change_add .order-delivery-new .new-address-setting .checkbox__label span {
  font-size: 14px;
}
.pop_change_add .order__address-new-list.agreement .agreement {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.pop_change_add .order__address-new-list.agreement .agreement .checkbox__label {
  height: 64px;
  align-items: center;
}
.pop_change_add .order__address-new-list.agreement .agreement .checkbox__label span {
  font-weight: 500;
  font-size: 14px;
}
.pop_change_add .order__address-new-list.agreement .agreement .arrow-down {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url(../image/05-icon-32-px-thin-arrow-up.svg) no-repeat center/contain;
  transform: translateY(-50%) rotate(180deg);
}
.pop_change_add .order__address-new-list.agreement .agreement .arrow-down.up {
  transform: translateY(-50%) rotate(0);
}
.pop_change_add .order__address-new-list.agreement .order__address-agreement {
  width: calc(100% + 68px);
  margin-left: -34px;
  box-sizing: border-box;
  padding: 20px 34px 28px 34px;
  background: #f8f8f8;
}
.pop_change_add .order__address-new-list.agreement .order__address-agreement p {
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  margin-bottom: 16px;
}
.pop_change_add .order__address-new-list.agreement .order__address-agreement-box {
  padding: 16px 20px;
  background-color: #fff;
}
.pop_change_add .order__address-new-list.agreement > .desc {
  margin-top: 16px;
}
.pop_change_add .agreement:not(.order__address-new-list) {
  display: flex;
  width: 396px;
  height: 64px;
  margin-left: -34px;
  padding: 0 34px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}
.pop_change_add .agreement:not(.order__address-new-list) .checkbox__label {
  align-items: center;
}
.pop_change_add .agreement:not(.order__address-new-list) .checkbox__label > span {
  font-weight: 500;
  font-size: 14px;
  color: #131922;
}
.pop_change_add .agreement:not(.order__address-new-list) button {
  width: 16px;
  height: 16px;
  background: url(../image/icon_arrow_down_thin.svg) no-repeat center/contain;
}
.pop_change_add .agreement:not(.order__address-new-list) button.up {
  transform: rotate(180deg);
}
.pop_change_add .order__address-agreement ~ .desc {
  margin-top: 20px;
}
.pop_change_add .order__address-agreement.active {
  display: block;
}
.pop_change_add .order-common-btn {
  margin-top: 32px;
  background-color: #fff;
}
.pop_change_add .order-common-btn button {
  width: 100%;
  height: 48px;
  background-color: #131922;
  color: #fff;
  font-size: 14px;
}

.lnb_menu__title {
  display: flex;
  height: 48px;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
  color: #141a23;
  margin-bottom: 17px;
}
.lnb_menu__list a:hover {
  text-decoration: underline;
}
.lnb_menu__list.list-big {
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.lnb_menu__list.list-big > li > a {
  display: block;
  line-height: 40px;
  align-items: center;
  font-size: 16px;
  color: #141a23;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lnb_menu__list.list-big > li.on > a {
  font-weight: bold;
  color: #000;
}
.lnb_menu__list.list-big > li.active > a {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}
.lnb_menu__list.list-big > li.on > ul {
  display: block;
}
.lnb_menu__list.list-medium {
  display: none;
  padding: 10px 16px;
  background-color: #f8f8f8;
}
.lnb_menu__list.list-medium > li > a {
  display: block;
  line-height: 36px;
  font-size: 14px;
  color: #787878;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lnb_menu__list.list-medium > li.on > a {
  font-weight: 500;
  color: #000;
}
.lnb_menu__list.list-medium > li.active > a {
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}
.lnb_menu__list.list-medium > li.on > ul {
  display: block;
}
.lnb_menu__list.list-small {
  display: none;
  padding-left: 16px;
}
.lnb_menu__list.list-small > li > a {
  display: block;
  line-height: 36px;
  font-size: 14px;
  color: #787878;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lnb_menu__list.list-small > li.on > a {
  font-weight: 500;
  color: #000;
}
.lnb_menu__list.list-small > li.on > ul {
  display: block;
}
.lnb_menu__list.list-small > li.active > a {
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}

.filter_wrap__title {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0;
  color: #141a23;
}
.filter_wrap .filter__list {
  margin-top: 16px;
}

.order-common-btn {
  background: #fff;
  padding: 16px 34px 34px 34px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}
.order-common-btn.static {
  position: static !important;
}

.component__styling .siv-tab__wrap {
  margin-bottom: 16px;
}
.component__styling--wrap {
  display: flex;
  gap: 24px;
}
.component__styling--thum {
  position: relative;
  width: 506px;
  aspect-ratio: 1/1.5;
  flex-shrink: 0;
  background-color: #f5f5f5;
  overflow: hidden;
}
.component__styling--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.component__styling--product {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
}
.component__styling .siv-product--swiper {
  height: 100%;
}
.component__styling .siv-product--swiper .swiper-scrollbar {
  bottom: 18px;
}
.component__whats-on .swiper-component {
  position: relative;
  overflow: hidden;
}
.component__whats-on .swiper-component.swiper-container-initialized > .arrow {
  visibility: visible;
  pointer-events: auto;
}
.component__whats-on .swiper-component.swiper-container-initialized .swiper-button-disabled {
  background-color: rgba(0, 0, 0, 0.1);
}
.component__whats-on .swiper-component.swiper-container-initialized:hover .arrow.swiper-button-disabled {
  display: block;
}
.component__whats-on .swiper-component.swiper-container-initialized > .swiper-scrollbar {
  display: block;
}
.component__whats-on .swiper-component.swiper-container-initialized.swiper-component--double .swiper-wrapper .swiper-slide + .swiper-slide {
  margin-left: 0;
}
.component__whats-on .swiper-component.swiper-container-initialized.swiper-component--single .arrow {
  top: auto;
  bottom: 386px;
}
.component__whats-on .swiper-component.swiper-container-initialized.swiper-component--single .swiper-wrapper {
  padding-bottom: 47px;
}
.component__whats-on .swiper-component.swiper-component--double .swiper-wrapper .swiper-slide + .swiper-slide {
  margin-left: 24px;
}
.component__whats-on .swiper-component.swiper-component--double .swiper-slide {
  width: 552px;
}
.component__whats-on .swiper-component > .swiper-scrollbar {
  display: none;
  width: 200px;
  height: 2px;
  left: calc(50% - 100px);
  bottom: 0;
  background-color: #bbb;
}
.component__whats-on .swiper-component > .arrow {
  visibility: hidden;
  top: 386px;
  pointer-events: none;
}
.component__whats-on .promotion {
  position: relative;
}
.component__whats-on .promotion--image {
  width: 552px;
}
.component__whats-on .promotion--image .promotion__photo {
  display: block;
  aspect-ratio: 1/1.5;
}
.component__whats-on .promotion--image .promotion__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.component__whats-on .promotion--image .promotion__info {
  display: block;
  margin-top: 24px;
  padding: 0 40px 0 0;
}
.component__whats-on .promotion--image .promotion__title, .component__whats-on .promotion--image .promotion__description {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.component__whats-on .promotion--image .promotion__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #000;
}
.component__whats-on .promotion--image .promotion__description {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.38;
  color: #404040;
}
.component__whats-on .promotion--image .promotion__product {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto;
  -moz-column-gap: 18px;
  column-gap: 18px;
}
.component__whats-on .promotion--image .promotion__product .promotion-product__image {
  position: relative;
  aspect-ratio: 1/1.5;
}
.component__whats-on .promotion--image .promotion__product .promotion-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.component__whats-on .promotion--product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.component__whats-on .promotion--product .promotion__card {
  position: relative;
  display: block;
  width: 552px;
}
.component__whats-on .promotion--product .promotion__photo {
  position: relative;
  display: block;
  aspect-ratio: 1/1.5;
}
.component__whats-on .promotion--product .promotion__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.component__whats-on .promotion--product .promotion__info {
  position: relative;
  width: 100%;
  height: 104px;
  margin-bottom: 16px;
  padding: 23px 80px 23px 24px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px;
}
.component__whats-on .promotion--product .promotion__info:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  background: url(../image/05Icon32PxThinArrowRight2.svg) no-repeat center/cover;
  transform: translate(0, -50%);
}
.component__whats-on .promotion--product .promotion__title, .component__whats-on .promotion--product .promotion__description {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.component__whats-on .promotion--product .promotion__title {
  max-height: 28px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}
.component__whats-on .promotion--product .promotion__description {
  max-height: 22px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.38;
  color: #787878;
}
.component__whats-on .promotion--product .promotion__description:empty {
  margin-top: 0;
}
.component__whats-on .promotion--product .promotion__product {
  width: 552px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding-right: 56px;
}
.component__whats-on .promotion--product .promotion__product .no-result {
  font-size: 16px;
  line-height: 1.5;
  color: #787878;
  margin: 0;
  padding: 0 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.component__whats-on .promotion--product .promotion__product .promotion-product {
  display: flex;
  width: 100%;
  align-items: center;
  -moz-column-gap: 22px;
  column-gap: 22px;
  padding-right: 37px;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__image {
  position: relative;
  flex-shrink: 0;
  width: 117px;
  display: block;
  aspect-ratio: 1/1.5;
  background-color: #f8f8f8;
  overflow: hidden;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  mix-blend-mode: multiply;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__info {
  flex: 1 1 auto;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__brand {
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: #000;
  max-height: 48px;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.43;
  color: #404040;
}
.component__whats-on .promotion--product .promotion__product .promotion-product__price {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.43;
  color: #404040;
  display: flex;
  gap: 7px;
  align-items: baseline;
}

.popup-mini-discount .popup__content {
  padding: 20px 20px 30px 20px;
}
.popup-mini-discount .discount-detail__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #131922;
}
.popup-mini-discount .discount-detail__price:not(:nth-last-of-type(n + 1):nth-last-of-type(-n + 2)) {
  margin-bottom: 12px;
}
.popup-mini-discount .discount-detail__price.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #a0a0a0;
  box-sizing: border-box;
}
.popup-mini-discount .discount-detail__price.total .weight {
  font-weight: 500;
}
.popup-mini-discount .discount-detail__price.total span {
  font-weight: bold;
}
.popup-mini-discount .discount-detail__price.total b {
  font-size: 18px;
  line-height: 24px;
}

.popup-mini-gifts .popup__content {
  padding: 20px 20px 24px 20px;
}
.popup-mini-gifts .gifts-img {
  margin-bottom: 20px;
}
.popup-mini-gifts .gifts-img img {
  width: 100%;
}
.popup-mini-gifts .gifts-desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #131922;
}

.tab__btns {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.tab__btns a,
.tab__btns button {
  display: inline-flex;
  width: auto;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  letter-spacing: -0.8px;
  color: #141a23;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
}
.tab__btns a.on,
.tab__btns button.on {
  border-color: #141a23;
  background-color: #141a23;
  color: #fff;
}

.qna__toggle {
  padding-bottom: 24px;
}
.qna__toggle-wrap .wrap__title {
  display: flex;
  height: 64px;
  padding: 0 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  color: #141a23;
}
.qna__toggle-wrap .wrap__title a {
  font-size: 12px;
  text-decoration: underline;
  color: #141a23;
  font-weight: normal;
  padding-right: 20px;
  background: url(../image/ico_arrow_right.svg) no-repeat right center/16px;
}
.qna__toggle-wrap .toggle__item,
.qna__toggle-wrap .normal__item {
  border-bottom: 1px solid #f0f0f0;
}
.qna__toggle-wrap .toggle__item .item__btns,
.qna__toggle-wrap .normal__item .item__btns {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  z-index: 10;
}
.qna__toggle-wrap .toggle__item .item__btns .item__title,
.qna__toggle-wrap .normal__item .item__btns .item__title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.4px;
  text-align: left;
}
.qna__toggle-wrap .toggle__item .item__btns .item__title.black,
.qna__toggle-wrap .normal__item .item__btns .item__title.black {
  color: #000;
}
.qna__toggle-wrap .toggle__item .item__btns .item__title.gray,
.qna__toggle-wrap .normal__item .item__btns .item__title.gray {
  color: #787878;
}
.qna__toggle-wrap .toggle__item .item__btns .item__title:last-of-type,
.qna__toggle-wrap .normal__item .item__btns .item__title:last-of-type {
  margin-top: 6px;
}
.qna__toggle-wrap .toggle__item .item__btns .icon-toggle-arrow,
.qna__toggle-wrap .normal__item .item__btns .icon-toggle-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../image/05-icon-32-px-thin-arrow-up.svg);
  transform: rotate(180deg);
  margin-left: 29px;
}
.qna__toggle-wrap .toggle__item .item__btns .icon-toggle-arrow.up,
.qna__toggle-wrap .normal__item .item__btns .icon-toggle-arrow.up {
  transform: rotate(0deg);
}
.qna__toggle-wrap .toggle__item .toggle_contents,
.qna__toggle-wrap .normal__item .toggle_contents {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  background-color: #f8f8f8;
  padding: 24px;
}
.qna__toggle-wrap .toggle__item .toggle_contents.hidden,
.qna__toggle-wrap .normal__item .toggle_contents.hidden {
  display: none;
}
.qna__toggle-wrap .more_btns {
  padding: 0 24px;
  margin: 24px 0 80px 0;
}
.qna__toggle-wrap .more_btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.23px;
  color: #000;
}
.qna__toggle-wrap .more_btns button .icon-toggle-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 4px;
  background-image: url(../image/05-icon-32-px-thin-arrow-up.svg);
  transform: rotate(180deg);
}
.qna__toggle-wrap .more_btns button .icon-toggle-arrow.up {
  transform: rotate(0deg);
}
.qna__toggle-wrap-empty {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
  padding: 110px 0;
}
.qna__toggle-wrap .qna__sub-category {
  padding: 0 24px;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.qna__toggle-wrap .qna__sub-category button {
  min-width: 66px;
  letter-spacing: 0.8px;
  width: auto;
  display: grid;
  place-items: center;
  height: 40px;
  padding: 0 15px;
  color: #000;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}
.qna__toggle-wrap .qna__sub-category button.on {
  border-color: #141a23;
  background-color: #141a23;
  color: #fff;
}

.result-empty {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
  padding: 110px 0;
}

.p-coupon {
  padding-top: 32px;
  padding-bottom: 30px;
}
.p-coupon__title {
  margin-bottom: 48px;
  border-bottom: 6px solid #000;
  font-size: 56px;
  font-weight: 700;
  line-height: 73px;
  color: #000;
}
.p-coupon__list {
  display: flex;
  flex-flow: column wrap;
  gap: 28px 24px;
}
.p-coupon__item {
  position: relative;
  display: flex;
  width: 507px;
  height: 100px;
  padding: 17px 24px;
  padding-right: 93px;
  color: #fff;
  background-color: #000;
}
.p-coupon__item::before, .p-coupon__item::after {
  content: "";
  position: absolute;
  right: 63px;
  border: 6px solid transparent;
}
.p-coupon__item::before {
  top: 0;
  border-top-color: #fff;
}
.p-coupon__item::after {
  bottom: 0;
  border-bottom-color: #fff;
}
.p-coupon__item.white {
  height: 102px;
  border: none;
  color: #000;
  background: url(../image/coupon-white-bg.svg) no-repeat center/contain;
}
.p-coupon__item.white::before, .p-coupon__item.white::after {
  display: none;
}
.p-coupon__discount {
  overflow: hidden;
  width: 195px;
  flex-shrink: 0;
  font-size: 44px;
  line-height: 68px;
}
.p-coupon__discount.price span {
  font-size: 30px;
}
.p-coupon__text {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  line-height: 1.3;
  text-align: right;
}
.p-coupon__text--name {
  display: flex;
  align-items: center;
}
.p-coupon__text--name span {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
}
.p-coupon__text--period {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
}
.p-coupon .js-download-coupon {
  position: absolute;
  right: 0;
  top: 0;
  width: 69px;
  height: 100%;
}
.p-coupon .js-download-coupon::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 1px;
  height: 60px;
  background-color: #444;
}
.p-coupon .js-download-coupon::after {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 16.5px);
  width: 33px;
  height: 32px;
  background: url(../image/icon_download_white2.png) no-repeat center/cover;
}
.p-coupon .white .js-download-coupon::after {
  filter: invert(1);
}
.p-coupon__item--disabled {
  opacity: 0.4;
}
.p-coupon__item--disabled * {
  color: #e0e0e0;
}
.p-coupon__info--guide {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #929292;
}
.p-coupon__info--guide .ico-tooltip {
  margin-left: 4px;
}

.popup-mini-family-sale-guide .popup__content {
  padding: 20px 0 28px 0;
}
.popup-mini-family-sale-guide .popup-mini__guide-description {
  margin: 0 20px 16px 20px;
}
.popup-mini-family-sale-guide .popup-mini__guide-description p {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
}
.popup-mini-family-sale-guide .popup-mini__guide-description p:not(:last-of-type) {
  margin-bottom: 6px;
}
.popup-mini-family-sale-guide .popup-mini__guide-description p::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 2px;
  left: 0;
  height: 2px;
  border-radius: 50%;
  background-color: #404040;
}
.popup-mini-family-sale-guide .popup-mini__guide-html {
  padding: 16px 20px;
  margin: 0 20px 28px;
  background-color: #f8f8f8;
  box-sizing: border-box;
}

.popup__marketing-terms .marketing-terms,
.popup__shinsegae-tomboy .marketing-terms,
.popup-common-terms .marketing-terms {
  width: 396px;
  position: relative;
  top: -27px;
  left: -36px;
}
.popup__marketing-terms .marketing-terms__novice,
.popup__shinsegae-tomboy .marketing-terms__novice,
.popup-common-terms .marketing-terms__novice {
  padding: 32px 0;
  margin-bottom: 28px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  background-color: #f8f8f8;
}
.popup__marketing-terms .marketing-terms__padding,
.popup__shinsegae-tomboy .marketing-terms__padding,
.popup-common-terms .marketing-terms__padding {
  padding: 0 26px;
}
.popup__marketing-terms .marketing-terms__notice,
.popup__shinsegae-tomboy .marketing-terms__notice,
.popup-common-terms .marketing-terms__notice {
  margin-bottom: 24px;
}
.popup__marketing-terms .marketing-terms__notice li,
.popup__shinsegae-tomboy .marketing-terms__notice li,
.popup-common-terms .marketing-terms__notice li {
  position: relative;
  padding-left: 10px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
}
.popup__marketing-terms .marketing-terms__notice li::before,
.popup__shinsegae-tomboy .marketing-terms__notice li::before,
.popup-common-terms .marketing-terms__notice li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #929292;
}
.popup__marketing-terms .marketing-terms__table,
.popup__shinsegae-tomboy .marketing-terms__table,
.popup-common-terms .marketing-terms__table {
  border-collapse: collapse;
}
.popup__marketing-terms .marketing-terms__th, .popup__marketing-terms .marketing-terms__td,
.popup__shinsegae-tomboy .marketing-terms__th,
.popup__shinsegae-tomboy .marketing-terms__td,
.popup-common-terms .marketing-terms__th,
.popup-common-terms .marketing-terms__td {
  padding: 24px 0 !important;
  vertical-align: top;
  text-align: left;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  border-width: 1px 0px 1px 0px !important;
  background: none !important;
}
.popup__marketing-terms .marketing-terms__th,
.popup__shinsegae-tomboy .marketing-terms__th,
.popup-common-terms .marketing-terms__th {
  width: 82px !important;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #787878;
}
.popup__marketing-terms .marketing-terms__td,
.popup__shinsegae-tomboy .marketing-terms__td,
.popup-common-terms .marketing-terms__td {
  padding: 24px 12px;
}
.popup__marketing-terms .marketing-terms__td h3,
.popup__marketing-terms .marketing-terms__td h4,
.popup__shinsegae-tomboy .marketing-terms__td h3,
.popup__shinsegae-tomboy .marketing-terms__td h4,
.popup-common-terms .marketing-terms__td h3,
.popup-common-terms .marketing-terms__td h4 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000;
}
.popup__marketing-terms .marketing-terms__td h3,
.popup__shinsegae-tomboy .marketing-terms__td h3,
.popup-common-terms .marketing-terms__td h3 {
  font-weight: 500;
}
.popup__marketing-terms .marketing-terms__td p,
.popup__shinsegae-tomboy .marketing-terms__td p,
.popup-common-terms .marketing-terms__td p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}

.popup-marketing-guide .popup__marketing {
  padding-top: 40px;
}
.popup-marketing-guide .popup__marketing-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  color: #000;
  text-align: center;
}
.popup-marketing-guide .popup__marketing-description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  text-align: center;
}
.popup-marketing-guide .popup__marketing button {
  display: block;
  height: auto;
  margin-top: 40px;
  margin-bottom: 12px;
  padding: 16px 0;
  line-height: 20px;
  color: #000;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}
.popup-marketing-guide .popup__marketing button span {
  font-size: 12px;
  line-height: 18px;
  color: #000;
}
.popup-marketing-guide .popup__marketing .btn-wide {
  font-size: 14px;
}

.popup-ranking .popup__content {
  padding: 0;
}
.popup-ranking .membership-ranking__badge img {
  width: 32px;
  height: auto;
}
.popup-ranking .membership-ranking__title {
  font-weight: bold;
}
.popup-ranking .membership-ranking__text-2 {
  font-weight: 500;
}
.popup-ranking .membership-ranking__text-2 .dot-list li::before {
  top: 9px;
}

.popup-zipcode-search .popup__content {
  padding: 0;
}
.popup-zipcode-search .input-style {
  display: flex;
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  box-sizing: border-box;
  margin-top: 8px;
}
.popup-zipcode-search .input-style.disabled {
  background: #f8f8f8;
}
.popup-zipcode-search .input-style.disabled input {
  color: #a0a0a0;
}
.popup-zipcode-search .input-style.hidden {
  display: none;
}
.popup-zipcode-search .input-style label {
  position: relative;
  display: block;
  width: 100%;
}
.popup-zipcode-search .input-style label input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #141a23;
  border: 1px solid #e0e0e0;
}
.popup-zipcode-search .input-style label input::-moz-placeholder {
  color: #a0a0a0;
}
.popup-zipcode-search .input-style label input::placeholder {
  color: #a0a0a0;
}
.popup-zipcode-search .input-style label button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../image/04IconClose.svg) no-repeat center/cover;
}
.popup-zipcode-search .input-style input[type=text],
.popup-zipcode-search .input-style input[type=number],
.popup-zipcode-search .input-style input[type=password],
.popup-zipcode-search .input-style input[type=tel] {
  width: 100%;
  border: none;
}
.popup-zipcode-search .input-style input[type=text]::-moz-placeholder, .popup-zipcode-search .input-style input[type=number]::-moz-placeholder, .popup-zipcode-search .input-style input[type=password]::-moz-placeholder, .popup-zipcode-search .input-style input[type=tel]::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.popup-zipcode-search .input-style input[type=text]::placeholder,
.popup-zipcode-search .input-style input[type=number]::placeholder,
.popup-zipcode-search .input-style input[type=password]::placeholder,
.popup-zipcode-search .input-style input[type=tel]::placeholder {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.popup-zipcode-search .input-style input[type=text]:disabled,
.popup-zipcode-search .input-style input[type=number]:disabled,
.popup-zipcode-search .input-style input[type=password]:disabled,
.popup-zipcode-search .input-style input[type=tel]:disabled {
  background: transparent;
  color: inherit;
}
.popup-zipcode-search .input-style input[type=password] {
  font-size: 22px;
}
.popup-zipcode-search-step-2 {
  display: none;
}
.popup-zipcode__search {
  padding: 0 24px;
  margin-top: 22px;
}
.popup-zipcode__search .input-style {
  display: flex;
  width: calc(100% - 8px - 90px);
  height: 48px;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  box-sizing: border-box;
  margin: 0;
}
.popup-zipcode__search .input-style input {
  border: none;
}
.popup-zipcode__search button {
  width: 90px;
  height: 48px;
  font-size: 14px;
  color: #fff;
  background-color: #787878;
}
.popup-zipcode__search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.popup-zipcode__search-tip {
  margin: 16px 0 5px 0;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #787878;
}
.popup-zipcode__search .desc {
  padding: 0;
}
.popup-zipcode__search .desc-item {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.02px;
}
.popup-zipcode__result {
  margin-top: 24px;
  padding: 0 24px;
}
.popup-zipcode__result-none {
  padding: 110px 0;
  text-align: center;
  color: #787878;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.popup-zipcode__result-text {
  font-size: 14px;
  line-height: 20px;
  color: #141a23;
}
.popup-zipcode__result-table {
  margin-top: 12px;
  border-collapse: collapse;
  border-top: 1px solid #404040;
}
.popup-zipcode__result-table thead th {
  padding: 14px 10px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  letter-spacing: 0;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: content-box;
}
.popup-zipcode__result-table thead th:first-of-type {
  width: 70px;
}
.popup-zipcode__result-table tbody th,
.popup-zipcode__result-table tbody td {
  padding: 16px 10px;
  vertical-align: middle;
  color: #404040;
  border-bottom: 1px solid #f0f0f0;
}
.popup-zipcode__result-table tbody th button {
  width: 70px;
  text-align: center;
  color: #404040;
  font-size: 14px;
  line-height: 18px;
}
.popup-zipcode__result-table tbody td button {
  width: 100%;
  color: #141a23;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  word-break: keep-all;
}
.popup-zipcode__result-table tbody td button:not(:last-of-type) {
  margin-bottom: 8px;
}
.popup-zipcode__detail {
  margin-top: 22px;
  padding: 0 24px;
}
.popup-zipcode__detail-zip {
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.popup-zipcode__detail-address {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 8px;
}
.popup-zipcode__detail-address p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  color: #000;
}
.popup-zipcode__detail .input-style {
  margin-top: 16px;
}
.popup-zipcode__detail-btn {
  display: flex;
  margin-top: 16px;
  gap: 7px;
}
.popup-zipcode__detail-btn button {
  flex: 1;
  height: 48px;
  color: #fff;
  font-size: 14px;
}
.popup-zipcode__detail-btn button.prev {
  background-color: #787878;
}
.popup-zipcode__detail-btn button.submit {
  background-color: #141a23;
}
.popup-zipcode .order-common-btn {
  display: static;
}

.mypage-lnb {
  width: 208px;
  padding: 23px 24px 22px;
  margin-right: 16px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-sizing: border-box;
  align-self: baseline;
}
.mypage-lnb__title {
  padding: 19px 0 18px;
  margin: 0 0 1px;
  color: #131922;
  font-size: 28px;
  line-height: 32px;
  font-weight: bold;
}
.mypage-lnb__set .menu {
  padding-bottom: 23px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 23px;
}
.mypage-lnb__set .menu .menu-title {
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
}
.mypage-lnb__set .menu ul li a {
  display: block;
  height: 36px;
  font-size: 14px;
  font-weight: 400;
  color: #787878;
  line-height: 36px;
}
.mypage-lnb__set .menu ul li.on a {
  color: #000;
}
.mypage-lnb__set .shinsegae p {
  margin-bottom: 90px;
}
.mypage-lnb__set .shinsegae p a {
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  word-break: keep-all;
}
.mypage-lnb__set .certified-button {
  padding: 22px 24px;
  padding-right: 34px;
  background: #f8f8f8;
}
.mypage-lnb__set .certified-button button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 114px;
  font-size: 14px;
  font-weight: 500;
  color: #131922;
  text-align: left;
}
.mypage-lnb__set .certified-button button img {
  width: 20px;
  height: 20px;
}

.popup-mini-safety-number {
  height: auto;
}
.popup-mini-safety-number .popup__content {
  margin: 20px 0 28px 0;
}

.popup-giftinfo {
  height: auto;
  min-height: 0;
}
.popup-giftinfo .popup__content {
  margin-top: 15px;
  padding: 0 34px 60px;
}
.popup-giftinfo .popup__content .gray-bar {
  width: calc(100% + 68px);
  height: 8px;
  background-color: #f0f0f0;
  transform: translateX(-34px);
}
.popup-giftinfo .popup__content .desc {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
}
.popup-giftinfo .popup__content .desc-item {
  position: relative;
  padding-left: 10px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
}
.popup-giftinfo .popup__content .desc-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #929292;
}
.popup-giftinfo .popup__content .desc-item.alert {
  color: #db3c3c;
}
.popup-giftinfo .popup__content .desc-item.alert::before {
  background-color: #db3c3c;
}
.popup-giftinfo .desc:last-of-type li {
  color: #787878;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
}
.popup-giftinfo .desc:last-of-type li::before {
  background-color: #929292;
}
.popup-giftinfo .gift-wrapping-info-gift-example {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.popup-giftinfo .gift-wrapping-info-example {
  display: flex;
  flex-flow: column wrap;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 16px;
  align-items: center;
}
.popup-giftinfo .gift-wrapping-info-example img {
  width: 131px;
  height: 131px;
}
.popup-giftinfo .gift-wrapping-info-example span {
  color: #131922;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

.popup__product-detail {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  z-index: 150;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
  padding: 34px 0;
}
.popup__product-detail > .header.header-popup {
  width: 1440px;
  margin: 0 auto;
  position: -webkit-sticky;
  position: sticky;
  background-color: #fff;
}
.popup__product-detail .detail-info {
  position: absolute;
  top: calc(50% + 33px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1440px;
  height: calc(100% - 153px);
  overflow-y: auto;
  background: #fff;
  padding: 45px 34px 60px;
  box-sizing: border-box;
}
.popup__product-detail.active {
  display: block;
}
.popup__product-detail--bg {
  position: fixed;
  top: 0;
  display: none;
  width: calc(100vw - 16px);
  height: 100vh;
  z-index: 145;
  background-color: rgba(0, 0, 0, 0.64);
  opacity: 0;
  transition: all 1s;
}
.popup__product-detail.active .popup__product-detail--bg {
  opacity: 1;
  display: block;
}
.popup__product-detail--wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  z-index: 99;
  padding-bottom: 50px;
}
.popup__product-detail--more {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #fff;
  padding-top: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.popup__product-detail--more a {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #404040;
  text-align: right;
}
.popup__product-detail--more a span {
  width: 14px;
  height: 14px;
  background: url(../image/ico_arrow_right_gray.svg) no-repeat center/contain;
}
.popup__product-detail--more a:hover {
  color: #000;
  font-weight: 500;
}
.popup__product-detail .popup__content {
  height: 100%;
  overflow-y: auto;
}
.popup__product-detail .popup__content::-webkit-scrollbar {
  display: none;
}
.popup__product-detail .ico-tooltip {
  margin-left: 4px;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label input:checked.disabled ~ .siv-colorchip__border {
  box-shadow: none;
  border: none;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label input:checked.disabled ~ .siv-colorchip__border::after {
  background: url(../image/detail_product_item_color_disable_x.svg) no-repeat center/100% 40px;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label:nth-child(11n-1) .siv-colorchip__tooltip::after {
  left: 172px;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label:nth-child(11n-1) .siv-colorchip__tooltip.type-2 {
  left: -30px;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label:nth-child(11n) .siv-colorchip__tooltip::after {
  left: 209px;
}
.popup__product-detail .siv-colorchip .siv-colorchip__label:nth-child(11n) .siv-colorchip__tooltip.type-2 {
  left: -67px;
}
.popup__product-detail .delivery-guaranteed__tooltip + .popup-tooltip.popup-tooltip-delivery-guaranteed {
  left: -172px;
}
.popup__product-detail .delivery-guaranteed__tooltip + .popup-tooltip.popup-tooltip-delivery-guaranteed::before {
  left: 184px;
}

.inner_popup-bg {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.64);
  opacity: 1;
  top: 0;
  left: 0;
}
.inner_popup-bg.active {
  display: block;
}

.detail {
  /* [공통] 도움말(툴팁) */
  /* 상품 상단 */
}
.detail .ico-tooltip {
  margin-left: 4px;
}
.detail__top .sb-gift__item p {
  font-size: 16px;
  letter-spacing: 0;
  color: #404040;
}
.detail__top .sb-gift__item p .gifts-option {
  width: auto;
  display: inline-block;
  color: #787878;
}
.detail__top-info-default {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #a0a0a0;
  margin-bottom: 16px;
}
.detail__top-info-colorchip {
  padding-bottom: 28px;
}
.detail__top-info-colorchip .siv-colorchip__label input:checked ~ .siv-colorchip__border {
  border: 1px solid #e0e0e0;
}
.detail__top-info-colorchip .siv-colorchip__label input:checked.checked ~ .siv-colorchip__border {
  border: 1px solid #141a23;
}
.detail__bottom .sb-gift__list {
  padding: 0;
  margin-top: 12px;
}
.detail__bottom .sb-gift__item .checkbox__label {
  gap: 8px;
}
.detail__bottom .sb-gift__item .checkbox__label input {
  min-width: 24px;
  margin-right: 0;
}
.detail__bottom .sb-gift__item .gifts-option {
  display: inline-block;
  color: #787878;
}
.detail__bottom .sb-gift__item p {
  display: block;
  max-width: 725px;
  font-size: 16px;
  letter-spacing: 0;
  color: #404040;
}
.detail__bottom .sb-gift__item.bullet-none {
  padding-left: 0;
}
.detail__bottom .sb-gift__item.bullet-none::before {
  content: none;
}
.detail__top {
  display: flex;
  align-items: flex-start;
  /* 왼쪽 박스 */
  /* 오른쪽 박스 */
}
.detail__top-left_box {
  position: relative;
  width: 661px;
  margin-right: 80px;
}
.detail__top-left_box.popup-margin {
  margin-right: 80px;
}
.detail__top-left_box .swiper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.detail__top-left_box .swiper video {
  opacity: 0;
}
.detail__top-left_box .swiper.swiper-container-initialized video {
  opacity: 1;
}
.detail__top-left_box .swiper .swiper-pagination {
  width: auto;
  bottom: 32px;
  left: auto;
  right: 32px;
  text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.6), -1px -1px 0 rgba(255, 255, 255, 0.6), 1px 1px 0 rgba(255, 255, 255, 0.6), 1px -1px 0 rgba(255, 255, 255, 0.6), 1px 0 0 rgba(255, 255, 255, 0.6), -1px 0 0 rgba(255, 255, 255, 0.6), 0 1px 0 rgba(255, 255, 255, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.detail__top-left_box .swiper .swiper-pagination.hide {
  visibility: hidden;
}
.detail__top-left_box .swiper .swiper-pagination span {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0;
}
.detail__top-left_box .swiper-slide {
  max-width: auto;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.detail__top-left_box .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.detail__top-left_box .swiper-vertical-area {
  width: 100%;
  height: 100%;
  max-height: 620px;
  box-sizing: border-box;
}
.detail__top-left_box .swiper-vertical-area .swiper-vertical {
  overflow: hidden;
  height: 520px;
  padding: 1px;
}
.detail__top-left_box .swiper-vertical-area [class^=swiper-button-] {
  visibility: hidden;
  display: none;
  left: auto;
  right: auto;
  width: 100%;
  height: 48px;
  margin: 0;
  text-align: center;
  background-color: #fff;
}
.detail__top-left_box .swiper-vertical-area [class^=swiper-button-]:after {
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
  color: #000;
}
.detail__top-left_box .swiper-vertical-area .swiper-button-prev {
  top: 0;
  align-items: start;
}
.detail__top-left_box .swiper-vertical-area .swiper-button-next {
  top: auto;
  bottom: 0;
  align-items: end;
}
.detail__top-left_box .swiper-vertical-area.swiper-container-initialized-user .swiper-button-prev,
.detail__top-left_box .swiper-vertical-area.swiper-container-initialized-user .swiper-button-next {
  visibility: visible;
}
.detail__top-left_box .swiper-vertical-area.swiper-container-has-navigation {
  padding-block: 50px;
}
.detail__top-left_box .swiper-vertical-area.swiper-container-has-navigation .swiper-button-prev,
.detail__top-left_box .swiper-vertical-area.swiper-container-has-navigation .swiper-button-next {
  display: flex;
}
.detail__top-thumbnail {
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-left: 85px;
  min-height: 576px;
}
.detail__top-thumbnail.square .swiper-vertical {
  height: 476px;
}
.detail__top-thumbnail .swiper-vertical-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 66px;
}
.detail__top-thumbnail .detail-ex__swiper-1 .swiper-wrapper {
  opacity: 0;
}
.detail__top-thumbnail .detail-ex__swiper-1.swiper-container-initialized .swiper-wrapper {
  opacity: 1;
}
.detail__top-thumbnail .detail-ex__swiper-1 .swiper-slide {
  position: relative;
  width: 64px;
  height: 96px;
  cursor: pointer;
  box-shadow: 0 0 0 1px transparent;
}
.detail__top-thumbnail .detail-ex__swiper-1 .swiper-slide.on {
  box-shadow: 0 0 0 1px #131922;
}
.detail__top-thumbnail .detail-ex__swiper-1 .swiper-slide.has-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../image/icons/play_w20_circle.svg) no-repeat center;
  background-size: 20px;
}
.detail__top-thumbnail .detail-ex__swiper-1 .swiper-slide img {
  width: 64px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}
.detail__top-thumbnail .detail-ex__swiper-2-area {
  position: relative;
  flex-shrink: 0;
  width: 576px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.detail__top-thumbnail .detail-ex__swiper-2 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.detail__top-thumbnail .detail-ex__swiper-2 .swiper-wrapper {
  height: 100%;
}
.detail__top-thumbnail .detail-ex__swiper-2 .swiper-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: #000;
}
.detail-ex__swiper-2 .swiper-slide {
  cursor: url(../image/mouse.svg) 30 30, auto;
}

.detail__top-thumbnail .detail__top-swiper_banner {
  z-index: 10;
  position: absolute;
  top: 20px;
  left: 20px;
}
.detail__top-thumbnail .detail__top-swiper_banner p {
  width: 100px;
  height: 100px;
}
.detail__top-thumbnail .detail__top-swiper_banner p a {
  display: block;
}
.detail__top-thumbnail .detail__top-swiper_banner p img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 100%;
}
.detail__top-thumbnail .detail__top-swiper_banner .sb_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
}
.detail__top-thumbnail .detail__top-swiper_banner .sb_close img {
  width: 100%;
  height: 100%;
}
.detail__top-live_tv {
  position: absolute;
  bottom: 62px;
  right: 26px;
  z-index: 10;
  cursor: pointer;
}
.detail__top-live_tv p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: #141a23;
}
.detail__top-cart_sns {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  -moz-column-gap: 4px;
  column-gap: 4px;
  align-items: center;
  box-sizing: border-box;
}
.detail__top-cart_sns button {
  position: relative;
  flex: 1;
  padding: 4px;
}
.detail__top-cart_sns button span {
  display: block;
  width: 32px;
  height: 32px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.detail__top-cart_sns button span.like-btn {
  background: url(../image/icon_heart_black_off.svg) no-repeat top center/cover;
}
.detail__top-cart_sns button span.like-btn.on {
  background-image: url(../image/ico_like_on_light.svg);
}
.detail__top-cart_sns button span.share {
  background: url(../image/ico_share_dark.svg) no-repeat top center/cover;
}
.detail__top-review {
  display: flex;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 26px 0;
  margin-top: 70px;
}
.detail__top-review .siv-starpoint {
  width: 190px;
}
.detail__top-review-comment {
  width: 250px;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail__top-review-count {
  font-size: 12px;
  letter-spacing: 0;
}
.detail__top-review .more-review {
  margin-left: auto;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  text-decoration: underline;
}
.detail__top-relevant {
  padding-bottom: 28px;
  margin-top: 28px;
  border-bottom: 1px solid #f0f0f0;
}
.detail__top-relevant-title {
  width: 190px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.detail__top-relevant-item {
  display: flex;
  align-items: center;
}
.detail__top-relevant-item:not(:first-child) {
  margin-top: 16px;
}
.detail__top-relevant .siv-bullet li {
  display: flex;
  align-items: center;
  width: 251px;
}
.detail__top-relevant .siv-bullet li a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: underline;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.detail__top-hashtag ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 4px;
}
.detail__top-hashtag ul.background-color {
  background-color: #f0f0f0;
  padding: 24px;
}
.detail__top-hashtag ul.background-color li a {
  background-color: #fff;
}
.detail__top-hashtag ul li {
  box-sizing: border-box;
}
.detail__top-hashtag ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.8px;
  color: #131922;
}
.detail__top-right_box {
  position: relative;
}
.detail__top-right_box .siv-badge {
  margin-bottom: 20px;
}
.detail__top-right_box .product-code {
  margin-bottom: 19px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.detail__top-title .brand {
  margin-bottom: 8px;
}
.detail__top-title .brand,
.detail__top-title .brand a {
  font-size: 23px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 32px;
  letter-spacing: normal;
  color: #141a23;
}
.detail__top-title .brand a {
  text-decoration: none;
}
.detail__top-title .brand a:after {
  display: inline-block;
  content: "";
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background: url(../image/05Icon32PxThinArrowRight.svg) no-repeat center/cover;
}
.detail__top-title .name {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0;
  color: #404040;
}
.detail__top-title .md-point {
  margin-top: 8px;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0;
  color: #a0a0a0;
}
.detail__top-price {
  display: flex;
  align-items: baseline;
  margin: 28px 0 25px;
}
.detail__top-price .discount {
  display: flex;
  align-items: center;
  color: #131922;
}
.detail__top-price .discount .discount-rate {
  margin-right: 10px;
  font-size: 32px;
}
.detail__top-price .discount b {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.4px;
  display: flex;
}
.detail__top-price .discount > span {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  padding-left: 4px;
  padding-top: 7px;
}
.detail__top-price .discount .ico-tooltip {
  margin-top: 8px;
}
.detail__top-price .original {
  margin-left: 12px;
  font-size: 16px;
  line-height: 20px;
  color: #a0a0a0;
  transform: translateY(-1px);
}
.detail__top-price .non-member {
  display: flex;
  align-items: center;
  margin-left: 12px;
  font-size: 16px;
  line-height: 20px;
  color: #a0a0a0;
  transform: translateY(-1px);
}
.detail__top-price .non-member .ico-tooltip-wrap {
  display: flex;
  align-items: center;
}
.detail__top-info {
  border-top: 1px solid #f0f0f0;
}
.detail__top-info tr.border-top {
  border-top: 1px solid #f0f0f0;
}
.detail__top-info tr .ico-tooltip {
  margin-left: 12px;
  vertical-align: top;
}
.detail__top-info tr .ico-tooltip.delivery-guaranteed__tooltip {
  margin-left: 0;
}
.detail__top-info th {
  width: 21.3%;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  vertical-align: baseline;
  padding-top: 28px;
  background: none;
  height: auto;
}
.detail__top-info th.padding-bottom {
  padding-bottom: 28px;
}
.detail__top-info th.padding-none {
  padding-top: 0;
}
.detail__top-info th.tooltip {
  display: flex;
  width: 100%;
  align-items: center;
}
.detail__top-info th.tooltip .ico-tooltip-wrap {
  line-height: 1;
}
.detail__top-info th.tooltip .ico-tooltip {
  margin-left: 4px;
}
.detail__top-info td {
  padding-top: 28px;
  vertical-align: top;
}
.detail__top-info td.padding-bottom {
  padding-bottom: 28px;
}
.detail__top-info td.padding-none {
  padding-top: 0;
}
.detail__top-info-reservation {
  display: flex;
  justify-content: space-between;
}
.detail__top-info-reservation ul li {
  display: flex;
}
.detail__top-info-reservation ul li .text,
.detail__top-info-reservation ul li .desc {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}
.detail__top-info-reservation ul li .text {
  color: #404040;
  margin-right: 24px;
}
.detail__top-info-reservation-desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.detail__top-info-coupon {
  display: flex;
  align-items: center;
}
.detail__top-info-coupon:not(:first-of-type) {
  margin-top: 12px;
}
.detail__top-info-coupon .btn-wide {
  height: 40px;
  max-height: 40px;
}
.detail__top-info-coupon .tooltip {
  margin-left: 12px;
}
.detail__top-info-coupon-available {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: right;
  color: #a0a0a0;
  text-decoration: underline;
  margin-top: 8px;
  padding-right: 28px;
}
.detail__top-info-benefit {
  display: flex;
  align-items: center;
}
.detail__top-info-benefit a,
.detail__top-info-benefit button {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: underline;
}
.detail__top-info-benefit a:not(:first-of-type),
.detail__top-info-benefit button:not(:first-of-type) {
  margin-left: 20px;
}
.detail__top-info-benefit-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 17px 20px;
  margin-top: 12px;
}
.detail__top-info-benefit-banner-wrap {
  display: flex;
  align-items: center;
}
.detail__top-info-benefit-banner p {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}
.detail__top-info-benefit-banner p span {
  font-weight: bold;
}
.detail__top-info-benefit-banner .icon-arrow-right {
  width: 20px;
  height: 20px;
  background: url(../image/arrow_right.svg) no-repeat center/cover;
}
.detail__top-info-point {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.detail__top-info-point:not(:first-of-type) {
  margin-top: 25px;
}
.detail__top-info-point.e-point {
  margin-top: 12px;
}
.detail__top-info-point-wrap {
  display: flex;
}
.detail__top-info-point-title {
  min-width: 80px;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0;
  margin-right: 16px;
  white-space: nowrap;
}
.detail__top-info-point-list li {
  display: flex;
  align-items: center;
}
.detail__top-info-point-list li img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.detail__top-info-point-list li span {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}
.detail__top-info-point-list li:not(:first-child) {
  margin-top: 9px;
}
.detail__top-info-point-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.detail__top-info-point-container a {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  color: #131922;
  text-decoration: underline;
}
.detail__top-info-delivery-fee {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
}
.detail__top-info-gifts:not(:first-of-type) {
  margin-top: 8px;
}
.detail__top-info-gifts:first-of-type {
  margin-top: 14px;
}
.detail__top-info-gifts .sb-gift__list:not(:first-of-type) {
  margin-top: 8px;
}
.detail__top-info-gifts .sb-gift__item span {
  width: 464px;
}
.detail__top-info-gifts .sb-gift__item.bullet-none {
  padding-left: 0;
}
.detail__top-info-gifts .sb-gift__item.bullet-none::before {
  content: none;
}
.detail__top-info-gifts-comment {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #787878;
}
.detail__top-info-gifts-comment.padding-bottom-32 {
  padding-bottom: 32px;
}
.detail__top-info-promotion {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail__top-info-promotion p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  color: #131922;
}
.detail__top-info-promotion button {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #a0a0a0;
}
.detail__top-info-product-guide {
  padding-bottom: 24px;
}
.detail__top-info-product-guide ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail__top-info-product-guide ul li.type-2 {
  justify-content: flex-start;
}
.detail__top-info-product-guide ul li button {
  margin-left: auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #a0a0a0;
}
.detail__top-info-product-guide .ico-tooltip-wrap {
  line-height: 1;
}
.detail__top-info-bundle {
  padding-bottom: 28px;
}
.detail__top-info-bundle-popup-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #a0a0a0;
}
.detail__top-info-bundle-thum-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid #f0f0f0;
  padding: 24px;
}
.detail__top-info-bundle-thum-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 180px;
  background-color: #f8f8f8;
}
.detail__top-info-bundle-thum-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.detail__top-info-bundle-thum-item img {
  max-width: 100%;
  max-height: 100%;
}
.detail__top-info-colorchip .siv-colorchip:not(:first-of-type) {
  margin-top: 8px;
}
.detail__top-info-set-product .background-color {
  background-color: #f8f8f8;
}
.detail__top-info-set-product .siv-bullet li.bullet-4 {
  padding: 18px 32px;
}
.detail__top-info-set-product .siv-bullet li.bullet-4::before {
  left: 20px;
}
.detail__top-info-set-product-list {
  padding: 20px 0;
}
.detail__top-info-set-product-btn {
  height: 56px;
  margin-top: 12px;
}
.detail__top-info-set-product .set-product-item {
  display: flex;
  align-items: center;
}
.detail__top-info-set-product .set-product-item:not(:first-child) {
  margin-top: 12px;
}
.detail__top-info-set-product .set-product-thum {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 84px;
  background-color: #f8f8f8;
}
.detail__top-info-set-product .set-product-thum img {
  max-width: 100%;
  max-height: 100%;
}
.detail__top-info-set-product .set-product-info {
  margin-left: 20px;
}
.detail__top-info-set-product .set-product-info .product-name {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #404040;
}
.detail__top-info-set-product .set-product-info .product-name span {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0;
  color: #131922;
  border: 1px solid #131922;
  margin-right: 8px;
  padding: 0 6px;
  box-sizing: border-box;
}
.detail__top-info-set-product .set-product-info .product-option {
  margin-top: 6px;
}
.detail__top-info-set-product .set-product-info .product-option span {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #787878;
}
.detail__top-info-set-product .set-product-info .product-option span:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #e0e0e0;
  margin: 0 8px;
}
.detail__top-info-set-product .set-product-price {
  padding: 18px 0 28px;
  border-top: 1px solid #f0f0f0;
}
.detail__top-info-set-product .set-product-price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail__top-info-set-product .set-product-price-wrap .sum {
  display: flex;
  align-items: center;
}
.detail__top-info-set-product .set-product-price-wrap .sum p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #131922;
}
.detail__top-info-set-product .set-product-price-wrap .sum p span {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  letter-spacing: 0;
  margin-right: 2px;
}
.detail__top-info-set-product .set-product-price-wrap .sum .price-title {
  color: #787878;
  margin-right: 12px;
}
.detail__top-info-set-product .set-product-price-wrap .product-reset-btn {
  width: 121px;
  height: 32px;
  font-size: 14px;
  line-height: 22px;
  gap: 0;
}
.detail__top-info-set-product .set-product-price-wrap .product-reset-btn .refresh {
  width: 28px;
  height: 28px;
  background: url(../image/search_refresh_btn.svg) no-repeat center/cover;
}
.detail__top-info-set-product .set-product-price .siv-bullet {
  margin-top: 18px;
}
.detail__top-info-size .siv-selectbox:not(:first-of-type) {
  margin-top: 16px;
}
.detail__top-info-size-product:not(:first-of-type) {
  margin-top: 24px;
}
.detail__top-info-size-product-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.detail__top-info-size-info {
  display: flex;
  height: 24px;
  margin-top: 12px;
}
.detail__top-info-size-info .text-left {
  position: relative;
  top: 1px;
  font-size: 14px;
}
.detail__top-info-size-info button {
  margin-left: auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #a0a0a0;
  text-decoration: underline;
}
.detail__top-info-size-info button.open-model-size {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.detail__top-info-size-info button:not(:first-of-type) {
  margin-left: 8px;
}
.detail__top-info-amount .form-amount {
  width: auto;
}
.detail__top-info-amount-reguler {
  margin-top: 24px;
  padding: 20px;
  background-color: #f8f8f8;
}
.detail__top-info-amount-reguler-guide {
  font-size: 14px;
  letter-spacing: 0;
  color: #787878;
  padding-left: 36px;
  margin-top: 3px;
}
.detail__top-info-options {
  padding-bottom: 28px;
}
.detail__top-info-options .options__inner + .options__inner {
  margin-top: 24px;
}
.detail__top-info-options .siv-selectbox:not(:first-of-type) {
  margin-top: 8px;
}
.detail__top-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 40px;
  margin-top: 28px;
  border-top: 1px solid #131922;
}
.detail__top-sum-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0;
}
.detail__top-sum-price {
  font-size: 16px;
  line-height: 24px;
}
.detail__top-sum-price span {
  font-size: 32px;
  font-weight: bold;
  line-height: 38px;
  letter-spacing: 0.4px;
}
.detail__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 5px;
  margin-top: 20px;
}
.detail__btn .btn-wide {
  font-size: 18px;
  line-height: 26px;
}
.detail__btn .btn-disabled {
  background-color: #f0f0f0;
  color: #c8c8c8;
}
.detail__btn .btn-gift {
  display: flex;
  min-width: 120px;
  height: 56px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  box-sizing: border-box;
}
.detail__btn .btn-gift:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background: url(../image/ico_gift-v2.svg) no-repeat 0 0;
}
.detail__btn.options {
  margin-top: 12px;
}
.detail__btn.options .btn-wide {
  font-size: 14px;
  line-height: 22px;
}
.detail__btn.options .btn-gift {
  min-width: 100px;
  font-size: 14px;
  height: 48px;
}

.popup__discount-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #a0a0a0;
}
.popup__discount-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.popup__discount-item-topic {
  font-size: 14px;
  line-height: 20px;
  color: #131922;
}
.popup__discount-item-value {
  font-size: 14px;
  line-height: 20px;
  color: #131922;
}
.popup__discount-item-value.gold {
  color: #d99c63;
}
.popup__discount-item-value span {
  font-weight: bold;
}
.popup__discount-item-text, .popup__discount-item-price {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.popup__discount-item-text span, .popup__discount-item-price span {
  font-weight: bold;
}
.popup__discount-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.popup__discount-total.margin {
  margin-top: 20px;
}
.popup__discount-total-text {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #131922;
}
.popup__discount-total-price {
  font-size: 14px;
  color: #131922;
}
.popup__discount-total-price span {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  color: #131922;
}
.popup__discount-rate {
  width: 100%;
  padding-left: 20px;
  font-size: 12px;
  color: #787878;
  background: url(../image/05-icon-16-discount.svg) no-repeat left center/16px;
}
.popup__discount-notice-text {
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.popup__discount-notice-btn {
  margin-top: 5px;
  margin-bottom: 20px;
  padding-bottom: 19px;
  text-align: right;
  background: url(../image/dotted-line.svg);
  background-repeat: repeat-x;
  background-position: 1px 35px;
  background-size: 100%;
}
.popup__discount-notice-btn button {
  display: inline-flex;
}
.popup__discount-notice-btn button u {
  font-size: 12px;
  line-height: 18px;
  color: #131922;
}
.popup__discount-notice-btn button span {
  display: block;
  width: 16px;
  height: 17px;
  margin-left: 4px;
  background: url(../image/05-icon-16-18-px-thin-arrow-up.svg) no-repeat center/cover;
}
.popup__discount-notice-btn button span.open {
  transform: rotate(180deg);
}
.popup__discount-notice-toggle .popup__discount-list {
  border-bottom: 0;
}
.popup__discount .siv-bullet li {
  font-size: 12px;
  line-height: 18px;
}
.popup__discount .siv-tab__content {
  margin-top: 20px;
}
.popup__video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.popup__video video {
  min-width: 100%;
  min-height: 100%;
}
.popup__video--close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 33px;
  height: 33px;
  background: url(../image/04IconClose.svg) no-repeat center/contain;
}
.popup__video.active {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
}
.popup-set .popup__content {
  height: calc(100% - 151px);
  padding: 0;
}
.popup-set__wrap {
  height: 598px;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.popup-set__wrap::-webkit-scrollbar {
  display: none;
}
.popup-set__content {
  display: none;
}
.popup-set__content.on {
  display: block;
}
.popup-set__progress {
  padding: 12px 24px 20px 24px;
  border-bottom: 8px solid #f0f0f0;
}
.popup-set__progress p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #404040;
}
.popup-set__progress .progress-bar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.popup-set__progress .progress {
  position: relative;
  flex: 1 1 auto;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-basis: 59px;
}
.popup-set__progress .progress button {
  display: flex;
  width: 28px;
  height: 28px;
  font-size: 14px;
  overflow: hidden;
  background: #fff;
  color: #141a23;
  border: 1px solid #141a23;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.popup-set__progress .progress button:disabled {
  border: 1px solid #f0f0f0;
  background: #f0f0f0;
  color: #cacaca;
}
.popup-set__progress .progress:last-child, .popup-set__progress .progress:nth-child(6n) {
  flex: 0 0 auto;
}
.popup-set__progress .progress:nth-child(n+7) {
  margin-top: 16px;
}
.popup-set__progress .progress::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f0f0f0;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}
.popup-set__progress .progress.done {
  overflow: visible;
}
.popup-set__progress .progress.done:not(:last-of-type)::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #141a23;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}
.popup-set__progress .progress.clicked button {
  transform: scale(1.3);
}
.popup-set__progress ~ div.popup-set__btns .submit {
  display: none;
}
.popup-set__product-title {
  display: flex;
  height: 57px;
  padding: 0 24px;
  margin: 0 10px;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.popup-set__product-title p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}
.popup-set__product-title p span {
  font-weight: normal;
  color: #787878;
}
.popup-set__product-title p span i {
  font-style: normal;
}
.popup-set__product-list {
  padding: 0 24px;
}
.popup-set__product .set_options {
  margin-top: 32px;
  padding-bottom: 32px;
}
.popup-set__product .set_options:not(:last-of-type) {
  border-bottom: 1px solid #e0e0e0;
}
.popup-set__product .set_options.checked .popup-set__product-info .info_option {
  display: block;
  margin-top: 24px;
}
.popup-set__product .item__wrap {
  display: flex;
}
.popup-set__product-checkbox {
  margin-right: 12px;
}
.popup-set__product-checkbox input[type=checkbox] {
  display: none;
}
.popup-set__product-checkbox input[type=checkbox] ~ .checkbox {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../image/icon_checkbox_off.svg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.popup-set__product-checkbox input[type=checkbox]:checked ~ .checkbox {
  background-image: url(../image/icon_checkbox_on_black.svg);
}
.popup-set__product-checkbox input[type=checkbox]:disabled ~ .checkbox {
  background-image: url(../image/icon_checkbox_on_black.svg);
  opacity: 0.1;
}
.popup-set__product-info-detail {
  display: flex;
  align-items: center;
}
.popup-set__product-info-detail-thum {
  position: relative;
  display: flex;
  width: 80px;
  height: 120px;
  align-items: center;
  background-color: #f8f8f8;
}
.popup-set__product-info-detail-thum img {
  width: 100%;
  mix-blend-mode: multiply;
}
.popup-set__product-info-detail-thum .soldout {
  position: absolute;
  display: none;
  width: 100%;
  line-height: 20px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
  bottom: 0;
  background-color: rgba(20, 26, 35, 0.3);
}
.set_options.soldout .popup-set__product-info-detail-thum .soldout {
  display: block;
}

.popup-set__product-info-detail-text {
  display: flex;
  width: 195px;
  flex-direction: column;
  margin-left: 16px;
  justify-content: center;
}
.popup-set__product-info-detail-strong {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.08px;
  color: #404040;
}
.popup-set__product-info-detail-price {
  display: inline-flex;
  margin-top: 8px;
  align-items: center;
  font-size: 14px;
  letter-spacing: -0.08px;
}
.popup-set__product-info-detail-price--member {
  font-weight: bold;
  color: #141a23;
}
.popup-set__product-info-detail-price--nonmember {
  display: inline-flex;
  margin-left: 4px;
  color: #787878;
  align-items: center;
}
.popup-set__product-info-detail-price--nonmember .tooltip {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../../image/icon_tooltip_gray.svg) no-repeat center/contain;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.popup-set__product-info .info_option {
  display: none;
}
.popup-set__product-info .option_color {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  box-sizing: border-box;
  align-items: center;
  font-size: 14px;
  color: #787878;
  letter-spacing: 0;
  background-color: #f8f8f8;
}
.popup-set__product-info .option_select {
  margin-top: 8px;
}
.popup-set__product-info .option_select .siv-selectbox {
  width: 100%;
  position: relative;
}
.popup-set__product-info .option_select .siv-selectbox-wrap {
  margin-top: 24px;
  margin-bottom: 16px;
  padding: 0 24px;
}
.popup-set__product-info .option_select .siv-selectbox .selected {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background: url(../image/ico_arrow_down.svg) no-repeat right 12px center/16px auto;
}
.popup-set__product-info .option_select .siv-selectbox .selected span {
  display: block;
  width: calc(100% - 16px - 16px - 12px - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  margin-left: 16px;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #141a23;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox-wrap {
  position: absolute;
  display: none;
  width: 100%;
  margin-top: -1px;
  box-sizing: border-box;
  z-index: 20;
  background-color: #fff;
  height: 192px;
  border: 1px solid #141a23;
  overflow: scroll;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option {
  height: 48px;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option label {
  position: relative;
  display: block;
  height: 48px;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option label input[type=radio] ~ p {
  position: absolute;
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  top: 0;
  left: 0;
  padding: 0 16px;
  box-sizing: border-box;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option label input[type=radio] ~ p span {
  display: block;
  width: calc(100% - 12px - 24px);
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #141a23;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option label input[type=radio]:checked ~ p span {
  font-weight: bold;
}
.popup-set__product-info .option_select .siv-selectbox .selectbox .option label input[type=radio]:disabled ~ p span {
  color: #c8c8c8;
  font-weight: bold;
}
.popup-set__product-info-amount {
  display: flex;
  margin-top: 8px;
  width: 100%;
  height: 48px;
  border: 1px solid #e0e0e0;
  align-items: center;
  justify-content: space-between;
}
.popup-set__product-info-amount button {
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}
.popup-set__product-info-amount button.minus {
  border-right: 1px solid #e0e0e0;
  background-image: url(../../image/icon_subtraction.svg);
}
.popup-set__product-info-amount button.plus {
  border-left: 1px solid #e0e0e0;
  background-image: url(../image/icon_add_black.svg);
}
.popup-set__product-info-amount .amount {
  font-size: 14px;
  color: #141a23;
}
.popup-set__product-info-restock {
  flex-basis: 100%;
  padding-top: 17px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}
.popup-set__product-info-restock button {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #787878;
}
.set_options.soldout .popup-set__product-info-option,
.set_options.soldout .popup-set__product-info-selectbox,
.set_options.soldout .popup-set__product-info-amount {
  display: none;
}
.set_options.soldout .popup-set__product-info-restock {
  display: block;
}

.popup-set__btns {
  position: sticky;
  position: -webkit-sticky;
  width: calc(100% - 68px);
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 12px 24px 34px 24px;
  background: #fff;
  box-sizing: border-box;
}
.popup-set__btns button {
  flex-grow: 1;
  flex-basis: 0;
  height: 48px;
  color: #fff;
  font-size: 14px;
}
.popup-set__btns button.prev {
  background-color: #787878;
}
.popup-set__btns button.next, .popup-set__btns button.submit {
  background-color: #141a23;
}
.popup-set__btns button.submit {
  display: none;
}
.popup-set.onestep .popup-set__btns button {
  display: none;
}
.popup-set.onestep .popup-set__btns button.submit {
  display: block;
}
.popup-nm-text {
  padding: 26px 24px;
  background-color: #f8f8f8;
}
.popup-nm-text p {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  color: #131922;
}
.popup-nm-text p span {
  font-size: 14px;
  font-weight: normal;
  color: #787878;
}
.popup-nm-description {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.popup-nm-description p {
  position: relative;
  padding-left: 10px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.popup-nm-description p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background-color: #929292;
}
.popup-discount-card {
  height: auto;
}

.product__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.product.swiper-container .product__list {
  flex-wrap: nowrap;
}

.product__list.gap--sml {
  gap: 12px;
}
.product__list.gap--mid {
  gap: 24px;
}
.product__list.gap--big {
  gap: 84px;
}
.product__list.thum--2.gap--sml .product__item, .product__list.thum--2.gap--sml .product__more {
  flex-basis: calc((100% - 12px) / 2);
}
.product__list.thum--2.gap--sml .product__item:nth-of-type(2n), .product__list.thum--2.gap--sml .product__more:nth-of-type(2n) {
  margin-right: -12px;
}
.product__list.thum--2.gap--mid .product__item, .product__list.thum--2.gap--mid .product__more {
  flex-basis: calc((100% - 24px) / 2);
}
.product__list.thum--2.gap--mid .product__item:nth-of-type(2n), .product__list.thum--2.gap--mid .product__more:nth-of-type(2n) {
  margin-right: -24px;
}
.product__list.thum--2.gap--big .product__item, .product__list.thum--2.gap--big .product__more {
  flex-basis: calc((100% - 84px) / 2);
}
.product__list.thum--2.gap--big .product__item:nth-of-type(2n), .product__list.thum--2.gap--big .product__more:nth-of-type(2n) {
  margin-right: -84px;
}
.product__list.thum--3.gap--sml .product__item, .product__list.thum--3.gap--sml .product__more {
  flex-basis: calc((100% - 24px) / 3);
}
.product__list.thum--3.gap--sml .product__item:nth-of-type(3n), .product__list.thum--3.gap--sml .product__more:nth-of-type(3n) {
  margin-right: -12px;
}
.product__list.thum--3.gap--mid .product__item, .product__list.thum--3.gap--mid .product__more {
  flex-basis: calc((100% - 48px) / 3);
}
.product__list.thum--3.gap--mid .product__item:nth-of-type(3n), .product__list.thum--3.gap--mid .product__more:nth-of-type(3n) {
  margin-right: -24px;
}
.product__list.thum--3.gap--big .product__item, .product__list.thum--3.gap--big .product__more {
  flex-basis: calc((100% - 168px) / 3);
}
.product__list.thum--3.gap--big .product__item:nth-of-type(3n), .product__list.thum--3.gap--big .product__more:nth-of-type(3n) {
  margin-right: -84px;
}
.product__list.thum--4.gap--sml .product__item, .product__list.thum--4.gap--sml .product__more {
  flex-basis: calc((100% - 36px) / 4);
}
.product__list.thum--4.gap--sml .product__item:nth-of-type(4n), .product__list.thum--4.gap--sml .product__more:nth-of-type(4n) {
  margin-right: -12px;
}
.product__list.thum--4.gap--mid .product__item, .product__list.thum--4.gap--mid .product__more {
  flex-basis: calc((100% - 72px) / 4);
}
.product__list.thum--4.gap--mid .product__item:nth-of-type(4n), .product__list.thum--4.gap--mid .product__more:nth-of-type(4n) {
  margin-right: -24px;
}
.product__list.thum--4.gap--big .product__item, .product__list.thum--4.gap--big .product__more {
  flex-basis: calc((100% - 252px) / 4);
}
.product__list.thum--4.gap--big .product__item:nth-of-type(4n), .product__list.thum--4.gap--big .product__more:nth-of-type(4n) {
  margin-right: -84px;
}
.product__list.thum--5.gap--sml .product__item, .product__list.thum--5.gap--sml .product__more {
  flex-basis: calc((100% - 48px) / 5);
}
.product__list.thum--5.gap--sml .product__item:nth-of-type(5n), .product__list.thum--5.gap--sml .product__more:nth-of-type(5n) {
  margin-right: -12px;
}
.product__list.thum--5.gap--mid .product__item, .product__list.thum--5.gap--mid .product__more {
  flex-basis: calc((100% - 96px) / 5);
}
.product__list.thum--5.gap--mid .product__item:nth-of-type(5n), .product__list.thum--5.gap--mid .product__more:nth-of-type(5n) {
  margin-right: -24px;
}
.product__list.thum--5.gap--big .product__item, .product__list.thum--5.gap--big .product__more {
  flex-basis: calc((100% - 336px) / 5);
}
.product__list.thum--5.gap--big .product__item:nth-of-type(5n), .product__list.thum--5.gap--big .product__more:nth-of-type(5n) {
  margin-right: -84px;
}
.product__list.thum--6.gap--sml .product__item, .product__list.thum--6.gap--sml .product__more {
  flex-basis: calc((100% - 60px) / 6);
}
.product__list.thum--6.gap--sml .product__item:nth-of-type(6n), .product__list.thum--6.gap--sml .product__more:nth-of-type(6n) {
  margin-right: -12px;
}
.product__list.thum--6.gap--mid .product__item, .product__list.thum--6.gap--mid .product__more {
  flex-basis: calc((100% - 120px) / 6);
}
.product__list.thum--6.gap--mid .product__item:nth-of-type(6n), .product__list.thum--6.gap--mid .product__more:nth-of-type(6n) {
  margin-right: -24px;
}
.product__list.thum--6.gap--big .product__item, .product__list.thum--6.gap--big .product__more {
  flex-basis: calc((100% - 420px) / 6);
}
.product__list.thum--6.gap--big .product__item:nth-of-type(6n), .product__list.thum--6.gap--big .product__more:nth-of-type(6n) {
  margin-right: -84px;
}
.product__list.exception {
  gap: 0;
}
.product__item {
  width: auto;
  min-width: 0;
}
.product__item:hover .siv-product__size,
.product__item:hover .siv-product__soldout {
  display: flex;
}
.product:not(.swiper-container) .product__item:not(:nth-last-of-type(n + 1):nth-last-of-type(-n + 4)) {
  margin-bottom: 60px;
}
.product__thum {
  aspect-ratio: 1/1.5;
}
.product__list.square-type .product__thum {
  aspect-ratio: 1/1;
}
.product__list.square-type .product__thum img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product__thum > a, .product__thum > .no-click {
  justify-content: center;
}
.product__thum .siv-product__cover {
  z-index: 10;
}
.product__data {
  position: relative;
  display: block;
  padding: 16px 8px;
  width: 100%;
  box-sizing: border-box;
}
.product__data * {
  word-break: break-all;
}
.product__data .like-btn {
  position: absolute;
}
.product__data-ranking {
  display: inline-flex;
  margin-bottom: 12px;
  width: 27px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  font-size: 12px;
  background: url(../image/ranking_gray.svg) no-repeat center/contain;
}
.product__data-ranking.gold {
  background: url(../image/ranking_gold.svg) no-repeat center/contain;
}
.product__data-brand {
  display: -webkit-box;
  max-width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  white-space: initial;
}
.product__data-brand.white {
  color: #fff;
}
.product.swiper-container .product__data-brand {
  max-height: 48px;
}

.product__data-name {
  display: -webkit-box;
  margin-top: 6px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.product__data-name:hover {
  text-decoration: underline;
}
.product__data-name.light_gray {
  color: #f8f8f8;
}
.product__data-price {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #404040;
  gap: 1px 7px;
  align-items: baseline;
}
.product__data-price.white {
  color: #fff;
}
.product__data-price .origin {
  color: #a0a0a0;
}
.product__data-rating {
  display: flex;
  margin-top: 8px;
  align-items: center;
}
.product__data-rating img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.product__data-rating .point {
  margin-right: 2px;
  font-size: 14px;
  color: #000;
}
.product__data-rating .number {
  font-size: 14px;
  color: #929292;
}
.product__data__color {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 8px;
}
.product__data__color--wrap {
  position: relative;
  display: block;
  width: 100%;
  width: 24px;
  height: 24px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.product__data__color--wrap:hover {
  border: 1px solid #000;
}
.product__data__color--wrap:disabled::after, .product__data__color--wrap.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../comm/image/product_color_sold_out.svg) no-repeat center/cover;
}
.product__data__color--wrap:disabled {
  border: none;
}
.product__data__color--wrap.black {
  border-color: #000;
}
.product__data__color--wrap img,
.product__data__color--wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product__data__color--wrap img {
  display: block;
  max-width: 20px;
  max-height: 20px;
}
.product__data__color--wrap span {
  display: block;
  width: 20px;
  height: 20px;
}
.product__data__color--wrap .tooltip {
  position: absolute;
  display: none;
  min-height: 40px;
  padding: 10px 12px;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 12px));
  box-sizing: border-box;
  background-color: #131922;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
.product__data__color--wrap .tooltip__text {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.product__data__color--wrap .tooltip::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background: url(../image/combinedShape_crop.png) no-repeat 50% 50%;
  background-size: cover;
  z-index: 10;
}
.product__data__color--wrap:hover .tooltip {
  display: block;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.product__data__delivery {
  margin-top: 12px;
  color: #d99c63;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  padding: 0 8px;
}
.product__data:not(a) .product__data-name:hover {
  text-decoration: none;
}
.product .swiper-navigation {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}
.product .swiper-navigation .arrow {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 10;
}
.product .swiper-navigation .arrow.swiper-button-disabled {
  background-color: rgba(0, 0, 0, 0.1);
}
.product .swiper-navigation .arrow.prev {
  left: 0;
}
.product .swiper-navigation .arrow.next {
  right: 0;
}
.product.white * {
  color: #fff;
}
.product__more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 264/396;
  background-color: #f8f8f8;
}
.product__more-link {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.product__more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.product__more-icon img {
  width: auto;
}
.product__more-text {
  margin-top: 16px;
  color: #131922;
  font-size: 16px;
}

.pop_terms {
  min-height: 0;
  height: auto;
  padding-bottom: 0;
}

.popup__card-benefits .popup__content {
  padding: 0;
}

.popup__benefits {
  padding-bottom: 80px;
}
.popup__benefits-list {
  display: flex;
  height: 48px;
  align-items: center;
  text-align: center;
}
.popup__benefits-item {
  display: flex;
  width: 100%;
  height: 100%;
}
.popup__benefits-item a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 48px;
  color: #929292;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.popup__benefits-item a.on {
  border-bottom: 2px solid #000;
  color: #000;
}
.popup__benefits-wrap {
  padding: 42px 24px 0;
}
.popup__benefits-wrap ~ .popup__benefits-wrap {
  border-top: 8px solid #f0f0f0;
}
.popup__benefits-notice {
  padding: 16px 24px 8px;
}
.popup__benefits-notice p {
  padding: 12px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
  background-color: #f8f8f8;
}
.popup__benefits-notice p span {
  position: relative;
  padding-left: 8px;
  display: block;
}
.popup__benefits-notice p span:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #929292;
}
.popup__benefits-notice + .popup__benefits-wrap {
  padding-top: 30px;
}
.popup__benefits-head {
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #141a23;
  border-bottom: 1px solid #141a23;
}
.popup__benefits-box {
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}
.popup__benefits-box.two {
  align-items: center;
}
.popup__benefits-logo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 6px 4px;
  font-size: 14px;
  letter-spacing: -0.9px;
  line-height: 17px;
  text-align: center;
  color: #404040;
  background-position: center;
  background-size: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__benefits-logo img {
  width: 40px;
}
.popup__benefits-text {
  margin-left: 24px;
}
.popup__benefits-text-title {
  position: relative;
  margin-bottom: 6px;
  padding-left: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  letter-spacing: 0;
  word-break: break-word;
}
.popup__benefits-text-title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  background: url(../image/icon_bullet_small.svg) no-repeat center/contain;
}
.popup__benefits-text-title:last-child {
  margin-bottom: 0;
}
.popup__benefits-none {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 392px;
  padding: 32px 24px 38px;
}
.popup__benefits-none img {
  width: 40px;
  height: 40px;
}
.popup__benefits-none-text {
  margin-top: 12px;
  font-size: 14px;
  color: #787878;
}
.popup__benefits-empty {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
  color: #787878;
  padding-top: 221px;
  margin-top: 32px;
}

.popup-club-beauty-act-info .guide-head {
  margin-top: 0;
}

.siv-popup.popup-qna-writing {
  padding-bottom: 0;
}
.siv-popup.popup-qna-writing .popup__content {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 76px);
  padding: 0;
}

.popup__qna-ad {
  padding: 26px 24px;
  background-color: #f8f8f8;
}
.popup__qna-ad-text {
  font-size: 16px;
  line-height: 20px;
  color: #141a23;
}
.popup__qna-form {
  padding: 24px 24px 0;
}
.popup__qna-form-mail {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
}
.popup__qna-form-mail input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  font-size: 14px;
  border: 0;
  box-sizing: border-box;
}
.popup__qna-form-mail input::-moz-placeholder {
  color: #a0a0a0;
  letter-spacing: 0;
}
.popup__qna-form-mail input::placeholder {
  color: #a0a0a0;
  letter-spacing: 0;
}
.popup__qna-form-mail-btn {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background: url(../image/04IconClose.svg) no-repeat center/cover;
}
.popup__qna-form-checkbox {
  margin-top: 12px;
}
.popup__qna-form-checkbox .chk2_label2 {
  display: flex;
  padding: 16px;
  align-items: flex-start;
  background: #f8f8f8;
}
.popup__qna-form-checkbox .chk2_label2 span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #787878;
}
.popup__qna-form-checkbox .chk2_label2 span strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.popup__qna-form-checkbox label {
  display: flex;
  align-items: center;
}
.popup__qna-form-checkbox label input {
  display: inline-block;
  height: 24px;
  padding-left: 32px;
  font-size: 14px;
  color: #101010;
  background: url("../image/icon_checkbox_off.svg") no-repeat left center/24px 24px;
}
.popup__qna-form-checkbox label input:checked {
  background: url("../image/icon_checkbox_on_black.svg") no-repeat left center/24px 24px;
}
.popup__qna-form-textarea {
  position: relative;
  margin-top: 24px;
  padding: 16px 16px 52px;
  border: 1px solid #e0e0e0;
}
.popup__qna-form-textarea .textbox {
  width: 100%;
  height: 92px;
  font-size: 14px;
  line-height: 20px;
  border: 0;
  box-sizing: border-box;
  resize: none;
}
.popup__qna-form-textarea .textbox::-moz-placeholder {
  color: #a0a0a0;
  letter-spacing: 0;
}
.popup__qna-form-textarea .textbox::placeholder {
  color: #a0a0a0;
  letter-spacing: 0;
}
.popup__qna-form-textarea .max-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.6px;
  color: #787878;
}
.popup__qna-list {
  padding: 20px 24px 0;
}
.popup__qna-item {
  position: relative;
  margin-top: 8px;
  padding-left: 10px;
  font-size: 12px;
  letter-spacing: 0;
  color: #787878;
}
.popup__qna-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #787878;
}
.popup__qna-item.margin {
  margin-top: 0;
}
.popup__qna-btn {
  display: flex;
  margin-top: auto;
  padding: 20px 24px 34px 24px;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: #fff;
}
.popup__qna-btn button {
  flex: 1;
  height: 48px;
  font-size: 14px;
}
.popup__qna-btn button.close {
  background-color: #929292;
  color: #fff;
}
.popup__qna-btn button.next {
  background-color: #f0f0f0;
  color: #c8c8c8;
}
.popup__qna-btn button.submit {
  background-color: #141a23;
  color: #fff;
}

.category__product--title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.category__product--title h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 66px;
  color: #131922;
}
.category__product--title h3 span {
  padding-left: 4px;
  color: #d99c63;
}
.category__product--title .selectbox-wrap {
  min-width: calc(100% + 39px);
  max-height: initial;
}
.category__product--title .selectbox-wrap::-webkit-scrollbar, .category__product--title .selectbox-wrap::-webkit-scrollbar-thumb, .category__product--title .selectbox-wrap::-webkit-scrollbar-track {
  display: none;
}
.category__product--title .selectbox-wrap .selectbox {
  padding: 0;
}
.category__product--title .selectbox-wrap .selectbox .option {
  height: 36px;
}
.category__product--title .selectbox-wrap .selectbox .option label input[type=radio] ~ p {
  height: 36px;
  font-weight: 500;
}
.category__product--title .selectbox-wrap .selectbox .option label input[type=radio] ~ p:hover {
  text-decoration: underline;
}
.category__product--title .selectbox-wrap .selectbox .option label input[type=radio] ~ p:hover span {
  color: #000;
}
.category__product--title .selectbox-wrap .selectbox .option label input[type=radio] ~ p span {
  color: #929292;
}
.category__product--title .selectbox-wrap .selectbox .option label input[type=radio]:checked ~ p span {
  font-weight: 500;
  color: #000;
}
.category__product .siv-tab.filter {
  max-width: initial;
  width: 100%;
  margin-bottom: 24px;
}
.category__product .siv-tab.filter .siv-tab__btns {
  position: relative;
  padding-left: 48px;
}
.category__product .siv-tab.filter .siv-tab__btns .refresh {
  position: absolute;
  left: 0;
  top: 0;
}
.category__product .siv-pagination {
  margin-top: 80px;
}
.category__product--empty {
  padding-top: 140px;
  text-align: center;
}
.category__product--empty p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
  color: #929292;
}
.category__product--empty .btn-wrap {
  display: flex;
  margin-top: 32px;
  justify-content: center;
}
.category__product--empty .btn-wrap button {
  flex: initial;
  flex-grow: initial;
  width: auto;
  padding: 0 20px;
  font-size: 14px;
}
.category .component__style-now {
  margin-bottom: 80px;
}

body .flatpickr-calendar {
  border-radius: 0;
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
body .flatpickr-calendar.animate.open {
  animation: none;
  -webkit-animation: none;
}
body .flatpickr-calendar::before {
  position: fixed;
  height: 100vh;
  width: 100vw;
  left: calc(-50vw + 50%) !important;
  top: calc(-50vh + 50%) !important;
  background-color: rgba(0, 0, 0, 0.64);
  border-top: 0;
}
body .flatpickr-calendar::after {
  content: none;
}
body .flatpickr-calendar .flatpickr-months {
  position: relative;
  padding-top: 0;
  background-color: #fff;
  z-index: 1;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month {
  height: 60px;
  padding: 20px 20px 16px;
  box-sizing: border-box;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding-top: 0;
  line-height: 24px;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month input.cur-year {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  color: #131922;
  background: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months {
  width: 37px;
  margin-left: 8px;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  color: #131922;
  background: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper {
  width: 46px;
  padding-right: 13px;
  line-height: 18px;
  white-space: nowrap;
  box-sizing: content-box;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper::after {
  content: "년";
  display: inline;
  font-size: 18px;
  line-height: 20px;
  color: #131922;
  font-weight: 500;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper span {
  display: none;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
body .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  width: 29px;
  height: 24px;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg,
body .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  fill: #000;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-prev-month.flatpickr-disabled svg,
body .flatpickr-calendar .flatpickr-months .flatpickr-next-month.flatpickr-disabled svg {
  fill: #c8c8c8;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
  left: 20px;
}
body .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  right: 20px;
}
body .flatpickr-calendar .flatpickr-innerContainer {
  position: relative;
  padding: 8px 20px 18px;
  z-index: 1;
  background-color: #fff;
}
body .flatpickr-calendar .flatpickr-innerContainer span.flatpickr-weekday {
  font-size: 14px;
  color: #141a23;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-days {
  width: 100%;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day {
  font-size: 14px;
  color: #131922;
  font-weight: 700;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day:nth-child(7n) {
  color: #0a7aff;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day:nth-child(7n-6) {
  color: #ee230d;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.selected {
  background: #141a23;
  color: #fff;
  font-weight: bold;
  border-color: #141a23;
}
body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.prevMonthDay, body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.nextMonthDay, body .flatpickr-calendar .flatpickr-innerContainer .flatpickr-day.flatpickr-disabled {
  color: #e0e0e0;
  font-weight: 400;
}

.category .side_menu,
.outlet .side_menu,
.brand .side_menu {
  position: sticky;
  position: -webkit-sticky;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 730px;
  padding-right: 10px;
  box-sizing: border-box;
  top: 125px;
  max-height: calc(100vh - 125px);
}
.jaju-header ~ .category .side_menu,
.jaju-header ~ .outlet .side_menu,
.jaju-header ~ .brand .side_menu {
  top: 156px;
  max-height: calc(100vh - 156px);
  transition: top 0.3s;
}

.jaju-header.has-banner ~ .category .side_menu,
.jaju-header.has-banner ~ .outlet .side_menu,
.jaju-header.has-banner ~ .brand .side_menu {
  top: 256px;
  max-height: calc(100vh - 256px);
}

.jaju-header.is-slim:not(.has-banner) ~ .category .side_menu,
.jaju-header.is-slim:not(.has-banner) ~ .outlet .side_menu,
.jaju-header.is-slim:not(.has-banner) ~ .brand .side_menu {
  top: 156px;
  max-height: calc(100vh - 156px);
}

.jaju-header.has-banner.is-slim ~ .category .side_menu,
.jaju-header.has-banner.is-slim ~ .outlet .side_menu,
.jaju-header.has-banner.is-slim ~ .brand .side_menu {
  top: 256px;
  max-height: calc(100vh - 256px);
}

.category .side_menu::-webkit-scrollbar,
.outlet .side_menu::-webkit-scrollbar,
.brand .side_menu::-webkit-scrollbar {
  display: block;
  width: 4px;
}
.category .side_menu::-webkit-scrollbar-thumb,
.outlet .side_menu::-webkit-scrollbar-thumb,
.brand .side_menu::-webkit-scrollbar-thumb {
  background-color: #131922;
  background-clip: padding-box;
}
.category .side_menu::-webkit-scrollbar-track,
.outlet .side_menu::-webkit-scrollbar-track,
.brand .side_menu::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}

.pop_adddelivery {
  padding-bottom: 0;
}

.popup-club-join-beauty, .popup-club-join-jaju, .popup-club-join-du {
  padding-bottom: 0;
}
.popup-club-join-beauty .guide-area, .popup-club-join-jaju .guide-area, .popup-club-join-du .guide-area {
  padding: 0 34px 40px;
}
.popup-club-join-beauty .popup__bottom-btn-wrap, .popup-club-join-jaju .popup__bottom-btn-wrap, .popup-club-join-du .popup__bottom-btn-wrap {
  padding: 12px 34px 34px;
}
.popup-club-join-beauty .popup__content-inner, .popup-club-join-jaju .popup__content-inner, .popup-club-join-du .popup__content-inner {
  height: auto !important;
}
.popup-club-join-beauty .line-tab__btns, .popup-club-join-jaju .line-tab__btns, .popup-club-join-du .line-tab__btns {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
}
.popup-club-join-beauty .line-tab__btns button, .popup-club-join-jaju .line-tab__btns button, .popup-club-join-du .line-tab__btns button {
  flex: 1;
  flex-basis: auto;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: -0.1px;
  color: #929292;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  overflow: hidden;
}
.popup-club-join-beauty .line-tab__btns button.on, .popup-club-join-jaju .line-tab__btns button.on, .popup-club-join-du .line-tab__btns button.on {
  font-weight: 500;
  color: #000;
  border-bottom: 2px solid #131922;
}
.popup-club-join-beauty .popup__bottom-btn-wrap, .popup-club-join-jaju .popup__bottom-btn-wrap, .popup-club-join-du .popup__bottom-btn-wrap {
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 12px 34px 34px;
  background-color: #fff;
  box-sizing: border-box;
}
.popup-club-join-beauty .popup__bottom-btn-wrap button, .popup-club-join-jaju .popup__bottom-btn-wrap button, .popup-club-join-du .popup__bottom-btn-wrap button {
  height: 48px;
  font-size: 14px;
}

.size__wrap [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) {
  display: none;
}
.size__wrap [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) th,
.size__wrap [data-nation-code=INT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=INT]) td {
  display: none;
}
.size__wrap [data-nation-code=INT] thead th[data-nation-code=INT]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=INT] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT {
  display: table-row;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT th,
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT td {
  display: table-cell;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=INT] .has-sub-header tr.sub-header.INT ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) {
  display: none;
}
.size__wrap [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) th,
.size__wrap [data-nation-code=KR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=KR]) td {
  display: none;
}
.size__wrap [data-nation-code=KR] thead th[data-nation-code=KR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=KR] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR {
  display: table-row;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR th,
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR td {
  display: table-cell;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=KR] .has-sub-header tr.sub-header.KR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) {
  display: none;
}
.size__wrap [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) th,
.size__wrap [data-nation-code=US] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=US]) td {
  display: none;
}
.size__wrap [data-nation-code=US] thead th[data-nation-code=US]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=US] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US {
  display: table-row;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US th,
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US td {
  display: table-cell;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=US] .has-sub-header tr.sub-header.US ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) {
  display: none;
}
.size__wrap [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) th,
.size__wrap [data-nation-code=UK] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=UK]) td {
  display: none;
}
.size__wrap [data-nation-code=UK] thead th[data-nation-code=UK]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=UK] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK {
  display: table-row;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK th,
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK td {
  display: table-cell;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=UK] .has-sub-header tr.sub-header.UK ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) {
  display: none;
}
.size__wrap [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) th,
.size__wrap [data-nation-code=IT] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=IT]) td {
  display: none;
}
.size__wrap [data-nation-code=IT] thead th[data-nation-code=IT]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=IT] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT {
  display: table-row;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT th,
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT td {
  display: table-cell;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=IT] .has-sub-header tr.sub-header.IT ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) {
  display: none;
}
.size__wrap [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) th,
.size__wrap [data-nation-code=FR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=FR]) td {
  display: none;
}
.size__wrap [data-nation-code=FR] thead th[data-nation-code=FR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=FR] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR {
  display: table-row;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR th,
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR td {
  display: table-cell;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=FR] .has-sub-header tr.sub-header.FR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) {
  display: none;
}
.size__wrap [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) th,
.size__wrap [data-nation-code=SE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=SE]) td {
  display: none;
}
.size__wrap [data-nation-code=SE] thead th[data-nation-code=SE]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=SE] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE {
  display: table-row;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE th,
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE td {
  display: table-cell;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=SE] .has-sub-header tr.sub-header.SE ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) {
  display: none;
}
.size__wrap [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) th,
.size__wrap [data-nation-code=TR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=TR]) td {
  display: none;
}
.size__wrap [data-nation-code=TR] thead th[data-nation-code=TR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=TR] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR {
  display: table-row;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR th,
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR td {
  display: table-cell;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=TR] .has-sub-header tr.sub-header.TR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) {
  display: none;
}
.size__wrap [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) th,
.size__wrap [data-nation-code=EUR] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=EUR]) td {
  display: none;
}
.size__wrap [data-nation-code=EUR] thead th[data-nation-code=EUR]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=EUR] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR {
  display: table-row;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR th,
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR td {
  display: table-cell;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=EUR] .has-sub-header tr.sub-header.EUR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) {
  display: none;
}
.size__wrap [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) th,
.size__wrap [data-nation-code="FR/EUR"] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code="FR/EUR"]) td {
  display: none;
}
.size__wrap [data-nation-code="FR/EUR"] thead th[data-nation-code="FR/EUR"]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code="FR/EUR"] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR {
  display: table-row;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR th,
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR td {
  display: table-cell;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code="FR/EUR"] .has-sub-header tr.sub-header.FR\/EUR ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) {
  display: none;
}
.size__wrap [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) th,
.size__wrap [data-nation-code=JP] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=JP]) td {
  display: none;
}
.size__wrap [data-nation-code=JP] thead th[data-nation-code=JP]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=JP] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP {
  display: table-row;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP th,
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP td {
  display: table-cell;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=JP] .has-sub-header tr.sub-header.JP ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) {
  display: none;
}
.size__wrap [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) th,
.size__wrap [data-nation-code=DE] [data-nation-code]:not([data-nation-code=INT]):not([data-nation-code=KR]):not([data-nation-code=DE]) td {
  display: none;
}
.size__wrap [data-nation-code=DE] thead th[data-nation-code=DE]:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 2px 0 0 2px;
  background-color: #929292;
  border-radius: 100%;
  display: inline-block;
  vertical-align: top;
}
.size__wrap [data-nation-code=DE] thead th[colspan="3"] {
  width: 50%;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header th,
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header ~ tr:nth-of-type(2n) td {
  background: #f5f5f5;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE {
  display: table-row;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE th,
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE td {
  display: table-cell;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n) th,
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n) td {
  background: transparent;
}
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n-1) th,
.size__wrap [data-nation-code=DE] .has-sub-header tr.sub-header.DE ~ tr:nth-of-type(2n-1) td {
  background: #f5f5f5;
}
.size__wrap tbody [data-nation-code=INT] + [data-nation-code=INT] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=KR] + [data-nation-code=KR] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=US] + [data-nation-code=US] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=UK] + [data-nation-code=UK] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=IT] + [data-nation-code=IT] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=FR] + [data-nation-code=FR] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=SE] + [data-nation-code=SE] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=TR] + [data-nation-code=TR] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=EUR] + [data-nation-code=EUR] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code="FR/EUR"] + [data-nation-code="FR/EUR"] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=JP] + [data-nation-code=JP] {
  border-left-color: transparent;
}
.size__wrap tbody [data-nation-code=DE] + [data-nation-code=DE] {
  border-left-color: transparent;
}

.data__wrap {
  overflow-y: auto;
  height: calc(100% - 50px);
  padding: 15px 0;
  padding-bottom: 90px;
}
.data__wrap .data__item {
  padding: 0;
  overflow: auto;
  display: none;
}
.data__wrap .data__item:first-child {
  display: block;
}
.data__wrap .data__item .data_title {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 18px;
  color: #555;
}
.data__wrap .data__item .data_info {
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
  font-size: 12px;
  line-height: 18px;
  color: #131922;
}
.data__wrap .data__item table {
  width: 100%;
  min-width: 100%;
  margin-bottom: 34px;
  border-top: 1px solid #f0f0f0;
}
.data__wrap .data__item table thead th {
  height: 47px;
  padding: 16px 0 13px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  color: #131922;
  background: transparent;
  box-sizing: border-box;
}
.data__wrap .data__item table tbody tr th,
.data__wrap .data__item table tbody tr td {
  height: 34px;
  padding: 5px 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  color: #131922;
  border-left: 1px solid #e0e0e0;
  box-sizing: content-box;
}
.data__wrap .data__item table tbody tr th:first-child,
.data__wrap .data__item table tbody tr td:first-child {
  border-left: 0;
}
.data__wrap .data__item table tbody:not(.has-sub-header) tr:nth-of-type(odd) th,
.data__wrap .data__item table tbody:not(.has-sub-header) tr:nth-of-type(odd) td {
  background: #f5f5f5;
}
.data__wrap .data__item table tbody.has-sub-header .sub-header th,
.data__wrap .data__item table tbody.has-sub-header .sub-header td {
  display: none;
}
.data__wrap .no_data {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  height: auto;
  color: #a0a0a0;
  font-size: 14px;
  letter-spacing: 0;
}

.data__item .measuringWrap .measuringinfo li {
  align-items: flex-start;
}
.data__item .measuringWrap .measuringinfo li p {
  margin-top: 3px;
}
.data__item .measuringWrap .measuringImg {
  width: 188px;
  margin: 0 auto;
}
.data__item .measuringWrap .measuringinfo li dl {
  display: flex;
  align-items: flex-start;
}
.data__item .measuringWrap .measuringinfo li dl dt {
  display: block;
  white-space: nowrap;
  width: 80px;
}
.data__item .measuringWrap .measuringinfo li dl dd {
  justify-content: flex-end;
  font-size: 14px;
}

.layer_termsInfoContLayer .layerContent .popup-common-terms__notice {
  font-size: 14px;
  line-height: 20px;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice * {
  font-size: 13px !important;
  font-family: var(--v-font-sans);
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice *[size="4"] {
  font-size: 16px !important;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice *[size="4"] * {
  font-size: 16px !important;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice * b {
  font-weight: bold !important;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice br {
  content: "";
  display: block;
  height: 5px;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice strong {
  font-size: 14px !important;
  font-weight: normal !important;
}

.layer_termsInfoContLayer .layerContent .popup-common-terms__notice .marketing-terms__td h3 {
  font-size: 16px !important;
  font-weight: 500 !important;
}
.layer_termsInfoContLayer .layerContent .popup-common-terms__notice .marketing-terms__td p {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #000 !important;
}

.layer_bundleGoodsList .popup__content {
  transform: translate3d(0, 0, 0);
}

.layer_alert .layerContent em {
  color: #d99c63;
  font-weight: bold;
}

.popup-window {
  max-width: 900px !important;
  min-width: 0 !important;
  width: 100% !important;
}
.popup-window__title {
  height: 52px;
  margin: 0 auto 24px auto;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 24px;
  font-size: 24px;
  text-align: center;
  letter-spacing: -1px;
}
.popup-window .popup__content {
  padding: 0 40px;
}
.popup-window .popup__content * {
  line-height: 1.7;
  font-size: 12px;
}
.popup-window .popup__content .en {
  padding: 35px 0;
}
.popup-window .popup__content .en:first-of-type {
  padding-top: 0;
}
.popup-window .popup__content .en:not(:first-of-type) {
  border-top: 1px solid #f0f0f0;
}
.popup-window .popup__content .slt label {
  display: none;
}
.popup-window .popup__content .slt select {
  width: 500px;
  height: 32px;
  border: 1px solid #dbdbdb;
}

#webTermsContList > p:nth-of-type(1), #webTermsContList > p:nth-of-type(5), #webTermsContList > p:nth-of-type(12), #webTermsContList > p:nth-of-type(21), #webTermsContList > p:nth-of-type(32), #webTermsContList > p:nth-of-type(37), #webTermsContList > p:nth-of-type(54), #webTermsContList > p:nth-of-type(73), #webTermsContList > p:nth-of-type(77), #webTermsContList > p:nth-of-type(94), #webTermsContList > p:nth-of-type(102), #webTermsContList > p:nth-of-type(111), #webTermsContList > p:nth-of-type(116), #webTermsContList > p:nth-of-type(121), #webTermsContList > p:nth-of-type(124), #webTermsContList > p:nth-of-type(134), #webTermsContList > p:nth-of-type(144), #webTermsContList > p:nth-of-type(155), #webTermsContList > p:nth-of-type(161), #webTermsContList > p:nth-of-type(167), #webTermsContList > p:nth-of-type(183), #webTermsContList > p:nth-of-type(188), #webTermsContList > p:nth-of-type(192), #webTermsContList > p:nth-of-type(198), #webTermsContList > p:nth-of-type(202), #webTermsContList > p:nth-of-type(215), #webTermsContList > p:nth-of-type(220), #webTermsContList > p:nth-of-type(224) > font > span {
  display: inline-flex !important;
  height: 64px !important;
  align-items: center !important;
  font-size: 24px !important;
  font-weight: bold !important;
  color: #000 !important;
  letter-spacing: 0 !important;
  line-height: 32px !important;
}
#webTermsContList > p:nth-of-type(4)::after, #webTermsContList > p:nth-of-type(11)::after, #webTermsContList > p:nth-of-type(20)::after, #webTermsContList > p:nth-of-type(31)::after, #webTermsContList > p:nth-of-type(36)::after, #webTermsContList > p:nth-of-type(53)::after, #webTermsContList > p:nth-of-type(72)::after, #webTermsContList > p:nth-of-type(76)::after, #webTermsContList > p:nth-of-type(93)::after, #webTermsContList > p:nth-of-type(101)::after, #webTermsContList > p:nth-of-type(110)::after, #webTermsContList > p:nth-of-type(115)::after, #webTermsContList > p:nth-of-type(120)::after, #webTermsContList > p:nth-of-type(123)::after, #webTermsContList > p:nth-of-type(133)::after, #webTermsContList > p:nth-of-type(143)::after, #webTermsContList > p:nth-of-type(154)::after, #webTermsContList > p:nth-of-type(160)::after, #webTermsContList > p:nth-of-type(166)::after, #webTermsContList > p:nth-of-type(182)::after, #webTermsContList > p:nth-of-type(187)::after, #webTermsContList > p:nth-of-type(191)::after, #webTermsContList > p:nth-of-type(197)::after, #webTermsContList > p:nth-of-type(201)::after, #webTermsContList > p:nth-of-type(214)::after, #webTermsContList > p:nth-of-type(219)::after {
  content: "\a";
  white-space: pre;
}
#webTermsContList > p:nth-of-type(n + 6):nth-of-type(-n + 9)::after, #webTermsContList > p:nth-of-type(n + 13):nth-of-type(-n + 18)::after, #webTermsContList > p:nth-of-type(n + 27):nth-of-type(-n + 29)::after, #webTermsContList > p:nth-of-type(n + 32):nth-of-type(-n + 35)::after, #webTermsContList > p:nth-of-type(38)::after, #webTermsContList > p:nth-of-type(45)::after, #webTermsContList > p:nth-of-type(n + 49):nth-of-type(-n + 51)::after, #webTermsContList > p:nth-of-type(n + 69):nth-of-type(-n + 70)::after, #webTermsContList > p:nth-of-type(74)::after, #webTermsContList > p:nth-of-type(84)::after, #webTermsContList > p:nth-of-type(89)::after, #webTermsContList > p:nth-of-type(n + 98):nth-of-type(-n + 99)::after, #webTermsContList > p:nth-of-type(n + 112):nth-of-type(-n + 113)::after, #webTermsContList > p:nth-of-type(n + 117):nth-of-type(-n + 118)::after, #webTermsContList > p:nth-of-type(125)::after, #webTermsContList > p:nth-of-type(n + 130):nth-of-type(-n + 131)::after, #webTermsContList > p:nth-of-type(n + 135):nth-of-type(-n + 141)::after, #webTermsContList > p:nth-of-type(n + 145):nth-of-type(-n + 152)::after, #webTermsContList > p:nth-of-type(n + 156):nth-of-type(-n + 158)::after, #webTermsContList > p:nth-of-type(n + 162):nth-of-type(-n + 164)::after, #webTermsContList > p:nth-of-type(n + 177):nth-of-type(-n + 180)::after, #webTermsContList > p:nth-of-type(n + 184):nth-of-type(-n + 185)::after, #webTermsContList > p:nth-of-type(189)::after, #webTermsContList > p:nth-of-type(n + 193):nth-of-type(-n + 195)::after, #webTermsContList > p:nth-of-type(199)::after, #webTermsContList > p:nth-of-type(n + 203):nth-of-type(-n + 212)::after, #webTermsContList > p:nth-of-type(n + 216):nth-of-type(-n + 217)::after, #webTermsContList > p:nth-of-type(221)::after {
  content: "\a\a";
  white-space: pre;
}
#webTermsContList > p:nth-of-type(n + 23):nth-of-type(-n + 27), #webTermsContList > p:nth-of-type(n + 40):nth-of-type(-n + 45), #webTermsContList > p:nth-of-type(n + 47):nth-of-type(-n + 49), #webTermsContList > p:nth-of-type(n + 62):nth-of-type(-n + 69), #webTermsContList > p:nth-of-type(n + 79):nth-of-type(-n + 84), #webTermsContList > p:nth-of-type(n + 86):nth-of-type(-n + 89), #webTermsContList > p:nth-of-type(n + 91):nth-of-type(-n + 92), #webTermsContList > p:nth-of-type(n + 96):nth-of-type(-n + 98), #webTermsContList > p:nth-of-type(n + 104):nth-of-type(-n + 109), #webTermsContList > p:nth-of-type(n + 127):nth-of-type(-n + 130), #webTermsContList > p:nth-of-type(n + 169):nth-of-type(-n + 177) {
  padding-left: 22px;
}

.policy-guide .policy-target {
  margin-top: 45px;
}
.policy-guide .policy-target .target-list {
  display: flex;
  justify-content: center;
}
.policy-guide .policy-target .target-item:not(:first-child) {
  margin-left: 48px;
}
.policy-guide .policy-target .target-item .target-anchor {
  display: block;
  text-align: center;
}
.policy-guide .policy-target .target-item .target-anchor:before {
  content: "";
  display: block;
  width: 126px;
  height: 128px;
  margin-bottom: 14px;
  background: url("https://image.shinsegaev.com/design/image/common/icon_policy.png") no-repeat;
}
.policy-guide .policy-target .target-item .target-sequence-01:before {
  background-position: 0 0;
}
.policy-guide .policy-target .target-item .target-sequence-02:before {
  background-position-x: -136px;
}
.policy-guide .policy-target .target-item .target-sequence-03:before {
  background-position-x: -272px;
}
.policy-guide .policy-target .target-item .target-sequence-04:before {
  background-position-x: -408px;
}
.policy-guide .policy-target .target-item .target-sequence-05:before {
  background-position-x: -544px;
}
.policy-guide .policy-target .target-item .target-sequence-06:before {
  background-position-x: right;
}
.policy-guide .policy-target .target-text {
  font-size: 17px;
  margin-top: 14px;
  line-height: 1;
  font-weight: bold;
}
.policy-guide .policy-section:not(:first-child) {
  margin-top: 40px;
}
.policy-guide .policy-section .policy-title {
  font-size: 24px;
  color: #000;
  line-height: 64px;
  font-weight: bold;
}
.policy-guide .policy-section .policy-text,
.policy-guide .policy-section .policy-item,
.policy-guide .policy-section .policy-item a {
  font-size: 16px !important;
  color: #787878 !important;
  line-height: 24px !important;
}
.policy-guide .policy-section .policy-item strong {
  display: block;
  font-weight: normal;
}
.policy-guide .policy-section .policy-text + .policy-text, .policy-guide .policy-section .policy-text + .policy-list, .policy-guide .policy-section .policy-text + .plicy-column {
  margin-top: 24px;
}
.policy-guide .policy-section .policy-list {
  padding-left: 16px;
  text-indent: -20px;
}
.policy-guide .policy-section .policy-list .plicy-column {
  margin-top: 24px;
}
.policy-guide .policy-section .policy-list strong ~ .policy-text {
  margin-top: 8px;
  padding-left: 0;
  text-indent: 0;
}
.policy-guide .policy-section .policy-list--space > .policy-item:not(:first-child) {
  margin-top: 15px;
}
.policy-guide .policy-section .policy-list .policy-list,
.policy-guide .policy-section .plicy-column + .policy-list {
  margin-top: 8px;
}
.policy-guide .policy-section .plicy-column {
  border-collapse: collapse;
  border: 1px solid #f0f0f0;
}
.policy-guide .policy-section .plicy-column th,
.policy-guide .policy-section .plicy-column td {
  font-size: 16px;
  padding: 20px 10px;
  color: #000;
  line-height: 24px;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.policy-guide .policy-section .plicy-column th {
  font-weight: 500;
  background: #f8f8f8;
}
.policy-guide .policy-section .plicy-column plicy-column td {
  color: #404040 !important;
  background: none !important;
}
.policy-guide .policy-section .plicy-column td a {
  font-size: 14px;
  color: #a0a0a0;
  font-weight: 500;
}

/*
#memTermsContList {
  & > p {
    // STRONG 처리
    &:nth-of-type(1),
    &:nth-of-type(5),
    &:nth-of-type(18),
    &:nth-of-type(24),
    &:nth-of-type(30),
    &:nth-of-type(59),
    &:nth-of-type(64),
    &:nth-of-type(78),
    &:nth-of-type(80),
    &:nth-of-type(82),
    &:nth-of-type(84),
    &:nth-of-type(86),
    &:nth-of-type(88),
    &:nth-of-type(224) > font > span {
      display: inline-flex !important;
      height: 64px !important;
      align-items: center !important;
      font-size: 24px !important;
      font-weight: bold !important;
      color: $color-black !important;
      letter-spacing: 0 !important;
      line-height: 32px !important;
    }

    // <br> 1개 추가
    &:nth-of-type(4),
    &:nth-of-type(17),
    &:nth-of-type(58) {
      &::after {
        content: "\a";
        white-space: pre;
      }
    }

    // <br> 2개 추가
    &:nth-of-type(6),
    &:nth-of-type(19),
    &:nth-of-type(23),
    &:nth-of-type(25),
    &:nth-of-type(28),
    &:nth-of-type(29),
    &:nth-of-type(30),
    &:nth-of-type(31),
    &:nth-of-type(33),
    &:nth-of-type(34),
    &:nth-of-type(42),
    &:nth-of-type(43),
    &:nth-of-type(46),
    &:nth-of-type(47),
    &:nth-of-type(50),
    &:nth-of-type(51),
    &:nth-of-type(53),
    &:nth-of-type(54),
    &:nth-of-type(57),
    &:nth-of-type(58),
    &:nth-of-type(n + 59):nth-of-type(-n + 63),
    &:nth-of-type(65),
    &:nth-of-type(n + 70):nth-of-type(-n + 73),
    &:nth-of-type(n + 76):nth-of-type(-n + 79),
    &:nth-of-type(81),
    &:nth-of-type(83),
    &:nth-of-type(85),
    &:nth-of-type(87) {
      &::after {
        content: "\a\a";
        white-space: pre;
      }
    }

    // padding-left 추가
    &:nth-of-type(n + 7):nth-of-type(-n + 16),
    &:nth-of-type(n + 20):nth-of-type(-n + 23),
    &:nth-of-type(n + 26):nth-of-type(-n + 28),
    &:nth-of-type(n + 32):nth-of-type(-n + 33),
    &:nth-of-type(n + 35):nth-of-type(-n + 42),
    &:nth-of-type(n + 44):nth-of-type(-n + 46),
    &:nth-of-type(n + 48):nth-of-type(-n + 50),
    &:nth-of-type(n + 52):nth-of-type(-n + 53),
    &:nth-of-type(n + 67):nth-of-type(-n + 70),
    &:nth-of-type(n + 74):nth-of-type(-n + 77) {
      padding-left: 22px;
    }
  }
}
*/
.etc_terms_pop {
  width: 100%;
}

.etc_terms_pop h3 {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.etc_terms_pop h4 {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
}

.etc_terms_pop .etc_terms {
  padding-top: 14px;
  border-top: none;
  max-width: 850px;
  margin: 0 auto;
}

.etc_terms_pop .etc_terms p {
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}

.etc_terms_pop .etc_terms p strong {
  display: block;
  padding: 20px 0;
  line-height: 22px;
  font-size: 16px;
  font-weight: bold;
  color: rgb(19, 25, 34);
}

.etc_terms_pop .etc_terms li {
  font-size: 14px;
  line-height: 22px;
  color: #787878;
}

.etc_terms_pop .etc_terms_sel {
  padding-bottom: 20px;
  padding-top: 32px;
}

.etc_terms_pop .etc_terms_sel select {
  height: 48px;
  line-height: 48px;
  padding: 0 15px;
  border: 1px solid #e0e0e0;
}

.siv-popup.popup-cody-recom {
  height: 1020px;
  max-height: 93.5vh;
}

.module-cody-recom__tab {
  padding-top: 16px;
}
.module-cody-recom__tab .product__list {
  flex-wrap: nowrap;
}
.module-cody-recom__tab .product__list.type-w80px .product__item {
  padding-right: 16px;
}
.module-cody-recom__tab .product__list.type-w80px .product__item:last-child {
  padding-right: 0;
}
.module-cody-recom__tab .product__list.type-w80px .product__thum {
  width: 80px;
  height: 120px;
}
.module-cody-recom__tab .product__list.type-w80px .product__thum > a {
  position: relative;
}
.module-cody-recom__tab .product__list.type-w80px .product__thum > a.active img {
  opacity: 1;
}
.module-cody-recom__tab .product__list.type-w80px .product__thum > a.active .module-cody-recom__bedge {
  background: #d99c63;
}
.module-cody-recom__tab .product__list.type-w80px .product__thum > a.active::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  border: 1px solid #d99c63;
  content: "";
}
.module-cody-recom__tab .product__list.type-w80px .product__thum > a img {
  opacity: 0.5;
}
.module-cody-recom__result {
  padding-top: 32px;
}
.module-cody-recom__bedge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 20px;
  padding: 0 8px;
  background-color: #929292;
  font-size: 10px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}
.product.type-popup .product__list {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.product.type-popup .product__item {
  position: relative;
  width: calc(50% - 4.5px);
  padding-right: 0;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-sizing: content-box;
}

.popup-review-reward-guide .popup__content {
  overflow-y: auto;
  padding: 20px 20px 40px;
  max-height: calc(100vh - 163px - 57px);
}
.popup-review-reward-guide .v-ui-tab ~ .review-reward {
  margin-top: 20px;
}
.popup-review-reward-guide .review-reward__detail .reward {
  padding: 16px 20px;
  background-color: #f8f8f8;
}
.popup-review-reward-guide .review-reward__detail .reward ~ .reward {
  margin-top: 16px;
}
.popup-review-reward-guide .review-reward__detail .reward__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #131922;
}
.popup-review-reward-guide .review-reward__detail .reward__content {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
}
.popup-review-reward-guide .review-reward__detail .reward__case {
  font-size: 14px;
  line-height: 20px;
  color: #787878;
}
.popup-review-reward-guide .review-reward__detail .reward__point {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #131922;
}
.popup-review-reward-guide .review-reward .v-ui-notice {
  margin-top: 20px;
}

.v-ui-tab {
  display: flex;
  height: 48px;
  box-sizing: border-box;
}
.v-ui-tab .v-ui-tab__item {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 45px;
  text-align: center;
  color: #929292;
  padding-top: 2px;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
}
.v-ui-tab .v-ui-tab__item--active {
  border-bottom: 2px solid #141a23;
  line-height: 44px;
  color: #141a23;
  font-weight: 500;
}
.v-ui-tab.v-ui-tab--box {
  height: 40px;
  border-bottom: 1px solid #131922;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  color: #929292;
  padding-top: 2px;
  box-sizing: border-box;
  border-top: 1px solid #c8c8c8;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid #c8c8c8;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item:last-child {
  border-right: 1px solid #c8c8c8;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item--active {
  border-top-color: #131922;
  border-left-color: #131922;
  line-height: 36px;
  color: #141a23;
  font-weight: 500;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item--active:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background: #fff;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item--active:last-child {
  border-right-color: #131922;
}
.v-ui-tab.v-ui-tab--box .v-ui-tab__item--active + .v-ui-tab__item {
  border-left-color: #131922;
}

.v-ui-notice__item {
  position: relative;
  padding-left: 10px;
  font-size: 12px;
  line-height: 18px;
  color: #787878;
}
.v-ui-notice__item + .v-ui-notice__item {
  margin-top: 8px;
}
.v-ui-notice__item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background: #929292;
}
.v-ui-notice__item strong {
  font-weight: bold;
}
.v-ui-notice__item.hilite:before {
  background-color: #d99c63;
}
.v-ui-notice .hilite {
  color: #d99c63;
}

/* 마케팅 목적의 개인정보 수집 및 이용 동의 팝업*/
.agreement-content .agreement-content__title {
  font-size: 18px;
}
.agreement-content .agreement-content__text > p {
  font-size: 14px;
  line-height: 20px;
  position: relative;
}
.agreement-content .agreement-content__text > p:not(:first-child) {
  margin-top: 10px;
}
.agreement-content .agreement-content__text > p.marker {
  padding-left: 10px;
}
.agreement-content .agreement-content__text > p.marker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #929292;
}
.agreement-content .agreement-content__table {
  margin: 25px 0;
  border-collapse: collapse;
  min-width: 0;
  width: auto;
  table-layout: auto;
  border-top: 1px solid #f0f0f0;
}
.agreement-content .agreement-content__table th,
.agreement-content .agreement-content__table td {
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  border: 1px solid #f0f0f0;
}
.agreement-content .agreement-content__table td {
  vertical-align: top;
  padding: 11px 10px;
  color: #404040;
  background-color: #fff;
}
.agreement-content .agreement-content__table td p {
  font-size: 12px;
  font-weight: 500;
}
.agreement-content .agreement-content__table th {
  width: auto;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  border: 1px solid #f0f0f0;
  background-color: #f8f8f8;
}
.agreement-content .agreement-content__bold {
  display: block;
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  line-height: 1.38;
}
.layer_termsInfoContLayer .layerContent .agreement-content .agreement-content__bold {
  font-weight: bold !important;
  font-size: 16px !important;
}
.agreement-content .agreement-content__flex {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discount-rate {
  font-size: inherit;
  color: #d99c63;
  font-weight: bold;
}

.delivery-guaranteed {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
  column-gap: 6px;
  row-gap: 16px;
  flex-wrap: wrap;
}
.delivery-guaranteed__badge {
  display: grid;
  place-items: center;
  border: 1px solid #d99c63;
  box-sizing: border-box;
  height: 20px;
  padding: 4px 6px;
  font-size: 10px;
  line-height: 12px;
  font-weight: bold;
  color: #d99c63;
  flex-shrink: 0;
}
.delivery-guaranteed__date {
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  color: #d99c63;
  transform: translateY(1px);
}
.delivery-guaranteed__time {
  font-size: 16px;
  line-height: 19px;
  color: #131922;
}
.delivery-guaranteed__tooltip {
  width: 20px;
  height: 20px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../image/05Icon16Tooltip.svg) no-repeat center/16px;
  flex-shrink: 0;
}
.delivery-guaranteed__address {
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: #131922;
  display: flex;
  gap: 4px;
}
.delivery-guaranteed__address:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../image/05-icon-32-px-thin-store.svg) no-repeat center/cover;
}