/* reset */
:root {
  --safe-top: 0vw;
  --safe-bottom: 0vw;
  --primary-color: 0, 0, 0;
  --min-viewport: 280px;
  overflow-wrap: break-word;
  word-break: break-word;

  --header-height: 72px;
  --footer-height: 364px;
  --banner-height: 30px;
  --search-width: 590px;
  --top--height: calc(var(--header-height) + var(--banner-height));
  --content-width: 1670px;
  --layout-gap: 8.765%;
  --font-title-size: 18px;
  min-width: var(--min-viewport);
}

@supports (--safe-top: constant(safe-area-inset-top)) {
  :root {
    --safe-top: constant(safe-area-inset-top);
    --safe-bottom: constant(safe-area-inset-bottom);
  }
}

@supports (--safe-top: env(safe-area-inset-top)) {
  :root {
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
  }
}

*,
::before,
::after {
  box-sizing: border-box;
}

html,
body,
p,
ul,
ol,
li,
dl,
dt,
dd,
blockquote,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
fieldset,
legend,
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

body {
  font: 400 12px/1.34 FolioStdBook, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
}

em,
address {
  font-style: normal;
}

/* img, picture, video, canvas, svg {
	max-width: 100%;
} */

input,
textarea,
select,
button {
  appearance: none;
  border-radius: 0;
}

input,
textarea,
select {
  width: 100%;
  background-color: #fff;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
}

input:disabled,
textarea:disabled,
select:disabled {
  color: #bcbcbc;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

button:hover,
button:focus {
  text-decoration: underline;
}

button:disabled {
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

fieldset,
iframe {
  border: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

th,
strong {
  font-weight: 400;
}

.hidden,
legend,
caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip-path: polygon(0 0, 0 0, 0 0);
}

:focus {
  outline: 0;
}

@media all and (max-width: 64em) {
  html {
    font-size: 62.5%;
  }
}

.display-pc {
  display: block;
}

.display-mo {
  display: none;
}

.page_title {
  padding-bottom: 60px;
}

.sub_title {
  padding-bottom: 40px;
}

.content_title {
  font-size: 18px;
}

.message {
  margin-top: 10px;
}

.txt_bold {
  font-weight: 700;
}

.txt_uline {
  text-decoration: underline;
}

.align_lt {
  text-align: left !important;
}

.align_rt {
  text-align: right !important;
}

.align_ct {
  text-align: center !important;
}

.summary_box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.summary_box .item {
  width: 30.4%;
}

.summary_box .value {
  display: block;
  padding-top: 20px;
  font-size: var(--font-title-size);
}

.summary_box.small .item {
  width: 13.6%;
}

.no_items {
  padding: 0 0 30px 0;
}

.hr_wrap {
  padding: 20px 0;
  border: 1px solid #000;
  border-width: 1px 0;
}

.info_list>li {
  display: flex;
  gap: 10px;
}

.info_list>li+li {
  margin-top: 10px;
}

.info_list .title {
  width: 16%;
}

p.bullet,
.bullet>li {
  position: relative;
  padding-left: 12px;
  word-break: keep-all;
}

p.bullet::before,
.bullet>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  border-top: 1px solid #000;
}

.guide_txt {
  word-break: keep-all;
  word-wrap: break-word;
}

.guide_txt .title {
  padding: 30px 0 10px;
}

.guide_txt .title+.sub_title {
  padding-top: 0;
}

.guide_txt .sub_title {
  padding-top: 20px;
  padding-bottom: 2px;
}

.guide_txt li+li {
  margin-top: 15px;
}

.guide_txt .bullet li+li {
  margin-top: 0;
}

.full_image {
  margin: 0 -25px;
}

.full_image img {
  width: 100%;
}

.box_list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #000;
  background-color: #fff;
}

.box_list .item:hover,
.box_list .item:focus {
  background-color: #000;
  color: #fff;
}

.box_list .item+.item {
  margin-top: 10px;
}

@media all and (max-width: 64em) {
  .display-pc {
    display: none;
  }

  .display-mo {
    display: block;
  }

  .page_title,
  .sub_title {
    padding-bottom: 4rem;
  }

  .content_title {
    font-size: 1.2rem;
  }

  .message {
    margin-top: 1.5rem;
  }

  .summary_box:not(.small) {
    flex-direction: column;
    gap: 6rem;
  }

  .summary_box:not(.small) .item {
    width: auto;
  }

  .summary_box:not(.small) .value {
    padding-top: 2rem;
  }

  .summary_box.small {
    gap: 2rem 1rem;
  }

  .summary_box.small .item {
    width: calc(50% - 0.5rem);
  }

  .summary_box.small .value {
    padding-top: 1rem;
  }

  .no_items,
  .hr_wrap {
    padding: 2rem 0;
  }

  .info_list>li {
    gap: 1rem;
  }

  .info_list>li+li {
    margin-top: 1rem;
  }

  .info_list .title {
    min-width: 10rem;
  }

  p.bullet,
  .bullet>li {
    padding-left: 1.2rem;
  }

  p.bullet::before,
  .bullet>li::before {
    top: 0.7rem;
    width: 0.4rem;
  }

  .guide_txt .title {
    padding: 3rem 0 1rem;
  }

  .guide_txt li+li {
    margin-top: 1.5rem;
  }

  .full_image {
    margin: 0 -1.6rem;
  }

  .box_list .item {
    height: 3.6rem;
    padding: 1rem;
  }

  .box_list .item+.item {
    margin-top: 1rem;
  }
}

/* button */
.btn_primary,
.btn_secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 46px;
  height: 36px;
  padding: 2px 10px;
  border: 1px solid #000;
  word-break: keep-all;
  transition: opacity 0.3s;
}

.btn_primary:hover,
.btn_primary:focus,
.btn_secondary:hover,
.btn_secondary:focus {
  text-decoration: underline;
}

.btn_primary {
  background-color: #000;
  color: #fff;
}

.btn_secondary {
  background-color: #fff;
  color: #000;
}

.btn_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 60px;
}

.btn_wrap [class^=btn_] {
  flex: 1;
}

.btn_wrap.full [class^=btn_] {
  flex: auto;
  width: 100%;
}

.btn_wrap.no-gap {
  gap: 0;
}

.btn_wrap.other {
  justify-content: unset;
}

.btn_wrap.other .check_item {
  margin-bottom: 10px;
}

/* icon button */
.icon_btn {
  display: inline-block;
  width: 18px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  white-space: nowrap;
  transition: opacity 0.3s;
}

/* .icon_btn:hover,
.icon_btn:focus {
  opacity: 0.5;
} */

.btn_nav {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='13' viewBox='0 0 18 13'%3E%3Cg transform='translate(-16 -56.753)'%3E%3Cpath d='M-17212,1312.753h-18v-1h18Z' transform='translate(17246 -1243)'/%3E%3Cpath d='M-17212,1312.753h-18v-1h18Z' transform='translate(17246 -1249)'/%3E%3Cpath d='M-17212,1312.753h-18v-1h18Z' transform='translate(17246 -1255)'/%3E%3C/g%3E%3C/svg%3E");
}

.btn_search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.882' height='20.822' viewBox='0 0 18.882 20.822'%3E%3Cpath d='M7-.5A7.5,7.5,0,1,1-.5,7,7.508,7.508,0,0,1,7-.5Zm0,14A6.5,6.5,0,1,0,.5,7,6.507,6.507,0,0,0,7,13.5Z' transform='translate(0.5 0.5)'/%3E%3Cpath d='M6.1,7.98-.382.323.382-.323,6.861,7.334Z' transform='translate(12.021 12.842)'/%3E%3C/svg%3E");
}

.btn_user {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='26' viewBox='0 0 19 26'%3E%3Cpath d='M19,26H0V22.5a9.5,9.5,0,0,1,19,0ZM1,25H18V22.5a8.5,8.5,0,0,0-17,0Z'/%3E%3Cpath d='M5.5-.5a6,6,0,1,1-6,6A6.007,6.007,0,0,1,5.5-.5Zm0,11a5,5,0,1,0-5-5A5.006,5.006,0,0,0,5.5,10.5Z' transform='translate(4 0.5)'/%3E%3C/svg%3E");
}

.btn_cart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='26' viewBox='0 0 19 26'%3E%3Cg transform='translate(14623.5 19582)'%3E%3Cg transform='translate(-14623.5 -19582)'%3E%3Cpath d='M-.5-.5h19v21H-.5Zm18,1H.5v19h17Z' transform='translate(0.5 5.5)'/%3E%3Cpath d='M15,5.5H14a4.5,4.5,0,0,0-9,0H4a5.5,5.5,0,0,1,11,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn_cart .cart_count {
  display: block;
  padding-top: 6px;
  text-align: center;
}

.btn_wish {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='26.444' viewBox='0 0 19 26.444'%3E%3Cpath d='M0,0H18V25L9.16,19,0,25Z' transform='translate(0.5 0.5)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
}

.btn_add {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='26' viewBox='0 0 19 26'%3E%3Cg transform='translate(14624.5 19573)'%3E%3Cg transform='translate(-14624.5 -19573)'%3E%3Cpath d='M-.5-.5h19v21H-.5Zm18,1H.5v19h17Z' transform='translate(0.5 5.5)'/%3E%3Cpath d='M15,5.5H14a4.5,4.5,0,0,0-9,0H4a5.5,5.5,0,0,1,11,0Z'/%3E%3C/g%3E%3Cg transform='translate(-27.467 1)'%3E%3Cpath d='M-14582.533-19555.8h-10v-1h10Z' transform='translate(0 -2.044)'/%3E%3Cpath d='M10,.5H0v-1H10Z' transform='translate(-14587.532 -19563.344) rotate(90)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon_btn.btn_close,
.btn_delete {
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='14.707' viewBox='0 0 14.707 14.707'%3E%3Cg transform='translate(-1307.44 -241.772)'%3E%3Cpath d='M.5,19.8h-1V0h1Z' transform='translate(1321.794 242.126) rotate(45)'/%3E%3Cpath d='M.5,19.8h-1V0h1Z' transform='translate(1321.794 256.126) rotate(135)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 14px;
}

.btn_delete {
  background-size: 12px;
}

.btn_prev,
.btn_next {
  display: inline-block;
  overflow: hidden;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='8.061' viewBox='0 0 14.707 8.061'%3E%3Cpath d='M4667.148,3013.231l7,7,7-7' transform='translate(-4666.795 -3012.877)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") no-repeat center/14px;
  text-indent: 100%;
  white-space: nowrap;
}

.btn_prev {
  transform: rotate(90deg);
}

.btn_next {
  transform: rotate(-90deg);
}

.btn_plus,
.btn_minus {
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M9360.579,7111.861h-16v-1h16Z' transform='translate(-9344.579 -7103.361)'/%3E%3Cpath d='M16,.5H0v-1H16Z' transform='translate(8) rotate(90)'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  text-indent: 100%;
  white-space: nowrap;
}

.btn_minus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='1' viewBox='0 0 16 1'%3E%3Cpath d='M9360.579,7111.861h-16v-1h16Z' transform='translate(-9344.579 -7110.861)'/%3E%3C/svg%3E");
}

.btn_to_top,
.btn_to_down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn_to_top::before,
.btn_to_down::after {
  content: "";
  width: 14px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='8.061' viewBox='0 0 14.707 8.061'%3E%3Cpath d='M4667.148,3013.231l7,7,7-7' transform='translate(-4666.795 -3012.877)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") no-repeat center/contain;
}

.btn_to_top::before {
  transform: rotate(180deg);
}

.btn_modal {
  padding: 10px 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M9360.579,7111.861h-16v-1h16Z' transform='translate(-9344.579 -7103.361)'/%3E%3Cpath d='M16,.5H0v-1H16Z' transform='translate(8) rotate(90)'/%3E%3C/svg%3E") no-repeat 100% 50%/14px;
  text-align: left;
}

.txt_btn {
  display: inline-block;
  text-decoration: underline;
  white-space: nowrap;
}

@media all and (min-width: 64.063em) {
  .txt_btn {
    background-image: none;
  }
}

@media all and (max-width: 64em) {

  .btn_primary,
  .btn_secondary {
    min-width: 4.6rem;
    height: 3.6rem;
    padding: 0.2rem 1rem;
  }

  .btn_wrap {
    gap: 1rem;
    padding-top: 4rem;
  }

  .btn_cart .cart_count {
    padding-top: 0.6rem;
  }

  .btn_search,
  .btn_prev,
  .btn_next {
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: 100%;
    white-space: nowrap;
  }

  .btn_prev,
  .btn_next {
    width: 1.8rem;
    height: 1.8rem;
    background-size: 1.4rem;
  }

  .btn_plus,
  .btn_minus {
    width: 1.6rem;
    height: 1.6rem;
    background-size: 1.4rem;
  }

  .btn_to_top,
  .btn_to_down {
    gap: 1.6rem;
    padding: 0 1.6rem;
  }

  .btn_to_top::before,
  .btn_to_down::after {
    width: 1.4rem;
    height: 0.8rem;
  }

  .btn_modal {
    padding: 1rem 0;
    background-size: 1.4rem;
  }

  .icon_btn {
    width: 1.8rem;
    height: 2.5rem;
  }

  .icon_btn.btn_close {
    height: 1.8rem;
    background-size: 1.4rem;
  }

  .icon_btn.btn_delete {
    height: 1.8rem;
    background-size: 1.2rem;
  }
}

@media all and (max-width: 47.938em) {
  .btn_wrap [class^=btn_] {
    flex: auto;
    width: 100%;
  }
}

/* input */
.input_item label:empty {
  display: none;
}

.input_item label+* {
  margin-top: 6px;
}

.input_item input {
  padding: 4px 0;
  border: 1px solid #000;
  border-width: 0 0 1px;
}

.input_item textarea {
  padding: 10px;
  border: 1px solid #000;
  resize: none;
}

.input_item .row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.input_item .row>* {
  flex: 1;
}

.input_item[data-field] {
  display: none;
}

.input_item[data-field].is-active {
  display: block;
}

.input_box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.input_box [class*=btn] {
  flex-shrink: 0;
}

.input_box .btn_masking {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form_list>*,
.form_list>form>* {
  margin-top: 40px;
}

.form_list>*:first-child,
.form_list>form>*:first-child,
.form_list>*.first,
.form_list>form>*.first {
  margin-top: 0 !important;
}

.form_list.min>*,
.form_list.min>form>* {
  margin-top: 30px;
}

.form_list .input_item>input:not(:first-child) {
  margin-top: 6px;
}

.form_list .number_wrap>* {
  width: 50%;
}

.form_list .number_ctrl input {
  max-width: none;
}

.form_list .col2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.form_list .col2>* {
  width: 50%;
}

.form_list .guide_txt .title {
  padding-top: 0;
}

/* combobox */
.dropdown select,
.btn_dropdown {
  width: 100%;
  border: 1px solid #000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='8.061' viewBox='0 0 14.707 8.061'%3E%3Cpath d='M4667.148,3013.231l7,7,7-7' transform='translate(-4666.795 -3012.877)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: right center;
  background-size: cover;
  text-align: left;
}

.dropdown select {
  padding: 4px 0;
  padding-right: 22px;
  border-width: 0 0 1px;
  background-size: 13px;
}

.btn_dropdown {
  height: 40px;
  padding: 0 38px 0 16px;
  background-position: right 16px center;
}

/* checkbox */
.check_item {
  --check-size: 14px;
  position: relative;
  line-height: 1.5;
}

.check_item label {
  position: relative;
  display: inline-block;
  min-height: var(--check-size);
  padding-left: 34px;
  word-break: keep-all;
  cursor: pointer;
  font-size: 12px;
}

.check_item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: var(--check-size);
  height: var(--check-size);
  border: 1px solid #000;
  background-color: #fff;
}

.check_item label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 0;
  height: 0;
}

.check_item label:has(.hidden) {
  width: var(--check-size);
  padding-left: 0;
}

.check_item input {
  position: absolute;
  left: 0;
  top: 2px;
  width: var(--check-size);
  height: var(--check-size);
}

.check_item input:checked+label::after {
  left: 0;
  top: 2px;
  width: var(--check-size);
  height: var(--check-size);
  background-color: #000;
  transition: 0.2s;
}

.check_group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}

.check_group.list {
  flex-direction: column;
}

.check_group>li {
  position: relative;
}

.check_group>p:first-child {
  width: 100%;
  margin-bottom: -10px;
}

.check_group .label {
  width: 100%;
}

.check_group .check_group {
  row-gap: 10px;
  padding: 10px 34px 0;
}

.check_group+.input_date {
  margin-top: 6px;
}

.product_list .check_item label::before,
.product_item .check_item label::before {
  background-color: transparent;
}

/* quantity */
.number_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.number_ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 50%;
}

.number_ctrl input {
  max-width: 110px;
  height: 20px;
  border: 0;
  text-align: center;
}

.number_ctrl .btn_plus,
.number_ctrl .btn_minus {
  flex-shrink: 0;
}

/* filter */
.filter {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px 0 40px;
}

.filter .dropdown {
  width: 160px;
}

.filter .dropdown.range {
  display: none;
}

.filter .range_btn {
  margin: 0 -10px;
}

.filter .txt_btn {
  flex-shrink: 0;
}

.filter+p {
  margin-top: 20px;
}

.range_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.range_btn>* {
  padding: 4px 10px;
}

.range_btn .is-active {
  text-decoration: underline;
}

/* datepicker */
.datepicker .input_item {
  position: relative;
}

.datepicker .input_item input {
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='8.061' viewBox='0 0 14.707 8.061'%3E%3Cpath d='M4667.148,3013.231l7,7,7-7' transform='translate(-4666.795 -3012.877)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: 100% 50%;
  background-size: 13px auto;
}

.datepicker.period {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media all and (max-width: 120em) {

  /* filter */
  .filter {
    gap: 4%;
  }
}

@media all and (max-width: 80em) {

  /* filter */
  .filter .range_btn {
    display: none;
  }

  .filter .dropdown.range {
    display: block;
  }
}

@media all and (min-width: 64.063em) {
  .form_list .input_box input {
    flex-shrink: 0;
  }
}

@media all and (max-width: 64em) {

  /* input */
  .input_item label+* {
    margin-top: 1.1rem;
  }

  .input_item input {
    padding: 0.4rem 0;
  }

  .input_item textarea {
    padding: 1rem;
  }

  .input_item .row {
    gap: 1rem;
  }

  .input_box {
    gap: 1.6rem;
  }

  .input_box.zipcode input {
    max-width: 17.4rem;
  }

  .form_list>* {
    margin-top: 4rem;
  }

  .form_list.min>* {
    margin-top: 3rem;
  }

  .form_list .input_item>input:not(:first-child) {
    margin-top: 1.1rem;
  }

  .form_list.col2-wrap>* {
    margin-top: 2rem;
  }

  /* combobox */
  .dropdown select {
    min-width: 6.4rem;
    height: 2.4rem;
    padding-right: 2.2rem;
    background-size: 1.3rem;
  }

  .btn_dropdown {
    height: 4rem;
    padding: 0 3.8rem 0 1.6rem;
    background-position: right 1.6rem center;
  }

  /* checkbox */
  .check_item {
    --check-size: 1.4rem;
  }

  .check_item label {
    padding-left: 3.4rem;
  }

  .check_item label::after {
    left: 0.7rem;
    top: 0.7rem;
  }

  .check_item input,
  .check_item input:checked+label::after,
  .check_item label:before {
    top: 0.2rem;
  }

  .check_group {
    gap: 2.5rem 5rem;
  }

  .check_group .check_group {
    row-gap: 2.5rem;
    padding: 2.5rem 3.4rem 0;
  }

  /* quantity */
  .number_ctrl {
    gap: 1.2rem;
    width: auto;
  }

  .number_ctrl input {
    max-width: 9rem;
    height: 2rem;
  }

  /* filter */
  .filter {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 2rem 0;
  }

  .filter .dropdown {
    width: auto;
  }

  .filter .datepicker,
  .filter>.txt_btn:last-child {
    display: none;
  }

  .filter+p {
    margin-top: 2rem;
  }
}

@media all and (max-width: 24.313em) {

  /* input */
  .input_box.zipcode {
    justify-content: space-between;
  }

  /* checkbox */
  .check_group {
    flex-direction: column;
  }
}

/* list */
.list_header,
.list_table>.item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid #000;
}

.list_header>*,
.list_table>.item>* {
  width: 16%;
}

.list_header .col2,
.list_table>.item .col2 {
  width: 32.8%;
}

.list_table>.item {
  position: relative;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 94px;
  padding-top: 50px;
  text-align: center;
}

.pagination .number {
  display: inherit;
  gap: 48px;
}

.pagination .number a {
  display: inline-block;
  width: 18px;
  height: 18px;
}

.pagination .txt_btn {
  text-decoration: none;
}

.pagination .on {
  text-decoration: underline;
}

/* table */
.basic_table th,
.basic_table td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 5px;
}

.basic_table thead th {
  font-weight: 700;
  text-align: center;
  background-color: #f2f2f2;
}

@media all and (max-width: 120em) {

  /* list */
  .list_table .seq {
    width: 7.8125vw;
  }
}

@media all and (min-width: 64.063em) {
  .pagination .txt_btn {
    width: auto;
    height: auto;
    text-indent: 0;
    transform: none;
  }
}

@media all and (max-width: 64em) {

  /* list */
  .list_header,
  .list_table>.item {
    flex-direction: column;
    align-items: stretch;
    gap: 1.4rem;
    padding: 2rem 0;
  }

  .list_header>*,
  .list_table>.item>* {
    width: auto !important;
  }

  .list_table>.item .display-mo {
    display: inline;
  }

  .pagination {
    gap: 6.7rem;
    padding-top: 4rem;
  }

  .pagination .number {
    gap: 1.8rem;
  }

  .pagination .number a {
    width: 1.8rem;
    height: 1.8rem;
  }

  .pagination .btn_prev,
  .pagination .btn_next {
    background-size: 1.3rem;
  }
}

@media all and (max-width: 24.313em) {
  .pagination {
    justify-content: space-between;
    gap: 1.8rem;
    padding-inline: 1.7rem;
  }
}

/* accordion */
.accordion {
  border-top: 1px solid #000;
}

.accordion_item {
  border-bottom: 1px solid #000;
}

.accordion .title {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M9360.579,7111.861h-16v-1h16Z' transform='translate(-9344.579 -7103.361)'/%3E%3Cpath d='M16,.5H0v-1H16Z' transform='translate(8) rotate(90)'/%3E%3C/svg%3E") no-repeat 100% 50%;
  font-size: var(--font-title-size);
  text-align: left;
  transition: 0.3s;
}

.accordion .title:hover {
  opacity: 0.5;
}

.accordion .details {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s;
}

.accordion .details>.inner {
  overflow: hidden;
  transition-duration: inherit;
}

.accordion .is-active .title {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='1' viewBox='0 0 16 1'%3E%3Cpath d='M9360.579,7111.861h-16v-1h16Z' transform='translate(-9344.579 -7110.861)'/%3E%3C/svg%3E");
}

.accordion .is-active .title::after {
  top: calc(50% - 1px);
  transform: rotate(-135deg);
}

.accordion .is-active .details {
  grid-template-rows: 1fr;
  padding-bottom: 30px;
}

/* tab */
.tab_list {
  display: flex;
}

.tab_list.link {
  gap: 60px;
  margin-bottom: 40px;
}

.tab_list .is-active {
  text-decoration: underline;
}

@media all and (max-width: 64em) {
  .accordion .title {
    padding: 2rem 0;
    font-size: 1.2rem;
  }

  /* tab */
  .tab_list.link {
    gap: 4rem;
    margin-bottom: 2rem;
  }
}

@media all and (max-width: 24.313em) {

  /* tab */
  .tab_list.link {
    gap: 3rem;
  }
}

/* modal 
.modal {
  width: 470px;
  max-height: calc(100vh - 3em);
  padding: 30px;
  border: 1px solid #000;
  background-color: #fff;
}
.modal_wrap {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-width: var(--min-viewport);
}*/
.modal_header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
/*
.modal_body {
  overflow-y: auto;
  max-height: calc(100vh - 3em - 174px);
  margin: 0 -30px;
  padding: 0 30px;
}
.modal_body.fixed {
  height: 544px;
}
.modal .btn_wrap {
  padding-top: 30px;
}
.modal.simple {
  width: 410px;
  padding: 10px;
}
.modal.simple .modal_header {
  padding-bottom: 40px;
}
.modal.simple .modal_body {
  margin: 0 -10px;
  padding: 0 10px;
}
.modal .check_group .check_item {
  width: calc(50% - 25px);
}
.modal .form_list .input_box {
  justify-content: space-between;
}
.modal .form_list .input_box input {
  flex-shrink: 1;
  max-width: 56.62%;
}
.modal .branch .location {
  margin-top: 10px;
}
.modal .branch + .order_info {
  margin-top: 30px;
}
.modal .reserved {
  margin-top: 20px;
}*/

/* toast popup */
.side_toast {
  position: fixed;
  right: -410px;
  top: calc(var(--header-height) + var(--banner-height));
  width: 410px;
  max-width: 100%;
  padding: 10px;
  background-color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: 0.3s ease-out;
}

.side_toast.is-active {
  right: 0;
}

.side_toast .product_name {
  display: block;
}

@media all and (max-width: 64em) {

  /* modal 
  .modal {
    min-height: 23rem;
    padding: 2rem;
  }
  .modal_wrap {
    padding: 1.6rem;
  }
  .modal_header {
    padding-bottom: 3rem;
  }
  .modal_body {
    max-height: calc(100vh - 3em - 17.4rem);
    min-height: 5.4rem;
    margin: 0 -2rem;
    padding: 0 2rem;
  }
  .modal_body.fixed {
    height: 54.4rem;
  }
  .modal .btn_wrap {
    padding-top: 2rem;
  }
  .modal.simple {
    padding: 1rem;
  }
  .modal.simple .modal_header {
    padding-bottom: 4rem;
  }
  .modal.simple .modal_body {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .modal .check_group .check_item {
    width: calc(50% - 2.5rem);
  }
  .modal .branch .location {
    margin-top: 1rem;
  }
  .modal .branch + .order_info {
    margin-top: 3rem;
  }
  .modal .reserved {
    margin-top: 2rem;
  }*/
  /* toast popup */
  .side_toast {
    right: -100%;
    padding: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.3);
  }
}

/* layout */
body.scrollFix {
  overflow: hidden;
  height: 100vh;
}

.dimmed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
}

.dimmed.clear {
  z-index: 10;
  background-color: transparent;
}

.wrap {
  --header-height: 72px;
  --footer-height: 364px;
  --banner-height: 30px;
  --search-width: 590px;
  --top--height: calc(var(--header-height) + var(--banner-height));
  --content-width: 1670px;
  --layout-gap: 8.765%;
  --font-title-size: 18px;
  min-width: var(--min-viewport);
}

/* header 
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: var(--min-viewport);
  height: var(--header-height);
  padding: 0 25px;
  border-bottom: 1px solid #000;
  background-color: #fff;
  transition: 0.3s;
}
.header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .logo img {
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
}
.header .logo:hover img, .header .logo:focus img {
  transform: rotate(180deg);
}
.header .btn_nav {
  display: none;
}
.gnb .header_util,
.gnb .btn_close {
  display: none;
}
.gnb_list {
  display: flex;
  align-items: center;
  gap: 60px;
}
.gnb_list a:hover, .gnb_list a:focus {
  text-decoration: underline;
}

.header_util {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .search_wrap {
  position: absolute;
  right: 25px;
  top: calc(var(--header-height) + 30px);
  display: none;
  width: 460px;
  padding: 63px 25px 25px;
  border: 1px solid #000;
}
.header .search_wrap.is-open,
.header .search_wrap .btn_close {
  display: block;
}
.header_banner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: var(--min-viewport);
  height: var(--banner-height);
  padding: 0 68px;
  background-color: #fafafa;
  text-align: center;
}
.header_banner .banner_title {
  width: 80%;
  cursor: pointer;
}
.header_banner [class*=close] {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.header_banner[data-visible=true] {
  display: flex;
}
.header_banner[data-visible=true] ~ .header {
  top: var(--banner-height);
}
.header_banner[data-visible=true] ~ .container {
  padding-top: var(--top--height);
}
.header_banner[data-visible=true] ~ .container .full_obj {
  height: calc(100vh - var(--top--height));
}
.header_banner[data-visible=true] ~ .container .lnb.vertical {
  top: 162px;
}
.header_banner[data-visible=true] ~ .container .item_summary {
  top: 182px;
} */

.drawer {
  position: fixed;
  left: -448px;
  top: 0;
  z-index: 12;
  overflow-y: auto;
  width: 448px;
  max-width: 100%;
  height: 100vh;
  padding: 12px;
  background-color: #fafafa;
  transition: left 0.5s ease-in-out;
}

.drawer.is-open {
  left: 0;
}

.drawer [class*=close] {
  position: sticky;
  left: 100%;
  top: 0;
}

.notification {
  padding: 30px 18px 48px;
  line-height: 1.5;
}

.notification>li+li {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #a6a6a6;
}

.notification .noti_title {
  margin-bottom: 10px;
  font-size: 14px;
}

/* footer */
.foot_btn {
  padding: 60px 0;
}

.footer {
  display: grid;
  grid-template-columns: 30.189% repeat(3, 16.4354%) auto;
  gap: 30px 10px;
  padding: 92px 25px 40px;
}

.footer a {
  text-decoration: underline;
}

.footer_title {
  margin-top: -52px;
  padding-right: 4%;
  word-break: keep-all;
}

.footer_title img {
  width: 206px;
  margin-bottom: 40px;
}

.footer_info li {
  margin-top: 20px;
}

.footer .title {
  margin-bottom: 20px;
}

.footer .title+.dropdown:not(.type2) {
  margin-top: -10px;
}

.footer .address {
  grid-column: 2/span 4;
  font-size: 10px;
  color: #4e4e4e;
}

.footer .address li {
  display: inline-block;
}

.footer .address li::after {
  content: " | ";
}

.footer .address li:last-child::after {
  content: none;
}

.footer_link {
  display: none;
}

.container {
  /* min-height: calc(100vh - var(--footer-height)); */
  padding-top: var(--header-height);
}

.content {
  padding: 72px 25px;
}

.column {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 60px;
}

.column--lt {
  margin: 0;
}

.column--mid {
  max-width: 830px;
}

.column--min {
  max-width: 410px;
}

.column.column--min {
  padding-top: 80px;
}

.column_wrap {
  position: relative;
  display: flex;
  gap: var(--layout-gap);
  padding-top: 60px;
}

.column_wrap .column {
  flex-grow: 1;
  padding-top: 0;
}

.column_wrap .item_wrap {
  gap: inherit;
  max-width: 1460px;
  margin: 0;
  padding-top: 0;
}

.column_wrap .item_body {
  width: 56.85%;
}

.column_wrap .item_summary {
  width: 28.0829%;
}

/* local navigation */
.lnb {
  display: flex;
  gap: 60px;
  padding: 16px 0;
}

.lnb a:hover,
.lnb a:focus {
  text-decoration: underline;
}

.lnb a.is-active {
  text-decoration: underline;
}

.lnb_title {
  width: 360px;
}

.lnb_list {
  display: flex;
  gap: 60px;
}

.lnb_list .is-current a {
  text-decoration: underline;
}

.lnb.vertical {
  display: none;
  /* position: sticky;
  top: 132px;
  z-index: 2;
  flex-direction: column;
  flex-shrink: 0;
  align-self: flex-start;
  width: 16.335%;
  padding: 0; */
}

/* .lnb.vertical .lnb_title {
  width: auto;
}

.lnb.vertical .lnb_list {
  flex-direction: column;
  gap: 15px;
}

.lnb.vertical>.txt_btn {
  align-self: flex-start;
}

.lnb .btn_menu,
.lnb .btn_menu .active {
  display: none;
} */

.lnb:not(.vertical)+* {
  padding-top: 50px;
}

.full_obj {
  margin: 0 -25px;
  height: calc(100vh - var(--header-height));
}

.full_obj img,
.full_obj video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_container {
  position: relative;
}

.video_container .btn_full,
.video_container .overlay {
  position: absolute;
  left: 50%;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}

.video_container .overlay {
  bottom: 72px;
  width: 100%;
  max-width: 410px;
}

.video_container .btn_full {
  top: 40px;
}

.video_container .btn_secondary {
  border: 0;
}

.video_container .btn_secondary:hover,
.video_container .btn_secondary:focus {
  opacity: initial;
}

.video_container .btn_to_down::after {
  filter: invert(100%);
}

@media all and (min-width: 120.063em) {
  .column_wrap:not(.wishlist) {
    min-height: 465px;
  }

  .column_wrap:not(.wishlist) .lnb.vertical {
    position: absolute;
    top: 60px !important;
  }
}

@media all and (max-width: 120em) {
  .column_wrap .column {
    margin: 0;
  }
}

@media all and (max-width: 80em) {

  .gnb_list,
  .lnb,
  .lnb_list {
    gap: 4.6875vw;
  }

  .lnb_title {
    width: 28.125vw;
  }
}

@media all and (max-width: 64em) {

  /* layout */
  .wrap {
    --header-height: 6rem;
    --footer-height: 50.6rem;
    --banner-height: 3rem;
    --font-title-size: 1.8rem;
  }

  .wrap>*:not(.header_banner, .drawer) {
    transition: 0.3s;
  }

  .wrap.gnb-open {
    overflow: hidden;
    height: 100vh;
  }

  .wrap.gnb-open>*:not(.header_banner, .drawer) {
    transform: translateX(30%);
  }

  .wrap.gnb-open .gnb {
    left: -30%;
    visibility: visible;
  }

  .wrap.gnb-open .header .search_wrap {
    left: -30%;
  }

  /* header 
  .header {
    max-width: 100vw;
    padding: 0 1.6rem;
  }
  .header .btn_nav,
  .header .gnb .btn_close {
    display: block;
  }
  .header > .header_util .btn_search {
    display: none;
  }
  .gnb {
    position: fixed;
    left: -100%;
    top: 0;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    transition: left 0.3s;
  }
  .gnb .header_util {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding: 1.75rem 1.6rem;
  }
  .gnb_list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    height: 68vh;
    padding-top: 12rem;
    font-size: 1.8rem;
    line-height: 1.334;
  }
  .gnb_list a {
    display: block;
    padding: 1.5rem 4rem;
  }
  .gnb .btn_close {
    position: absolute;
    left: 1.8rem;
    top: 2.3rem;
  }
  .header_util {
    gap: 1.5rem;
  }
  .header .search_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 5.8rem 1.6rem;
    border: 0;
  }
  .header .search_wrap input {
    max-width: none;
    border: 0;
  }
  .header .search_wrap input::placeholder {
    font-size: 1.1rem;
  }
  .header .search_wrap .btn_close {
    right: 1.6rem;
    top: 1.2rem;
    width: auto;
    background-image: none;
    font-size: 1.1rem;
  }
  .header .search_wrap .btn_close .hidden {
    position: static;
    margin: 0;
    clip-path: none;
  }
  .header_banner {
    max-width: 100vw;
    padding: 0 4.6rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .header_banner [class*=close] {
    right: 1.6rem;
  }
  .header_banner[data-visible=true] ~ .header .gnb {
    height: calc(100vh - var(--banner-height));
  }
  .header_banner[data-visible=true] ~ .header .search_wrap {
    top: calc(-1 * var(--banner-height));
  }
  .header_banner[data-visible=true] ~ .container .lnb.vertical {
    top: var(--top--height);
  } */
  .drawer {
    left: -44.8rem;
    width: 44.8rem;
    padding: 1.2rem 1.6rem;
  }

  .notification {
    padding: 3rem 1.4rem 4.8rem;
  }

  .notification>li+li {
    margin-top: 4rem;
    padding-top: 4rem;
  }

  .notification .noti_title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }

  /* footer */
  .foot_btn {
    padding: 6rem 0;
  }

  .footer {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 6rem 1.6rem 3rem;
    border-top: 1px solid #000;
  }

  .footer_title {
    margin-top: 0;
    padding: 0 0 1rem;
    font-size: 1.1rem;
    text-align: center;
  }

  .footer_title img {
    width: 20.6rem;
    margin: 0 auto 3rem;
  }

  .footer_title br {
    display: none;
  }

  .footer_info {
    display: none;
  }

  .footer .title {
    margin-bottom: 2rem;
  }

  .footer .dropdown {
    margin-top: 0 !important;
  }

  .footer .dropdown select {
    width: auto;
  }

  .footer .btn_region {
    max-width: 36rem;
  }

  .footer .address {
    font-size: 1rem;
  }

  .footer .address li {
    display: inline;
  }

  .footer_link {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
  }

  .content {
    padding: 0 1.6rem 8rem;
  }

  .header-banner .content {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .column,
  .column.column--min {
    padding-top: 4rem;
  }

  .column_wrap {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .column_wrap .column {
    padding-top: 2rem;
  }

  .column_wrap .item_summary {
    width: auto;
  }

  .column_wrap .page_title {
    display: none;
  }

  .column>.column--min {
    margin: 0 auto;
  }

  /* local navigation */
  .lnb {
    gap: 1rem;
    padding: 2rem 0;
  }

  .lnb:has(> .lnb_list) {
    padding: 4rem 0;
  }

  .lnb:not(.vertical)+* {
    padding-top: 3.2rem;
  }

  .lnb:not(.vertical)>* {
    width: 50%;
  }

  .lnb_list {
    flex-direction: column;
    gap: 2rem;
  }

  .lnb.vertical{
    position: fixed;
    top: 9rem;
    z-index: 2;
    flex-direction: column;
    flex-shrink: 0;
    align-self: flex-start;
    align-self: stretch;
    gap: 0;
    width: 100%;
    margin: 0 -1.6rem;
    padding: 0;
    background-color: #fff;
  }

  .header-banner-hide .lnb.vertical {
    top: 6rem;
  }
  .header-banner-show .lnb.vertical {
    top: 9rem;
  }

  .lnb.vertical.active {
    display: flex;
  }

  .lnb.vertical.active #toggleMenuBtn {
    margin-left: unset;
  }

  .lnb.vertical.active .btn_menu {
    display: block;
    padding: 1.8rem 1.6rem;
    text-align: left;
  }

  .lnb.vertical .btn_menu::after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: calc(50% - 0.35rem);
    width: 1.3rem;
    height: 0.7rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.707' height='8.061' viewBox='0 0 14.707 8.061'%3E%3Cpath d='M4667.148,3013.231l7,7,7-7' transform='translate(-4666.795 -3012.877)' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") no-repeat center/contain;
    transition: 0.3s ease-out;
  }

  .lnb.vertical .btn_menu {
    text-decoration: none !important;
  }

  .lnb.vertical .lnb_wrap {
    position: absolute;
    left: 0;
    top: 5.2rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s;
    width: 100%;
    background-color: inherit;
  }

  .lnb.vertical .lnb_list {
    gap: 0;
    overflow: hidden;
  }

  .lnb.vertical .lnb_list li.active a {
    text-decoration: underline;
  }

  .lnb.vertical .lnb_list a {
    display: block;
    padding: 1rem 1.6rem;
  }

  .lnb.vertical .lnb_title,
  .lnb.vertical>.txt_btn {
    display: none;
  }

  /* .lnb.vertical.active .btn_menu .active {
    display: block;
  } */

  .lnb.vertical.is-active .btn_menu::after {
    transform: rotate(180deg);
  }

  .lnb.vertical.is-active .lnb_wrap {
    grid-template-rows: 1fr;
  }

  .full_obj {
    margin: 0 -1.6rem;
  }

  .video_container .btn_full {
    top: 3rem;
  }

  .video_container .overlay {
    bottom: 0;
    padding: 1.6rem;
  }
}

@media all and (max-width: 24.313em) {

  /* header */
  .drawer {
    left: -100%;
  }

  .notification {
    padding-inline: 0;
  }

  .notification>li+li {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
  }
}

/* main */
.main_visual {
  margin-bottom: -80px;
}

@media all and (max-width: 64em) {

  /* main */
  .hero_banner {
    display: none;
  }

  .main_visual {
    margin-bottom: 0;
  }

  .main_visual video {
    height: 100vh;
    aspect-ratio: 9/16;
  }
}

/* product */
.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
}

.product_list>.item {
  position: relative;
  width: calc(25% - 7.5px);
}

.product_list .thumbnail {
  position: relative;
  display: block;
}

.product_list .thumbnail img {
  width: 100%;
}

.product_list .thumbnail .story {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 20px 12.984%;
  background-color: rgba(250, 250, 250, 0.6);
  backdrop-filter: blur(30px) brightness(145%);
  text-align: center;
  word-break: keep-all;
}

.product_list .thumbnail .story>p:last-child {
  padding-top: 10px;
}

.product_list .thumbnail .btn_prev,
.product_list .thumbnail .btn_next {
  position: absolute;
  top: calc(50% - 9px);
  z-index: 1;
  filter: invert(100%);
}

.product_list .thumbnail .btn_prev {
  left: 6px;
}

.product_list .thumbnail .btn_next {
  right: 6px;
}

.product_list .product_info {
  position: relative;
  padding-top: 10px;
}

.product_list .price {
  display: inline-block;
  padding-top: 2px;
}

.product_list .action_btn {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}

.product_list.col2>.item {
  width: calc(50% - 5px);
}

.product_info {
  flex-grow: 1;
}

.product_info>span {
  display: block;
}

.product_info>span:first-child {
  margin-bottom: 10px;
}

.product_info.has-btn {
  padding-right: 38px;
}

.product_info.has-btn [class*=btn_] {
  position: absolute;
  right: 10px;
  top: 20px;
}

.product_detail .video_container .overlay {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product_title {
  position: relative;
  font-size: var(--font-title-size);
}

.product_title .timecode {
  display: block;
  padding-bottom: 7px;
}

.product_title .btn_wish {
  position: absolute;
  right: 0;
  bottom: 15px;
}

.product_type li+li {
  margin-top: 20px;
}

.product_type .desc {
  display: block;
  margin-top: 5px;
}

.product_item {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.product_item:first-child {
  padding-top: 0;
}

.product_item .thumbnail {
  width: 100px;
}

.product_item .number_wrap {
  gap: 44px;
  padding-top: 12px;
}

.product_item .number_ctrl .btn_plus,
.product_item .number_ctrl .btn_minus {
  background-size: contain;
}

.product_item .quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_item .check_item {
  position: absolute;
  left: 0;
  top: 20px;
  width: unset;
}

.product_item .btn_delete {
  position: absolute;
  right: 0;
  top: 20px;
}

.detail_info {
  display: flex;
  gap: var(--layout-gap);
}

.detail_info .visual {
  display: flex;
  overflow-y: auto;
  margin-left: -25px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.detail_info .visual::-webkit-scrollbar {
  display: none;
}

.detail_info .visual img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.detail_info .description {
  flex-shrink: 0;
  width: 410px;
  padding-top: 54px;
}

.detail_info .product_title {
  margin-bottom: 34px;
}

.detail_info .btn_primary:not(.disabled) {
  height: 70px;
}

.detail_info .btn_wrap+p {
  margin-top: 20px;
}

.explore_more {
  padding-top: 100px;
}

.explore_more .product_list {
  padding-top: 80px;
}

/* search */
.search_wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 2;
  padding: 16px 0;
  background-color: #fff;
}

.search_wrap .input_box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 10px;
}

.search_wrap .input_box input {
  grid-column: 1 / span 3;
  width: calc(100% - 30px);
}

.search_wrap .input_box .btn_search {
  grid-column: 4 / span 8;
  text-align: left;
}

.search_wrap .btn_close {
  position: absolute;
  right: 25px;
  top: 25px;
  display: none;
}

.search_result .record {
  padding: 18px 0 16px;
}

.search_result .lnb {
  display: none;
}

.search_result .product_list {
  padding-top: 0;
}

.search-result-count-wrap {
  padding: 18px 0 16px;
}

.search_result + div#product-search-results .row.product-grid {
  margin-top: 0;
}

.header_banner[data-visible=true]~.container .search_wrap {
  top: var(--top--height);
}

@media all and (max-width: 80em) {

  /* product */
  .detail_info .description {
    width: var;
  }
}

@media all and (min-width: 64.063em) {

  /* product */
  .product_list .thumbnail .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .product_list .thumbnail .story {
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product_list .thumbnail:hover .story,
  .product_list .thumbnail:focus .story {
    opacity: 1;
  }

  .product_list .thumbnail .swiper-arrow {
    display: none;
  }

  .product_info>a:hover,
  .product_info>a:focus {
    text-decoration: underline;
  }

  .detail_info {
    height: calc(100vh - var(--header-height));
  }

  .detail_info .visual {
    flex-wrap: wrap;
  }

  .detail_info .visual img:nth-child(-n+2) {
    height: 85vh;
  }

  .header_banner[data-visible=true]~.container .detail_info {
    height: calc(100vh - var(--top--height));
  }
}

@media all and (max-width: 64em) {

  /* product */
  .product_list {
    gap: 4rem 1rem;
  }

  .product_list>.item {
    width: calc(50% - 0.5rem);
  }

  .product_list .thumbnail .story {
    gap: 1rem;
    padding: 2rem max(0.5rem, 1.2821vw);
  }

  .product_list .thumbnail .story>p:last-child {
    padding-top: 1rem;
  }

  .product_list .thumbnail .btn_prev,
  .product_list .thumbnail .btn_next {
    top: calc(50% - 0.9rem);
  }

  .product_list .thumbnail .btn_prev {
    left: 0.6rem;
  }

  .product_list .thumbnail .btn_next {
    right: 0.6rem;
  }

  .product_list .product_info {
    padding-top: 1rem;
  }

  .product_list .price {
    padding-top: 1rem;
  }

  .product_list .action_btn {
    top: 2rem;
    padding: 0;
  }

  .product_list.col2>.item {
    width: auto;
  }

  .product_info>span:first-child {
    margin-bottom: 1rem;
  }

  .product_info>a {
    display: block;
  }

  .product_info.has-btn {
    padding-right: 0;
  }

  .product_info.has-btn [class*=btn_] {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .product_info .btn_add {
    width: auto;
    padding: 0.6rem 2.8rem 0 0;
    background-position: 100% 50%;
  }

  .product_info .btn_add .hidden {
    position: static;
    margin: 0;
    clip-path: none;
  }

  .product_detail .video_container .overlay {
    gap: 0;
  }

  .product_detail .video_container .overlay>p,
  .product_detail .video_container .overlay .btn_secondary {
    display: none;
  }

  .product_detail .video_container .overlay .btn_to_down {
    gap: 0;
    padding-bottom: 1.4rem;
    color: transparent;
  }

  .product_title .timecode {
    padding-bottom: 0.7rem;
  }

  .product_title .btn_wish {
    bottom: 1.5rem;
  }

  .product_type li+li {
    margin-top: 2rem;
  }

  .product_type .desc {
    margin-top: 0.5rem;
  }

  .product_item {
    gap: 2rem;
    padding: 2rem 0;
  }

  .product_item .thumbnail {
    width: 10rem;
    min-width: 10rem;
  }

  .product_item .number_wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding-top: 2rem;
  }

  .product_item .quantity {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 1rem;
  }

  .product_item .check_item {
    top: 2rem;
  }

  .product_item .btn_delete {
    top: 2rem;
  }

  .detail_info {
    flex-direction: column;
    gap: 0;
  }

  .detail_info .visual {
    margin: 0 -1.6rem;
    scroll-snap-type: x mandatory;
  }

  .detail_info .visual img {
    width: 90%;
    scroll-snap-align: start;
  }

  .detail_info .description {
    width: auto;
    padding-top: 2rem;
  }

  .detail_info .product_title {
    margin-bottom: 3.4rem;
  }

  .detail_info .btn_primary:not(.disabled) {
    height: 7rem;
  }

  .detail_info .btn_wrap+p {
    margin-top: 2rem;
  }

  .explore_more {
    padding-top: 8rem;
  }

  .explore_more .product_list {
    padding-top: 6rem;
  }

  /* search */
  .search_wrap {
    padding: 1.6rem 0 2.5rem;
  }

  .search_wrap .btn_search {
    width: 2rem;
    height: 2rem;
    background-size: 1.8rem;
  }

  .search_result .record {
    padding: 0 0 3rem;
  }

  .search_wrap .input_box {
    display: block;
  }

  .search_wrap .input_box .btn_search {
    font-size: 0;
  }
}

@media all and (max-width: 47.938em) {

  /* product */
  .product_list .thumbnail .story {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .product_list .thumbnail .story>p:last-child {
    padding-top: 0;
  }
}

@media all and (max-width: 24.313em) {

  /* product */
  .product_list>.item {
    width: 100%;
  }
}

/* cart, checkout */
.item_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-top: 80px;
}

.item_body {
  width: 49.701%;
}

.item_body>.check_item {
  padding-bottom: 60px;
}

.item_body>.sub_title {
  padding-top: 80px;
}

.item_body .completed {
  padding-bottom: 60px;
}

.item_body .completed .order_no {
  margin-top: 18px;
}

.item_summary {
  position: sticky;
  top: 152px;
  align-self: flex-start;
  width: 37.126%;
}

.item_summary li {
  display: flex;
  justify-content: space-between;
}

.item_summary li+li {
  padding-top: 20px;
}

.item_summary .total {
  padding-top: 60px;
}

.item_summary .btn_wrap {
  padding-top: 20px;
}

.item_summary .page_title+.btn_wrap {
  padding-top: 0;
}

/* cart */
.cart .item_body>.check_item {
  padding-bottom: 40px;
}

.cart .product_item {
  gap: 10px;
}

/* .cart .product_item .thumbnail {
  width: 200px;
} */
.cart .no_items {
  flex-grow: 1;
  padding: 0;
  text-align: center;
}

/* checkout */
.checkout .item_body>.check_group:last-child {
  padding-top: 80px;
}

.discount .apply_coupon {
  margin-top: 10px;
}

.discount .input_item {
  margin-top: 40px;
}

.apply_coupon>.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.payment {
  margin-top: 80px;
}

.payment>.check_item+.check_item {
  margin-top: 40px;
}

.receipt_wrap {
  margin-top: 40px;
}

.receipt_wrap .sub_title {
  padding-bottom: 20px;
}

.receipt_wrap .input_item {
  padding-top: 20px;
}

/* order result */
.order_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order_info>li,
.order_info>.item {
  display: table;
}

.order_info>li>*,
.order_info>.item>* {
  display: table-cell;
  padding-left: 10px;
  vertical-align: top;
}

.order_info .label {
  width: 200px;
  padding-left: 0;
}

.order_info .txt_btn {
  margin-top: 10px;
  float: unset;
}

@media all and (max-width: 64em) {

  /* cart, checkout */
  .item_wrap {
    flex-direction: column;
    gap: 8rem;
    padding-top: 4rem;
  }

  .item_body {
    width: auto !important;
  }

  .item_body>.check_item {
    padding-bottom: 2rem;
  }

  .item_body>.sub_title {
    padding-top: 8rem;
  }

  .item_body .form_list {
    max-width: none;
  }

  .item_body .completed {
    padding-bottom: 2rem;
  }

  .orderDetailcontent .item_body .completed{
    padding-top: 6rem;
  }

  .item_body .completed .order_no {
    margin-top: 2.5rem;
  }

  .item_summary {
    position: static;
    align-self: auto;
    width: auto;
  }

  .item_summary li+li {
    padding-top: 2rem;
  }

  .item_summary .total,
  .item_summary .btn_wrap {
    padding-top: 4rem;
  }

  /* cart */
  .cart.item_wrap {
    gap: 4rem;
  }

  .cart .item_body>.check_item {
    padding-bottom: 0.5rem;
  }

  .cart .item_summary {
    padding-top: 8rem;
  }

  .cart .product_item {
    gap: 2rem;
    padding-top: 4.4rem;
  }

  .cart .product_item .thumbnail {
    width: 10rem;
  }

  /* checkout */
  .checkout .page_title {
    padding-bottom: 2rem;
  }

  .checkout .item_body>.check_group:last-child {
    padding-top: 6rem;
  }

  .discount .apply_coupon {
    margin-top: 2rem;
  }

  .discount .input_item {
    margin-top: 4rem;
  }

  .apply_coupon>.item {
    margin-top: 1rem;
  }

  .payment {
    margin-top: 8rem;
  }

  .payment>.check_item+.check_item {
    margin-top: 6rem;
  }

  .receipt_wrap {
    margin-top: 6rem;
  }

  .receipt_wrap .sub_title {
    padding-bottom: 4rem;
  }

  .receipt_wrap .input_item {
    padding-top: 4rem;
  }

  /* order result */
  .order_info {
    gap: 2rem;
  }

  .order_info>li>*,
  .order_info>.item>* {
    padding-left: 1rem;
  }

  .order_info .label {
    width: 10rem;
  }

  .order_info .txt_btn {
    margin-top: 2rem;
  }
}

/* tea thology, space */
.intro_txt+.shop_list {
  margin-top: 50px;
}

.shop_list .btn_wrap {
  justify-content: flex-start;
  padding-top: 30px;
}

.shop_list .btn_wrap [class^=btn_] {
  max-width: 410px;
}

.shop_info {
  display: flex;
  gap: 10px;
}

.shop_info>li {
  flex: 1;
}

.shop_info .label {
  display: block;
  margin-bottom: 10px;
}

.shop_detail .content_title+p {
  margin-top: 50px;
  font-size: var(--font-title-size);
}

.shop_detail .shop_info {
  margin-top: 50px;
}

.shop_detail .column--mid {
  margin: 0 auto;
  padding-top: 200px;
}

.shop_detail .column--mid .btn_wrap {
  padding-top: 0;
}

.shop_detail .column--mid .btn_wrap [class^=btn_] {
  max-width: 410px;
}

.shop_detail .column--mid .guide_txt {
  max-width: 410px;
  margin-left: auto;
}

.stock_list .store_name {
  font-size: var(--font-title-size);
}

.stock_list .store_info {
  margin-left: 420px;
}

.stock_list .store_info>li {
  margin-top: 1.75rem;
}

.stock_list .store_info>li:first-child {
  margin-top: 0;
}

.stock_list .store_info>li .shop_info {
  margin-top: 1.25rem;
}

.stock_list .store_info>li .shop_info li {
  text-transform: uppercase;
}

.stock_list .store_info>li .shop_info li.address {
  flex: 2;
}

@media all and (max-width: 64em) {

  /* tea thology, space  */
  .intro_txt+.shop_list {
    margin-top: 3rem;
  }

  .shop_list .btn_wrap {
    padding-top: 2rem;
  }

  .shop_info {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem 0;
  }

  .shop_info .label {
    margin-bottom: 0;
  }

  .shop_detail .content_title+p {
    margin-top: 3rem;
    font-size: 12px;
  }

  .shop_detail .shop_info {
    margin-top: 3rem;
  }

  .shop_detail .column--mid {
    padding-top: 4rem;
  }

  .shop_detail .column--mid .guide_txt {
    max-width: none;
    margin-left: 0;
  }

  .stock_list .title {
    font-size: 1.8rem;
  }

  .stock_list .store_name {
    font-size: 1.8rem;
  }

  .stock_list .store_info {
    margin-top: 0.5rem;
    margin-left: 0;
  }

  .stock_list .store_info>li {
    margin-top: 2.5rem;
  }

  .stock_list .store_info>li .shop_info {
    margin-top: 1.5rem;
  }

  .stock_list .store_info>li .shop_info li {
    text-transform: uppercase;
  }

  .stock_list .store_info>li .shop_info li.address {
    flex: 2;
  }
}

@media all and (max-width: 47.938em) {

  /* tea thology, space  */
  .shop_list .btn_wrap [class^=btn_] {
    max-width: none;
  }
}

/* exhibition */
.exhibit>.item {
  display: flex;
  gap: 10px;
}

.exhibit>.item+.item {
  margin-top: 10px;
}

.exhibit .main_thumbnail {
  width: 66.534%;
}

.exhibit .main_thumbnail img {
  width: 100%;
}

.exhibit .info {
  flex-grow: 1;
  padding: 10px 30px;
  font-size: 18px;
}

.exhibit .date {
  display: block;
  margin-top: 30px;
}

.exhibit .summary {
  margin-top: 30px;
  font-size: 12px;
}

.exhibit_detail {
  margin: 0 -25px;
}

.exhibit_detail img {
  width: 100%;
}

.exhibit_detail .description {
  padding-top: 100px;
  word-break: keep-all;
}

.exhibit_detail .title {
  padding-bottom: 36px;
  font-size: 24px;
}

.exhibit_detail .title .idx {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

.exhibit_detail .summary {
  padding-bottom: 15px;
}

.exhibit_detail .section {
  padding-bottom: 100px;
  text-align: center;
}

.exhibit_detail .section:last-child {
  padding-bottom: 0;
}

.exhibit_detail .section[class*=col] {
  display: flex;
}

.exhibit_detail .section.col2>* {
  width: 50%;
}

.exhibit_detail .section.col2 .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
}

.exhibit_detail .section.col2 .summary {
  padding-bottom: 60px;
}

.exhibit_detail .section.col3 {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 25px;
  text-align: left;
}

.exhibit_detail .section.col3>* {
  flex: 1 1 calc(33.3% - 10px);
}

.exhibit_detail .section.col3 .description {
  padding: 30px 0;
}

.exhibit_detail .section.col3 .summary {
  padding-bottom: 30px;
}

.exhibit_detail .btn_wrap [class^=btn_] {
  max-width: 410px;
}

@media all and (max-width: 64em) {

  /* exhibition */
  .exhibit {
    margin: 0 -1.6rem;
    padding-top: 0 !important;
  }

  .exhibit>.item {
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
  }

  .exhibit>.item+.item {
    margin-top: 4rem;
  }

  .exhibit .main_thumbnail {
    width: auto;
  }

  .exhibit .info {
    padding: 0 1.6rem;
    font-size: 1.1rem;
  }

  .exhibit .title {
    font-size: 1.2rem;
  }

  .exhibit .date {
    margin-top: 2rem;
  }

  .exhibit .summary {
    margin-top: 1rem;
  }

  .exhibit_detail {
    margin: 0 -1.6rem;
  }

  .exhibit_detail .description {
    padding: 5rem 1.6rem;
    font-size: 1.1rem;
  }

  .exhibit_detail .title {
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }

  .exhibit_detail .title .idx {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .exhibit_detail .summary {
    padding-bottom: 5rem;
    font-size: 1.2rem;
  }

  .exhibit_detail .section {
    padding-bottom: 0;
  }

  .exhibit_detail .section[class*=col] {
    display: block;
  }

  .exhibit_detail .section[class*=col]>* {
    width: 100%;
  }

  .exhibit_detail .section.col2 .summary {
    padding-bottom: 5rem;
  }

  .exhibit_detail .section.col3 {
    padding: 0;
  }

  .exhibit_detail .section.col3 .description {
    padding: 1.5rem 1.6rem 4rem;
  }

  .exhibit_detail .section.col3 .summary {
    padding-bottom: 3rem;
  }
}

@media all and (max-width: 47.938em) {

  /* exhibition */
  .exhibit_detail .btn_wrap [class^=btn_] {
    flex-grow: 0;
    width: 17.4rem;
  }
}

/* login */
.sign_in fieldset+fieldset {
  margin-top: 80px;
}

.sign_in .sub_title {
  padding-bottom: 30px;
}

.sign_in .form_list>* {
  margin-top: 15px;
}

.sign_in .form_list>*:first-child {
  margin-top: 0;
}

.sign_in .btn_wrap {
  padding-top: 20px;
}

.sign_in .btn_secondary {
  border-color: #707070;
}

.member_link {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.member_link>* {
  color: #4E4E4E;
}

.order_tracking {
  display: none;
}

.order_tracking.is-active {
  display: block;
}

/* sign up */
.sign_up .btn_wrap {
  padding-top: 40px;
}

/* find password */
.find_form .input_item {
  margin-top: 40px;
}

.find_form .btn_wrap {
  padding-top: 80px;
}

@media all and (max-width: 64em) {

  /* login */
  .sign_in fieldset+fieldset {
    margin-top: 8rem;
  }

  .sign_in .sub_title {
    padding-bottom: 3rem;
  }

  .sign_in .form_list>* {
    margin-top: 1.5rem;
  }

  .sign_in .btn_wrap {
    padding-top: 2rem;
  }

  .member_link {
    gap: 4rem;
    margin-top: 2rem;
  }

  /* sign up */
  .sign_up .btn_wrap {
    padding-top: 4rem;
  }

  /* find password */
  .find_form .input_item {
    margin-top: 4rem;
  }

  .find_form .btn_wrap {
    padding-top: 8rem;
  }
}

/* mypage */
.overview .greet .user {
  display: block;
  padding-bottom: 10px;
  font-size: var(--font-title-size);
  line-height: 1;
}

.overview .summary_box {
  margin-top: 60px;
}

.overview .summary_box .value {
  padding-top: 15px;
  line-height: 28px;
}

.main_lnb {
  display: none;
}

/* my order */
.order_list>.item {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.order_list .order_date {
  display: flex;
  gap: 150px;
}

.order_list .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
}

.order_list .row:nth-of-type(2) {
  padding-top: 10px;
}

.order_list .action_btn {
  margin-top: 10px;
}

.order_list .action_btn .txt_btn+.txt_btn {
  margin-left: 10px;
}

.request_form>.order_no {
  margin-bottom: 60px;
}

.request_form .list_table .check_item {
  flex-grow: 1;
}

.request_form .list_table .number_ctrl {
  width: 70%;
}

.request_form .column--mid {
  padding-top: 40px;
}

.request_form .refund .input_item {
  margin-top: 20px;
}

.request_form .refund textarea {
  height: 226px;
}

/* membership */
.membership .grade+.info_list {
  margin-top: 10px;
}

.note_wrap {
  margin-top: 150px;
}

.note_wrap .sub_title {
  padding-bottom: 0;
}

.note_wrap .bullet+.sub_title {
  padding-top: 20px;
}

/* my reservation */
.reservation .summary_box {
  margin-bottom: 40px;
}

.reservation .list_table .title {
  display: block;
  width: 100%;
  text-align: left;
}

.reservation .list_table .title .date {
  display: block;
  margin-top: 10px;
}

.reservation .list_table .action_btn {
  display: flex;
  gap: 30%;
}

.reservation .list_table .action_btn [class*=btn] {
  display: none;
}

.reservation .list_table .action_btn[data-status=reserved] [class*=btn] {
  display: inline-block;
}

/* my information */
.check_password .input_item {
  margin-top: 40px;
}

.profile .check_group {
  margin-top: 10px;
}

.profile .check_group+.check_group {
  margin-top: 40px;
}

.profile .txt_btn:last-child {
  margin-top: 60px;
}

/* my address */
.shipping .list_table>.item {
  justify-content: space-between;
}

.shipping .list_table .action_btn {
  display: flex;
  gap: 10px;
}

.shipping .list_table .action_btn>* {
  width: 50%;
}

.shipping .addr_info {
  flex-grow: 1;
}

.shipping .addr_info .name {
  position: relative;
  width: 50%;
  margin-bottom: 10px;
}

.shipping .addr_info .main_addr {
  position: absolute;
  left: calc(100% + 5px);
  top: 0;
  text-decoration: underline;
  white-space: nowrap;
}

.shipping .addr_info .zipcode {
  display: block;
}

.shipping .no_items {
  padding: 0;
}

/* wishlist */
.wishlist .page_title {
  width: 100%;
}

.wishlist .product_list {
  padding-top: 0;
}

.wishlist .product_list .price {
  display: block;
  padding-top: 10px;
}

.wishlist .item_summary .page_title em {
  display: none;
}

.wishlist .item_summary .btn_primary em {
  padding: 0 4px;
}

.wishlist .item_summary.selected .page_title em {
  display: inline-block;
}

.wishlist .item_summary.selected .btn_primary em {
  display: none;
}

/* inquiry*/
.inquiry .summary_box {
  margin-bottom: 60px;
}

.inquiry .list_table .title {
  flex: 1;
}

.inquiry .list_table .title a {
  display: block;
  text-align: left;
}

.inquiry .detail_box .details,
.inquiry .detail_box .file {
  margin-top: 20px;
}

.inquiry .detail_box .date {
  margin-top: 80px;
}

.inquiry .answer_box {
  margin-top: 30px;
}

.inquiry .answer_box li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #000;
}

.inquiry .answer_box li:first-child {
  margin-top: 0;
  border-top: 0;
}

.inquiry .answer_box li .date {
  margin-top: 30px;
}

.inquiry .answer_box+.btn_wrap {
  padding-top: 30px;
}

.inquiry .form_list>* {
  margin-top: 20px;
}

.inquiry .form_list .file_box .txt_btn {
  display: flex;
  padding-top: 10px;
}

/* point */
.point .current {
  margin-bottom: 40px;
  text-transform: uppercase;
}

.point .list_table>.item>*.num {
  flex: 1;
}

.point .list_table>.item>*:last-child {
  width: 30.5%;
}

.point .no_items {
  padding-top: 0;
}

@media all and (min-width: 64.063em) {

  /* my order */
  .order_list .status {
    width: 34%;
    max-width: 410px;
  }
}

@media all and (max-width: 64em) {

  /* mypage */
  .overview {
    flex-direction: column-reverse;
    gap: 6rem;
    padding-top: 2rem;
  }

  .overview .lnb.vertical {
    display: none;
  }

  .overview .greet .user {
    padding-bottom: 1rem;
  }

  .overview .summary_box {
    margin-top: 6rem;
  }

  .main_lnb {
    display: block;
  }

  .main_lnb>.txt_btn {
    margin-top: 6rem;
  }

  /* my order */
  .order_list>.item {
    padding: 2rem 0;
  }

  .order_list .order_date {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .order_list .row {
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
  }

  .order_list .product_info .comma {
    display: none;
  }

  .order_list .status {
    display: flex;
    gap: 1rem;
  }

  .order_list .status>* {
    width: 50%;
  }

  .order_list .action_btn {
    margin-top: 0;
  }

  .request_form>.order_no {
    margin-bottom: 2rem;
  }

  .request_form .list_header>*:not(.check_item) {
    display: none;
  }

  .request_form .list_table>.item {
    padding-left: 3.4rem;
  }

  .request_form .list_table>.item .check_item {
    margin-left: -3.4rem;
  }

  .request_form .list_table .number_wrap {
    gap: 1rem;
    max-width: 37.6rem;
  }

  .request_form .list_table .number_ctrl {
    justify-content: flex-end;
    width: 50%;
  }

  .request_form .column--mid {
    padding-top: 8rem;
  }

  .request_form .refund .input_item {
    margin-top: 4rem;
  }

  .request_form .refund .input_item .row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 3.6rem;
  }

  .request_form .refund textarea {
    height: 22.6rem;
  }

  /* membership */
  .membership .grade+.info_list {
    margin-top: 1rem;
  }

  .note_wrap {
    margin-top: 10rem;
  }

  /* my reservation */
  .reservation .summary_box {
    margin-bottom: 2rem;
  }

  .reservation .list_header {
    display: none;
  }

  .reservation .list_table>.item {
    padding-left: 5rem;
  }

  .reservation .list_table>.item .seq {
    position: absolute;
    left: 0;
    top: 2rem;
  }

  .reservation .list_table .date {
    margin-top: 1.4rem;
  }

  .reservation .list_table .status {
    display: flex;
    gap: 1rem;
  }

  .reservation .list_table .status .display-mo {
    width: 12.4rem;
  }

  .reservation .list_table .action_btn {
    gap: 20%;
    max-width: 17.4rem;
    margin-left: 13.4rem;
  }

  /* my information */
  .check_password .input_item {
    margin-top: 4rem;
  }

  .check_password .btn_wrap {
    padding-top: 6rem;
  }

  .profile .check_group {
    margin-top: 1.5rem;
  }

  .profile .check_group+.check_group {
    margin-top: 4rem;
  }

  .profile .txt_btn:last-child {
    margin-top: 6rem;
  }

  /* my address */
  .shipping .list_table .action_btn {
    gap: 1rem;
  }

  .shipping .addr_info .name {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 0.4rem;
    width: auto;
    margin-bottom: 1.5rem;
  }

  .shipping .addr_info .main_addr {
    position: static;
    text-decoration: none;
  }

  .shipping .addr_info .main_addr::before {
    content: "[";
  }

  .shipping .addr_info .main_addr::after {
    content: "]";
  }

  .shipping .no_items {
    padding: 0;
  }

  /* wishlist */
  .wishlist .item_wrap {
    flex-direction: column-reverse;
  }

  .wishlist .item_summary {
    padding-bottom: 8rem;
  }

  .wishlist .item_summary .page_title {
    display: block;
  }

  .wishlist .product_list {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #000;
  }

  .wishlist .product_list>.item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    width: auto;
    padding: 2rem 0;
    border-bottom: 1px solid #000;
  }

  .wishlist .product_list .thumbnail {
    width: 48.604%;
  }

  .wishlist .product_list .price {
    padding-top: 1rem;
  }

  .wishlist .product_list .action_btn:first-child {
    width: 100%;
  }

  .wishlist .product_info {
    width: calc(51.396% - 1rem);
    padding-top: 4rem;
  }

  /* inquiry*/
  .inquiry .summary_box {
    margin-bottom: 2rem;
  }

  .inquiry .list_header {
    display: none;
  }

  .inquiry .list_table>.item {
    padding-left: 5rem;
  }

  .inquiry .list_table>.item .seq {
    position: absolute;
    left: 0;
    top: 2rem;
  }

  .inquiry .list_table .status {
    display: flex;
    gap: 1rem;
  }

  .inquiry .list_table .status .display-mo {
    width: 12.4rem;
  }

  .inquiry .detail_box .details,
  .inquiry .detail_box .date {
    margin-top: 4rem;
  }

  .inquiry .detail_box .file {
    margin-top: 1.6rem;
  }

  .inquiry .answer_box {
    margin-top: 2rem;
  }

  .inquiry .answer_box li {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .inquiry .answer_box li:first-child {
    margin-top: 0;
    border-top: 0;
  }

  .inquiry .answer_box li .date {
    margin-top: 4rem;
  }

  .inquiry .answer_box+.btn_wrap {
    padding-top: 4rem;
  }

  .inquiry .form_list>* {
    margin-top: 4rem;
  }

  .inquiry .form_list .file_box {
    margin-top: 4rem;
    flex-direction: column;
    align-items: end;
  }

  .inquiry .form_list .file_box .txt_btn {
    padding-top: 0;
  }

  /* point */
  .point .current {
    margin-bottom: 2rem;
  }
}

@media all and (max-width: 24.313em) {

  /* my reservation */
  .reservation .list_table .status .display-mo {
    width: 40.26%;
  }

  .reservation .list_table .action_btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    margin-left: calc(40.26% + 1rem);
  }

  /* my information */
  .profile .input_item [class^=btn_] {
    min-width: auto;
  }

  /* wishlist */
  .wishlist .product_info {
    padding-top: 2rem;
  }
}

/* terms */
.terms h2+p {
  margin-bottom: 15px;
}

.terms h3,
.terms h4 {
  margin-top: 15px;
}

.terms h3 strong,
.terms h4 strong {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}

.terms h2:nth-of-type(1),
.terms h3:nth-of-type(1) {
  margin-top: 0;
}

.terms ol>li,
.terms .dot>li {
  position: relative;
  padding-left: 18px;
}

.terms ol>li strong,
.terms .dot>li strong {
  font-weight: 700;
}

.terms table {
  margin-bottom: 12px;
}

.terms .num {
  position: absolute;
  left: 0;
  top: 0;
}

.product_item .thumbnail img {
  max-width: 100%;
}

.layout_odOrderList .order_list .order_date,
.layout_odOrderList .order_list .rows {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.layout_odOrderList .order_list .order_date>span {
  grid-column: 1 / span 1;
}

.layout_odOrderList .order_list .order_date>a.txt_btn {
  grid-column: 2 / span 5;
}

.layout_odOrderList .order_list .rows .productOrderinfo {
  grid-column: 1 / span 4;
}

.layout_odOrderList .order_list .rows .Pending_status {
  grid-column: 5 / span 2;
}

/* .filter{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.filter .orderSelectmonth{
  grid-column: 1 / span 1;
  width: unset;
}
.filter .range_btn{
  grid-column: 2 / span 2;
  width: unset;
}
.filter .Orderdatepicker{
  grid-column: 4 / span 2;
  width: unset;
}
.filter .txt_btn check_btn{
  grid-column: 6 / span 1;
  width: unset;
} */

.cart-empty {
  grid-column: 3 / span 8;
  padding: 0 !important;
}

.item_wrap.cart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  max-width: unset;
}

.item_wrap.cart .item_body {
  grid-column: 3 / span 4;
  width: unset;
}

.item_wrap.cart .item_body .product_item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 0;
  margin-top: 20px;
}

.item_wrap.cart .item_body .product_item:first-child {
  margin-top: 0;
}

.item_wrap.cart .item_body .product_item .btn_delete {
  top: 0;
}

.item_wrap.cart .item_body .thumbnail {
  grid-column: 1 / span 1;
  width: 100%;
}

.item_wrap.cart .item_body .product_info {
  grid-column: 2 / span 3;
  padding-top: 0;
}

.item_wrap.cart .item_summary {
  grid-column: 8 / span 3;
  width: unset;
}

@media all and (max-width: 64em) {

  /* terms */
  .terms h3 {
    margin-top: 1.5rem;
  }

  .terms ol>li {
    padding-left: 1.8rem;
  }

  .terms table {
    margin-bottom: 1.2rem;
  }

  .layout_odOrderList .order_list .order_date,
  .layout_odOrderList .order_list .rows {
    display: flex;
  }

  .layout_odOrderList .order_list .action_btn {
    left: 50%;
    right: auto;
  }

  .layout_odOrderList .order_list .order_date {
    gap: 0;
  }

  .layout_odOrderList .column_wrap .column {
    padding-top: 0;
  }

  .layout_odShoppingCart {
    padding-top: 10rem;
    padding-bottom: 0;
  }

  .layout_odShoppingCart .item_wrap.cart .item_body{
    margin-top: 0;
  }

  .item_wrap.cart {
    display: unset;
    padding-top: 0;
  }

  .item_wrap.cart .item_body {
    margin-top: 4rem;
  }

  .item_wrap.cart .item_body .product_item .product_info .quantity {
    padding-top: 0;
  }

  .perfume-section .sub_menu_outer .lnb.vertical {
    margin-left: 0;
    margin-right: 0;
  }

  /* Paypal 관련 Css */
  .flash-messages-container {
      position: fixed;
      width: 100%;
      top: 1rem;
      left: 0;
      padding: 0 1rem;
      z-index: 9999;
      height: 0;
  }

  .flash-messages-container > .alert {
      width: fit-content;
      margin: 0 auto 1rem auto;
  }

  @media screen and (max-width: 1024px) {
      .flash-messages-container > .alert {
          width: 100%;
      }
  }
  /* Paypal 관련 Css 끝*/