/* 공유 ui css */

/* 

header
footer
card-layout ui

*/

#hd_pop {
  position: absolute;
  background-color: #fff;
  z-index: 1000;
}
#hd_pop button {
  border: 1px solid #202020;
  padding: 2px;
  border-radius: 4px;
}
button:focus-visible {
  outline: 2px solid crimson;
  border-radius: 3px;
}

/* 스킵나브 */
html {
  font-family: pretendard;
  line-height: 1em;
}
#skipnav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 300;
}
#skipnav a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 50px;
  transform: translateY(-100%);
}
#skipnav a:focus,
#skipnav a:active {
  transform: translateY(0);
}

/* 요소 너비 */

/*어사이드*/
.wrapper {
  position: relative;
  min-height: calc(100vh - 280px);
  padding-bottom: 277px;
}
.wrapper.on:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
body.on:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}

aside.quick_menu_wrap {
  position: fixed;
  right: 23px;
  bottom: 240px;

  z-index: 30;
}

aside.quick_menu_wrap > ul > li > a {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
aside.quick_menu_wrap > ul > li:nth-of-type(1) {
  background: url("/img/ico_cart.png") center/contain no-repeat;
}
aside.quick_menu_wrap > ul > li:nth-of-type(2) {
  background: url("/img/ico_recent.png") center/contain no-repeat;
}
aside.quick_menu_wrap > ul > li:nth-of-type(3) {
  background: url("/img/ico_aside_t.png") center/contain no-repeat;
}
aside.quick_menu_wrap > ul > li:nth-of-type(4) {
  background: url("/img/ico_aside_d.png") center/contain no-repeat;
}
.modal_box {
  position: fixed;
  display: none;
  max-width: 640px;
  width: 100%;
  padding: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  box-sizing: border-box;
}
.modal_box.chage_height {
  max-height: 395px !important;
}
.modal_box > div {
  position: relative;
  max-width: 600px;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 24px;
  background-color: #fff;
  box-sizing: border-box;
}
.recently_view_box {
  max-width: 640px;
  max-height: 805px;
  height: 100%;
  min-height: 352px;
}
.modal_box.on {
  display: block;
}
.modal_box .recently_view_inner_box {
  position: relative;
  max-width: 600px;
  /* max-height: 765px; */
  min-height: 332px;
  height: 100%;
  padding: 30px;
  border-radius: 24px;
  background-color: #fff;
  box-sizing: border-box;
}
.modal_box p.tit {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  margin-bottom: 20px;
  padding-right: 40px;
}
.modal_box a.btn_modal_close {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 38px;
  top: 33px;
  background: url("/img/btn_rensent_close.png") right center/24px 24px no-repeat;
}

.modal_box .modal_con_box {
  padding-top: 30px;
  /* min-height: 225px; */
  height: calc(100% - 73px);
  overflow-y: auto;
  border-top: 1px solid #202020;
}
.modal_box .modal_con_box .confirm_box {
  margin-top: 30px;
}

.modal_box .modal_con_box .confirm_box.off {
  display: none;
}
.modal_box .modal_con_box .after_submit_box {
  display: none;
  margin-top: 30px;
}
.modal_box .modal_con_box .after_submit_box.on {
  display: block;
}
.modal_box .recently_view_inner_box .modal_con_box {
  padding-top: 0;
  height: calc(100% - 48px);
}
.recently_view_inner_box > ul > li {
  padding: 14px 0;
  border-bottom: 1px solid #d2d2d2;
  box-sizing: border-box;
}
.recently_view_inner_box > ul > li.val_null {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.recently_view_inner_box > ul > li > a {
  display: flex;
}
.recently_view_inner_box > ul > li > a .img_box {
  width: 100px;
  height: 100px;
  position: relative;
  margin-right: 15px;
  border-radius: 12px;
  overflow: hidden;
}
.recently_view_inner_box > ul > li > a .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.recently_view_inner_box > ul > li > a .desc_box {
  width: calc(100% - 100px - 15px);
}
aside.quick_menu_wrap
  > ul
  > li
  .recently_view_inner_box
  > ul
  > li
  > a
  .desc_box
  .product_tit {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 30px;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
aside.quick_menu_wrap
  > ul
  > li
  .recently_view_inner_box
  > ul
  > li
  > a
  .desc_box
  .product_price {
  display: flex;
  align-items: center;
  justify-content: right;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
aside.quick_menu_wrap
  > ul
  > li
  .recently_view_inner_box
  > ul
  > li
  > a
  .desc_box
  .product_price
  > span {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
aside.quick_menu_wrap
  > ul
  > li
  .recently_view_inner_box
  > ul
  > li
  > a
  .desc_box
  .product_price
  > span {
  display: inline-block;
  margin-left: 17px;
}
/* 헤더 */
.gnb_mobile {
  display: none;
}
.btn_gnb_ta {
  display: none;
}
.btn_gnb_m {
  display: none;
}

.header_wrap {
  border-bottom: 1px solid #b2b2b2;
}
.header_wrap .header_util_box {
  display: flex;
  justify-content: space-between;
  background-color: #404040;
}
.header_wrap .header_util_box > .inner_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header_wrap .header_util_box > .inner_box > ul {
  display: flex;
  align-items: center;
  height: 40px;
}
.header_wrap .header_util_box > .inner_box > ul > li {
  margin-right: 21px;
}
.header_wrap .header_util_box > .inner_box > ul:nth-of-type(2) > li {
  margin-right: 20px;
}
.header_wrap .header_util_box > .inner_box > ul:nth-of-type(2) > li > a {
  color: #b2b2b2;
}
.header_wrap .header_util_box > .inner_box > ul > li > a {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.header_wrap
  .header_util_box
  > .inner_box
  > ul:nth-of-type(1)
  > li:not(:last-of-type)
  > a:after {
  content: "";
  display: block;
  position: absolute;
  right: -11px;
  top: 50%;
  width: 1px;
  height: 8px;
  transform: translateY(-50%);
  background-color: #606060;
}

.header_wrap .header_util_box > .inner_box > ul > li > a > .ico_bookmaker {
  width: 100%;
  max-width: 10px;
  margin-left: 2px;
  margin-right: 4px;
}
.header_wrap .header_util_box > .inner_box > ul > li:last-of-type {
  margin-right: 0px;
}
.header_wrap
  .header_util_box
  > .inner_box
  > ul:nth-of-type(2)
  > li:last-of-type {
  margin-right: 0px;
}
.header_wrap .header_middle {
  border-bottom: 1px solid #e2e2e2;
}
.header_wrap .header_middle > .inner_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap .header_middle .logo_box h1 > a {
  display: inline-block;
  margin: 42px 20px 43px 0;
}
.header_wrap .header_middle .logo_box img.logo_m {
  display: none;
}
.header_wrap .header_middle .logo_box img.logo {
  width: 212px;
  /* max-width: 212px;
  width: 100%; */
  height: auto;
}
.header_wrap .header_middle .search_box {
  position: relative;
  max-width: 620px;
  width: 100%;
}

.header_wrap .header_middle .search_box .label_search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
}

.header_wrap .header_middle .search_box .input_search {
  padding: 12px 105px 14px 20px;
  width: 100%;
  height: 48px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  color: #202020;
  border-radius: 100px;
  border: 1px solid #202020;
  background-color: #f5f5f5;
}
.header_wrap .header_middle .search_box .input_search:placeholder {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  color: #909090;
}
.header_wrap .header_middle .search_box .input_search:focus::placeholder {
  font-size: 0;
  visibility: hidden;
}
.header_wrap .header_middle .search_box .input_search:placeholder-shown {
  text-overflow: ellipsis;
}
.header_wrap .header_middle .search_box .btn_search {
  display: none;
}
.header_wrap .header_middle .search_box .btn_search_close {
  display: none;
}
.header_wrap .header_middle .search_box .btn_search,
.header_wrap .header_middle .search_box .input_submit {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("/img/btn_search.png") center / contain no-repeat;
  font-size: 0;
  line-height: 0;

  border: 0;
  z-index: 5;
}

.header_wrap .header_bottom {
}
.header_wrap .header_bottom .select_nav {
  display: none;
}
.header_wrap .header_bottom nav {
  display: block;
  padding: 15px 0 17px;
  /* padding: 17px 0 18px; */
}
/* .header_wrap .header_bottom nav .depth_02 {
  display: none;
} */
.header_wrap .header_bottom nav .depth_01 {
  display: flex;
  position: relative;
}
.header_wrap .header_bottom nav .depth_01 > li {
  padding-right: 15px;
  padding-left: 15px;
}
.header_wrap .header_bottom nav .depth_01 > li:nth-of-type(1) {
  padding-left: 0;
}
.header_wrap .header_bottom nav .depth_01 > li:last-of-type {
  padding-right: 0;
}

.header_wrap .header_bottom nav .depth_01 > li > a {
  display: inline-block;
  font-size: 14px;
  line-height: 15px;
  font-weight: 300;
  color: #202020;
}
.header_wrap .header_bottom nav .depth_01 > li:nth-of-type(1) > a {
  font-weight: 500;
}
.header_wrap .header_bottom nav .depth_01 > li:nth-of-type(2) > a {
  font-weight: 500;
}
.header_wrap .header_bottom nav .depth_01 > li > a:hover {
  /* transition: all 0.3s ease-in-out; */
  /* font-weight: 500; */
  color: #2887cf;
}
.header_wrap .header_bottom nav .depth_01 > li > a:hover:before {
  content: attr(title);
  font-weight: 500;
  color: #2887cf;
  position: absolute;
}
/* .header_wrap .header_bottom nav .depth_01 > li > a:attr {
  content: attr(title);
  font-weight: 500;
  height: 0px;
  visibility: hidden;
} */
.header_wrap .header_bottom nav .depth_01 > li .depth_02_outer {
  position: absolute;
  display: none;
  padding-top: 29px;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 20;
  margin-left: -15px;
}
.header_wrap
  .header_bottom
  nav
  .depth_01
  > li
  .depth_02_outer
  > .depth_02
  > div
  > ul {
  width: 250px;
}
.header_wrap .header_bottom nav .depth_01 > li.on .depth_02_outer {
  display: block;
}
.header_wrap .header_bottom nav .depth_01 > li.on .depth_02 {
  display: block;
  animation: fade-in 0.6s;
  animation-fill-mode: forwards;
  padding: 21px 20px 22px;
  border: 1px solid #b2b2b2;
  border-radius: 12px;
  /* position: relative;
  left: -15px; */
  background-color: #fff;
}
.header_wrap .header_bottom nav .depth_01 > li.on .depth_02 > .inner_box {
  /* display: flex; */
}
/* .header_wrap .header_bottom nav .depth_01 > li.on .depth_02 > .inner_box > ul {
  padding-right: 20px;
} */
/* .header_wrap
  .header_bottom
  nav
  .depth_01
  > li.on
  .depth_02
  > .inner_box
  > ul:last-of-type {
  padding-left: 20px;
  padding-right: 0;
} */
.header_wrap .header_bottom nav .depth_01 > li.on .depth_02 > .inner_box > ul {
  position: relative;
  font-size: 0;
}
.header_wrap
  .header_bottom
  nav
  .depth_01
  > li
  .depth_02
  > .inner_box
  > ul
  > li {
  display: inline-block;
  width: calc(50% - 20px);
  box-sizing: border-box;
  /* white-space: nowrap; */
}

.header_wrap
  .header_bottom
  nav
  .depth_01
  > li
  .depth_02
  > .inner_box
  > ul
  > li:nth-of-type(2n) {
  margin-left: 40px;
}
.header_wrap
  .header_bottom
  nav
  .depth_01
  > li
  .depth_02
  > .inner_box
  > ul
  > li:nth-of-type(2n):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  border-left: 1px solid #e2e2e2;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header_wrap .header_bottom nav .depth_02 > .inner_box > ul > li {
  margin-top: 14px;
}
.header_wrap
  .header_bottom
  nav
  .depth_02
  > .inner_box
  > ul
  > li:nth-of-type(1) {
  margin-top: 0;
}
.header_wrap
  .header_bottom
  nav
  .depth_02
  > .inner_box
  > ul
  > li:nth-of-type(2) {
  margin-top: 0;
}
.header_wrap .header_bottom nav .depth_02 > .inner_box > ul > li > a {
  display: inline-block;
  font-size: 14px;
  line-height: 15px;
  font-weight: 300;
  color: #202020;
}

.header_wrap .header_bottom nav .depth_02 > .inner_box > ul > li > a:hover {
  /* font-weight: 500; */
  /* color: #2887cf; */
  /* color: #fff; */
  color: #2887cf;
}
/* .header_wrap
  .header_bottom
  nav
  .depth_02
  > .inner_box
  > ul
  > li
  > a:hover:before {
  content: attr(title);
  font-weight: 500;
  color: #2887cf;
  position: absolute;
  font-size: 14px;
  line-height: 15px;
} */
/* .header_wrap .header_bottom nav .depth_02 > .inner_box > ul:nth-of-type(1) {
  border-right: 1px solid #e2e2e2;
} */

/*link_tab*/

.tab_link_box {
}
.tab_link_box > ul {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.tab_link_box > ul > li {
  margin-right: 12px;
  box-sizing: border-box;
}
.tab_link_box > ul.ul_col_04 > li {
  width: calc(25% - ((12px * 3) / 4));
}
.tab_link_box > ul.ul_col_04 > li:last-of-type {
  margin-right: 0;
}

.tab_link_box > ul > li > a {
  display: block;
  padding: 22px 5px;
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2d2;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #909090;
  text-align: center;
  box-sizing: border-box;
}
.tab_link_box > ul > li:last-of-type {
  margin-right: 0;
}
.tab_link_box > ul > li.active > a {
  border: 1px solid #202020;
  color: #202020;
  font-weight: 600;
}
.tab_link_box > ul.ul_col_06 {
  gap: 12px;
  justify-content: unset;
  align-items: unset;
}
.tab_link_box > ul.ul_col_06 > li {
  margin-right: 0;
  width: calc(16.666% - ((12px * 5) / 6));
  box-sizing: border-box;
}
.tab_link_box > ul.ul_col_06 > li > a {
  height: 100%;
  padding: 22px 5px;
}

/* .tab_link_box > ul.ul_col_06 > li:nth-of-type(6n){
  margin-right: 0;
} */

/* product_*/

.product_clickable_box {
  position: relative;
}
.product_clickable_box .item_box li.on {
  opacity: 1;
  transition: opacity 0.8s;
}
.product_clickable_box .item_box li {
  opacity: 0;
  transition: opacity 0.8s;
}
.product_clickable_box .pagenation_box {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  width: calc(100% - 40px);
}
.product_clickable_box .pagenation_box > a {
  margin-right: 5px;
  width: 30px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 0;
  line-height: 0;
}
.product_clickable_box .pagenation_box > button {
  margin-right: 5px;
  width: 30px;
  max-width: calc(20% - 5px);
  height: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-size: 0;
  line-height: 0;
}
.product_clickable_box .pagenation_box > button.on {
  background-color: #2887cf;
}
.product_clickable_box .pagenation_box > button:last-of-type {
  margin-right: 0;
}
/*서브페이지용 추가*/
.product_clickable_outer .desc_box {
  padding: 30px 0 0;
}
.product_clickable_outer .desc_box .tit_p {
  padding-right: 23px;
  font-size: 18px;
  font-weight: 600;
  /* margin-bottom: 15px; */
  margin-bottom: 19px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.product_clickable_outer .desc_box .discount_rate {
  font-size: 35px;
  font-size: 35px;
  font-weight: 700;
  color: #cf363f;
  letter-spacing: -0.5px;
}

.product_clickable_outer .desc_box .original_price .currency_unit {
  display: inline-block;
  margin-left: 4px;
}
.product_clickable_outer .desc_box .original_price {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 300;
  color: #909090;
  text-decoration: line-through;
  text-align: right;
}

.product_clickable_outer .desc_box .discount_price {
  /* font-size: 24px; */
  display: flex;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
  color: #020202;
  text-align: right;
  letter-spacing: -0.5px;
}

.product_clickable_outer .desc_box .discount_price .currency_unit {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-left: 15px;
}

.product_clickable_outer .desc_box .discount_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product_clickable_outer ul.item_box {
  position: relative;
  padding-bottom: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.product_clickable_outer ul.item_box > li {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.product_clickable_outer ul.item_box > li > img {
  /* width: 100%; */
  height: 100%;
}
/*contact*/

.contact_box {
  display: flex;
}

.contact_box > li {
  padding: 45px;
  width: calc(50% - 10px);
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  box-sizing: border-box;
}
.contact_box > li:nth-of-type(1) {
  margin-right: 20px;
}
.contact_box > li > dl dt {
  /* margin-bottom: 18px; */
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0;
}
.contact_box > li > dl dt span {
  display: inline-block;
}
.contact_box > li > dl dt span:nth-of-type(1) {
  margin-right: 10px;
}
.contact_box > li > dl dt span.tit {
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  color: #2887cf;
}
.contact_box > li > dl dt span.sub_tit {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  color: #b2b2b2;
}
.contact_box > li > dl dd:nth-of-type(1) {
  margin-bottom: 20px;
}
.contact_box > li > dl dd {
  margin-bottom: 20px;
  font-size: 0;
}
.contact_box > li:nth-of-type(1) > dl dd {
  display: flex;
}

.contact_box > li > dl dd:last-of-type {
  margin-bottom: 0;
}
.contact_box > li > dl dd.info_num {
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  color: #202020;
}

.contact_box > li > dl dd span {
  display: inline-block;
}
.contact_box > li > dl dd > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
/* .contact_box > li > dl dd > ul > li {
  display: flex;
} */

.contact_box > li > dl dd:nth-of-type(2) {
  margin-bottom: 0;
}
.contact_box > li > dl dd > ul > li {
  margin-bottom: 20px;
}
.contact_box > li > dl dd > ul > li:first-of-type {
  margin-right: 29px;
}
.contact_box > li > dl dd span.cateogory_tit {
  margin-right: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: #202020;
}

.contact_box > li > dl dd:last-of-type span.cateogory_tit {
  max-width: 95px;
  width: 100%;
}

.contact_box > li > dl dd:last-of-type span.cateogory_desc {
  width: calc(100% - 95px);
}
.contact_box > li > dl dd span.cateogory_desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.6px;
  color: #202020;
}

.contact_box > li > dl dd:last-of-type span.cateogory_tit {
  font-size: 14px;
  line-height: 18px;
}

.contact_box > li > dl dd:last-of-type span.cateogory_desc {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
}
.contact_box > li > dl dd span.desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: #909090;
}

.contact_box > li:nth-of-type(2) {
}
.contact_box > li:nth-of-type(2) dl dd {
  margin-bottom: 11px;
}

.contact_box > li:nth-of-type(2) dl dd.bank_account_info {
  margin-bottom: 8px;
  border-radius: 8px;
  background-color: #e9e9e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 48px; */

  padding: 14px 20px 13px;
}

.contact_box > li:nth-of-type(2) dl dd.bank_account_info:last-of-type {
  margin-bottom: 0;
}

.contact_box > li:nth-of-type(2) dl dd {
}
.contact_box > li:nth-of-type(2) dl dd span {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  color: #909090;
}

.contact_box > li:nth-of-type(2) dl dd span:nth-of-type(1) {
  color: #909090;
}

.contact_box > li:nth-of-type(2) dl dd span:nth-of-type(2) {
  color: #202020;
}

.caution_box {
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 12px;
}
.caution_box .caution_tit {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  padding-left: 16px;
  margin-bottom: 15px;

  background: url("/img/ico_caution.png") left center/12px no-repeat;
}

/* 푸터 */
.footer_wrap {
  padding: 30px 0;
  background-color: #606060;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.footer_wrap .content_box {
  display: flex;
  gap: 85px;
  align-items: center;
}

.footer_wrap .content_box .logo_box {
  display: block;
  max-width: 212px;
}

.footer_wrap .content_box .logo_box img {
  width: 100%;
}

.footer_wrap .info_box .quick_menu {
  display: flex;
  margin-bottom: 30px;
}
.footer_wrap .info_box .quick_menu li {
  margin-right: 60px;
}
.footer_wrap .info_box .quick_menu li:last-of-type {
  margin-right: 0;
}
.footer_wrap .info_box .quick_menu a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: #e9e9e9;
}
.footer_wrap .info_box .address ul.dp_flex {
  display: flex;
  flex-wrap: wrap;
}
.footer_wrap .info_box .address ul li {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  color: #b2b2b2;
}
/* .footer_wrap .info_box .address > ul > li {
  margin-bottom: 10px;
}
.footer_wrap .info_box .address > ul > li:last-of-type {
  margin-bottom: 0;
} */
.footer_wrap .info_box .address > ul > li:nth-last-child(3) {
  margin-bottom: 10px;
}
.footer_wrap .info_box .address > ul > li:nth-last-child(2) {
  margin-bottom: 20px;
}
.footer_wrap .info_box .address > ul > li > ul > li {
  margin-right: 60px;
  margin-bottom: 10px;
}
.footer_wrap .info_box .address > ul > li > ul > li:last-of-type {
  margin-right: 0;
}

.footer_wrap .info_box .address > ul > li .copy_right {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  padding-left: 13px;
  background: url("img/ico_copyright.png") left center/11px auto no-repeat;
}

a.business_num {
  display: inline-block;
  margin-left: 5px;
  color: #ffffff;
}

.rank_box ul.star_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.rank_box ul.star_box > li > button {
  width: 60px;
  height: 60px;
  background: url("/img/ico_rank.png") center/contain no-repeat;
}
.rank_box ul.star_box > li > button.on {
  background-image: url("/img/ico_rank_fill.png");
}

/* path 셀렉트 나브*/
.path_box {
  padding-top: 30px;
  padding-bottom: 60px;
}
.path_box > ul {
  /* display: flex; */
  text-align: right;
}
.path_box > ul > li {
  margin-right: 20px;
  display: inline-block;
  font-size: 0;
}
.path_box > ul > li:last-of-type {
  margin-right: 0;
}
.path_box > ul > li > a {
  position: relative;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #909090;
}
.path_box > ul > li:last-of-type > a {
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: #020202;
}
.path_box > ul > li > a:after {
  position: absolute;
  content: ">";
  display: inline-block;
  right: -15px;
  top: 0;
}
.path_box > ul > li:last-of-type > a:after {
  display: none;
}

/* path 셀렉트 나브*/

.path_box.type02 {
  /* display: flex;
  align-items: center; */
  text-align: right;
  font-size: 0;
}
.path_box.type02 > a {
  /* display: flex;
  align-items: center; */
  text-align: right;
  font-size: 0;
}

.path_box.type02 > a {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #909090;
  vertical-align: middle;
}
.path_box.type02 > a:after {
  position: absolute;
  content: ">";
  display: inline-block;
  right: -15px;
  top: 0;
}
.path_box .select_nav {
  display: inline-block;
  position: relative;
  /* margin: 0 0 0 auto; */
  /* gap: 10px; */
  /* width: 602px; */
  width: 50.17%;
  min-width: 250px;
  vertical-align: middle;
  text-align: left;
}

.path_box .select_nav .sel_01 {
  display: block;
  width: calc(33.33% - 5px);
  height: 30px;
  padding: 8px 30px 8px 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
  border: 1px solid #d2d2d2;
  color: #202020;
  font-size: 12px;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.path_box .select_nav .sel_01:after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  background: url("/img/ico_sel_down.png") center/contain no-repeat;
  transition: 0.2s;
  transform-origin: 3px 3px;
}
.path_box .select_nav .sel_02.on:after,
.path_box .select_nav .sel_03.on:after {
  transform: rotate(180deg);
}
.path_box .select_nav .sel_02:after,
.path_box .select_nav .sel_03:after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  background: url("/img/ico_sel_down.png") center/contain no-repeat;
  transition: 0.2s;
  transform-origin: 3px 3px;
}
.path_box .select_nav .sel_01.on:after {
  transform: rotate(180deg);
}
.path_box .select_nav .depth_01.outer {
  display: none;
}
.path_box .select_nav .depth_01 {
  width: calc(33.33% - 5px);
  position: absolute;
  max-height: 0;
  top: 29px;
  z-index: 100;
  background-color: #fff;
  /* padding: 21px 20px 22px; */
  /* border: 1px solid #b2b2b2; */
  box-sizing: border-box;
  overflow: hidden;
}
.path_box .select_nav .depth_01.on {
  max-height: 1000px;
  overflow: visible;
  border: 1px solid #d2d2d2;
  /* border-top: 0; */
  z-index: 110;
}

.path_box .select_nav .depth_01 > li {
  padding: 4px 10px;
  border-bottom: 1px solid #d2d2d2;
  box-sizing: border-box;
}
.path_box .select_nav .depth_01 > li > a {
  display: block;
  padding: 10px 30px 10px 10px;
  box-sizing: border-box;
  /* background-color: #e9e9e9; */
  border-radius: 4px;
  overflow: hidden;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
}

.path_box .select_nav .sel_02_box {
  width: calc(33.33% - 5px);
  position: absolute;
  left: calc(33.33% + 2.5px);
  top: 0;
  height: 30px;
  padding: 8px 30px 8px 10px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
  z-index: 20;
}
.path_box .select_nav .sel_03_box {
  width: calc(33.33% - 5px);
  position: absolute;
  left: calc(66.66% + 5px);
  top: 0;
  height: 30px;
  padding: 8px 30px 8px 10px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
  z-index: 20;
}
.path_box .select_nav .sel_02,
.path_box .select_nav .sel_03 {
  /* position: absolute;
  right: 0;
  top: 0; */
  display: block;
  color: #202020;
  font-size: 12px;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.path_box .select_nav .depth_01 .depth_02_outer,
.path_box .select_nav .depth_01 .depth_03_outer {
  display: none;
}
/*cloneded node action*/
.path_box .sel_02_box .depth_02_outer,
.path_box .sel_03_box .depth_03_outer {
  position: absolute;
  width: calc(100% + 2px);
  left: -1px;
  top: 28px;
  background-color: #fff;
}
.path_box .sel_02_box .depth_02_outer.on,
.path_box .sel_03_box .depth_03_outer.on {
  display: block;
}

/*수정*/
.path_box .sel_02_box .depth_02_outer.on > ul,
.path_box .sel_03_box .depth_03_outer.on > ul {
  max-height: 1000px;
  border: 1px solid #d2d2d2;
}
.path_box .sel_02_box .depth_02_outer.on > ul > li,
.path_box .sel_03_box .depth_03_outer.on > ul > li {
  padding: 4px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #d2d2d2;
}
.path_box .sel_02_box .depth_02_outer.on > ul > li:last-of-type,
.path_box .sel_03_box .depth_03_outer.on > ul > li:last-of-type {
  border-bottom: 0;
}
.path_box .sel_02_box .depth_02_outer.on > ul > li > a,
.path_box .sel_03_box .depth_03_outer.on > ul > li > a {
  display: block;
  padding: 10px 30px 10px 10px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  border-radius: 4px;
  overflow: hidden;
}

/* 삭제 예정 */
.path_box .sel_02_box .depth_02_outer .depth_02,
.path_box .sel_03_box .depth_03_outer .depth_02 {
  max-height: 0;
  overflow: hidden;
}
.path_box .sel_02_box .depth_02_outer.on .depth_02,
.path_box .sel_03_box .depth_03_outer.on .depth_03 {
  max-height: 1000px;
  border: 1px solid #d2d2d2;
  /* border-top: 0; */
}

.path_box .sel_02_box .depth_02_outer .depth_02.on,
.path_box .sel_03_box .depth_03_outer .depth_03.on {
  max-height: 1000px;
  border: 1px solid #d2d2d2;
}
.path_box .sel_02_box .depth_02_outer .depth_02 ul li,
.path_box .sel_03_box .depth_03_outer .depth_03 ul li {
  padding: 4px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #d2d2d2;
}
.pathe_box .sel_02_box .depth_02_outer .depth_02 ul li:first-of-type,
.pathe_box .sel_03_box .depth_03_outer .depth_03 ul li:first-of-type {
  padding-top: 20px;
}
.pathe_box .sel_02_box .depth_02_outer .depth_02 ul li:last-of-type,
.pathe_box .sel_03_box .depth_03_outer .depth_03 ul li:last-of-type {
  padding-bottom: 20px;
}
.path_box .sel_02_box .depth_02_outer .depth_02 ul li a,
.path_box .sel_03_box .depth_03_outer .depth_03 ul li a {
  display: block;
  padding: 10px 30px 10px 10px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  /* background-color: rgb(233, 233, 233, 0.35); */
  border-radius: 4px;
  overflow: hidden;
}

.path_box .sel_02_box .depth_02_outer.on .depth_02 .depth_03_outer {
  display: none;
}

.path_box .sel_03_box .depth_03_outer {
  display: none;
}

.product_summary_box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px;
}

.product_summary_box .left_box {
  max-width: 35%;
}
.product_summary_box .right_box {
  margin-left: 9.17%;
  max-width: calc(100% - 35%);
  width: 100%;
  box-sizing: border-box;
}
.product_summary_box .swiper {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
}
.product_summary_box .swiper-slide {
  height: auto;
}
.product_summary_box .swiper-slide {
  background-size: cover;
  background-position: center;
}

.product_summary_box .pdViewswiper01 {
  height: 80%;
  width: 100%;
}

.product_summary_box .pdViewswiper01 {
  height: 20%;
  box-sizing: border-box;
  padding: 30px 0 0;
}

.product_summary_box .pdViewswiper01 .swiper-slide {
  width: 25%;
  height: 100%;
  /* opacity: 0.4; */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.product_summary_box .pdViewswiper01 .swiper-slide:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: 10;
}

.product_summary_box .pdViewswiper01 .swiper-slide-thumb-active:after {
  opacity: 0;
  display: none;
}

.product_summary_box .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_summary_box .swiper-button-next,
.product_summary_box .swiper-button-prev {
  width: 60px;
  height: 60px;
}
.product_summary_box .swiper-button-next,
.product_summary_box .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: url("/img/ico_slide_l_pdview.png") center/100% no-repeat;
}
.product_summary_box .swiper-button-prev {
  background-image: url("/img/ico_slide_l_pdview.png");
}
.product_summary_box .swiper-button-next {
  background-image: url("/img/ico_slide_r_pdview.png");
}
.product_summary_box .swiper-button-prev:after,
.product_summary_box .swiper-rtl .swiper-button-next:after,
.product_summary_box .swiper-button-next:after,
.product_summary_box .swiper-rtl .swiper-button-prev:after {
  display: none;
}
.product_summary_box .board_search_box.type02 {
  margin-bottom: 15px;
  position: relative;
}

.product_summary_box .search_box_outer {
  /* margin-bottom: 60px; */
}
.product_summary_box .search_box_outer > div:first-of-type {
  margin-bottom: 15px;
}

.product_summary_box .board_search_box .b_select.type02 {
  padding: 20px 20px 20px 63px;
}
.product_summary_box .board_search_box.type02 .txt_required {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}
.product_summary_box .board_search_box.type02 .b_select {
  border-color: #909090;
}
.product_summary_box .producti_info_box > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 300;
}
.product_summary_box .producti_info_box > li:last-of-type {
  margin-bottom: 0;
}
.product_summary_box .producti_info_box > li > span:nth-of-type(1) {
  color: #909090;
}
.product_summary_box .producti_info_box > li > span:nth-of-type(2) {
  /* color: #202020; */
}

.product_summary_box .option_lists > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 10px 15px 20px;
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}
.product_summary_box .option_lists > li:last-of-type {
  margin-bottom: 0;
}

.product_summary_box .option_util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 8px; */
}
.product_summary_box .option_util .counts {
  display: flex;
  max-width: 104px;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  background: #fff;
}
.product_summary_box .option_util .counts button {
  width: 30px;
  height: 30px;
}
.product_summary_box .option_util .counts .b_btn_subtract {
  background: url("/img/b_btn_subtract.jpg") center/12px 2px no-repeat;
}
.product_summary_box .option_util .counts .b_btn_sum {
  background: url("/img/b_btn_sum.jpg") center/12px 12px no-repeat;
}
.product_summary_box .option_util .b_btn_option_del {
  width: 30px;
  height: 30px;
  background: url("/img/b_btn_option_del.png") center/contain no-repeat;
}

.product_summary_box input.b_input_counts {
  padding: 7px 2px 8px;
  width: 44px;
  height: 30px;
  text-align: center;
  border: 0;
  border-right: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
  pointer-events: none;
  border-radius: 0;
}
.product_summary_box input.b_input_price {
  width: auto;
  height: auto;
  border: 0;
  padding: 0;
  pointer-events: none;
}
.product_summary_box .option_util .option_price {
  margin-left: 20px;
}
.product_summary_box .option_util .b_option_price > span {
  display: block;
  width: 97px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_summary_box .option_box {
  margin-bottom: 30px;
}
.product_summary_box .price_box {
  padding-top: 40px;
  margin-bottom: 60px;
  border-top: 1px solid #202020;
}
.product_summary_box .price_box {
  font-size: 0;
  text-align: right;
}
.product_summary_box .price_box > p > span {
  display: inline-block;
  vertical-align: middle;
}
.product_summary_box .price_box > p > span:nth-of-type(1) {
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
  margin-right: 10px;
}
.product_summary_box .price_box > p > span:nth-of-type(2) {
  font-size: 36px;
  line-height: 43px;
  font-weight: 700;
  margin-right: 25px;
}
.product_summary_box .price_box > p > span:nth-of-type(3) {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
}
.tab_con_box > ul.tab_lists_box > li {
  display: none;
}
.tab_con_box > ul.tab_lists_box > li.on {
  display: block;
}

@media screen and (max-width: 1200px) {
  .header_wrap .header_bottom nav .depth_01 > li:first-of-type .depth_02_outer {
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header_wrap .gnb_mobile {
    display: block;
  }
  .header_wrap .gnb_mobile > .inner_box > div:not(.select_nav),
  .header_wrap .gnb_mobile > .inner_box > a {
    display: none;
  }
  /* .header_wrap .gnb_mobile .select_nav {
    display: block;
  } */

  .content_wrap .content_container > div:not(.primary_box_04),
  .content_wrap .content_container > div.primary_box_04 .content_box,
  .header_wrap > .header_bottom,
  .header_wrap > .header_top > div,
  .header_wrap > .header_middle > div,
  .footer_wrap > div {
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }
  .content_wrap .content_container > div.primary_box_01 {
    padding-left: 0;
    padding-right: 0;
  }
  .footer_wrap .content_box {
    gap: 15px;
  }

  /*헤더 gnb*/
  .header_wrap .header_bottom nav {
    display: none;
    position: absolute;
    top: 51px;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 15px;
  }
  .header_wrap .header_bottom nav.on {
    display: block;
  }
  .header_wrap .header_bottom nav .depth_01 {
    display: block;
    position: static;
  }
  .header_wrap .header_bottom nav .depth_01::after {
    content: "";
    display: block;
    position: absolute;
    left: 155px;
    top: 15px;
    border-right: 1px solid #b2b2b2;
    height: calc(100% - 35px);
    z-index: 20;
  }
  .header_wrap .header_bottom nav .depth_01 > li:last-of-type {
    padding-right: 20px;
  }
  .header_wrap .header_bottom nav .depth_01 > li {
    margin-bottom: 8px;
    padding: 0 20px 0 0;
    width: 140px;
    border-radius: 4px;
    /* background-color: #eee; */
    box-sizing: border-box;
  }

  .header_wrap .header_bottom nav .depth_01 > li > a {
    padding: 10px 15px;
    width: 100%;
    background-color: #eee;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .header_wrap .header_bottom nav .depth_02 > .inner_box > ul > li > a {
    width: 100%;
    padding: 10px 15px;
    background-color: rgb(233, 233, 233, 0.35);
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
  }
  /* .header_wrap .header_bottom nav .depth_01 > li > a:hover {
    background-color: #2887cf;
    color: #fff;
    font-weight: 400;
    transition: background 0.3s;
  }
  .header_wrap .header_bottom nav .depth_01 > li > a:hover:before {
    color: #fff;
  } */

  .header_wrap .header_bottom nav .depth_01 > li.on .depth_02 {
    padding: 0;
    left: 0;
    border: 0;
    background-color: transparent;
  }
  .header_wrap .header_bottom nav .depth_01 > li .depth_02_outer {
    left: 155px;
    top: 15px;
    padding: 0;
    width: calc(100% - 120px - 30px - 20px);
    background: #fff;
  }

  .header_wrap .header_bottom nav .depth_01 > li.on .depth_02 > .inner_box {
    display: block;
  }
  .header_wrap
    .header_bottom
    nav
    .depth_02
    > .inner_box
    > ul
    > li:not(:last-of-type) {
    margin-bottom: 8px;
  }

  .header_wrap .header_bottom nav .depth_02 > .inner_box > ul:nth-of-type(1) {
    border: 0;
  }

  .header_wrap
    .header_bottom
    nav
    .depth_01
    > li.on
    .depth_02
    > .inner_box
    > ul {
    padding-right: 0;
    padding-left: 20px;
    margin-bottom: 8px;
  }
  .header_wrap
    .header_bottom
    nav
    .depth_01
    > li.on
    .depth_02
    > .inner_box
    > ul
    :last-of-type {
    margin-bottom: 0;
  }
  .header_wrap .header_bottom {
    display: flex;
    align-items: center;
    position: relative;
  }
  .header_wrap
    .header_bottom
    .select_nav
    .depth_01
    .depth_02_outer
    .header_wrap
    .header_bottom
    nav {
    display: none;
  }
  .btn_gnb_ta {
    display: block;
    width: 105px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 14px;
    color: #202020;
  }
  .btn_gnb_ta > img {
    width: 32px;
    height: 32px;
    margin-top: -2px;
  }
  .btn_gnb_m > img {
    width: 32px;
    height: 32px;
  }

  /*셀렉트 나브*/
  .header_wrap .header_bottom .gnb_mobile {
    width: calc(100% - 106px);
  }
  .header_wrap .header_bottom .select_nav {
    display: block;
    position: relative;
    margin: 10px 0;
    /* gap: 10px; */
    width: 100%;
  }

  .header_wrap .header_bottom .select_nav .sel_01 {
    display: block;
    width: calc(50% - 5px);
    height: 30px;
    padding: 8px 30px 8px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 20;
    border: 1px solid #202020;
    color: #909090;
    font-size: 12px;
    font-weight: 300;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .header_wrap .header_bottom .select_nav .sel_01:after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    background: url("/img/ico_sel_down.png") center/contain no-repeat;
    transition: 0.2s;
    transform-origin: 3px 3px;
  }
  .header_wrap .header_bottom .select_nav .sel_02.on:after {
    transform: rotate(180deg);
  }
  .header_wrap .header_bottom .select_nav .sel_02:after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    background: url("/img/ico_sel_down.png") center/contain no-repeat;
    transition: 0.2s;
    transform-origin: 3px 3px;
  }
  .header_wrap .header_bottom .select_nav .sel_01.on:after {
    transform: rotate(180deg);
  }
  .header_wrap .header_bottom .select_nav .depth_01.outer {
    display: none;
  }
  .header_wrap .header_bottom .select_nav .depth_01 {
    width: calc(50% - 5px);
    position: absolute;
    max-height: 0;
    top: 29px;
    z-index: 100;
    background-color: #fff;
    /* padding: 21px 20px 22px; */
    /* border: 1px solid #b2b2b2; */
    box-sizing: border-box;
    overflow: hidden;
  }
  .header_wrap .header_bottom .select_nav .depth_01.on {
    max-height: 1000px;
    overflow: visible;
    border: 1px solid #202020;
    /* border-top: 0; */
    z-index: 110;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li:first-of-type {
    padding-top: 20px;
    box-sizing: border-box;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li:last-of-type {
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li {
    padding: 4px 10px;

    box-sizing: border-box;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li > a {
    display: block;
    padding: 10px 30px 10px 10px;
    box-sizing: border-box;
    background-color: #e9e9e9;
    border-radius: 4px;
    overflow: hidden;
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    margin-bottom: 6px;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li > a:last-of-type {
    margin-bottom: 0px;
  }
  .header_wrap
    .header_bottom
    nav
    .depth_01
    > li.on
    .depth_02
    > .inner_box
    > ul
    > li {
    width: 100%;
  }
  .header_wrap
    .header_bottom
    nav
    .depth_01
    > li.on
    .depth_02
    > .inner_box
    > ul
    > li:nth-of-type(2n) {
    border: 0;
    margin-left: 0;
  }
  .header_wrap
    .header_bottom
    nav
    .depth_01
    > li.on
    .depth_02
    > .inner_box
    > ul
    > li:nth-of-type(2n)::after {
    display: none;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li > a:hover {
    background-color: #2887cf;
    color: #fff;
    font-weight: 400;
    transition: background 0.3s;
  }
  .header_wrap .header_bottom .select_nav .depth_01 > li > a.on {
    background-color: #2887cf;
    color: #fff;
    font-weight: 400;
  }
  .header_wrap .header_bottom .select_nav .sel_02_box {
    width: calc(50% - 5px);
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    padding: 8px 30px 8px 10px;
    border: 1px solid #d2d2d2;
    box-sizing: border-box;
    z-index: 25;
  }
  .header_wrap .header_bottom .select_nav .sel_02 {
    /* position: absolute;
    right: 0;
    top: 0; */
    display: block;
    color: #909090;
    font-size: 12px;
    font-weight: 300;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .header_wrap .header_bottom .select_nav .depth_01 .depth_02_outer {
    display: none;

    /* position: absolute;
    top: -1px;
    left: calc(100% + 11px);
    width: calc(100% + 2px);
    background-color: #fff; */
  }
  /*cloneded node action*/
  .header_wrap .header_bottom .sel_02_box .depth_02_outer {
    position: absolute;
    width: calc(100% + 2px);
    left: -1px;
    top: 29px;
    background-color: #fff;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer.on {
    display: block;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer .depth_02 {
    max-height: 0;
    overflow: hidden;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer.on .depth_02 {
    max-height: 1000px;
    border: 1px solid #d2d2d2;
    /* border-top: 0; */
  }

  .header_wrap .header_bottom .sel_02_box .depth_02_outer .depth_02.on {
    max-height: 1000px;
    border: 1px solid #b2b2b2;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer .depth_02 ul li {
    padding: 4px 10px;
    box-sizing: border-box;
  }
  .header_wrap
    .header_bottom
    .sel_02_box
    .depth_02_outer
    .depth_02
    ul
    li:first-of-type {
    padding-top: 20px;
  }
  .header_wrap
    .header_bottom
    .sel_02_box
    .depth_02_outer
    .depth_02
    ul
    li:last-of-type {
    padding-bottom: 20px;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer .depth_02 ul li a {
    display: block;
    padding: 10px 30px 10px 10px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    background-color: rgb(233, 233, 233, 0.35);
    border-radius: 4px;
    overflow: hidden;
  }
  .header_wrap
    .header_bottom
    .sel_02_box
    .depth_02_outer
    .depth_02
    ul
    li
    a:hover {
    background-color: #2887cf;
    color: #fff;
    font-weight: 400;
  }
  .rank_box ul.star_box {
    gap: 10px;
  }
  .rank_box ul.star_box > li > button {
    width: 30px;
    height: 30px;
  }
  .product_summary_box .option_box .option_item {
    text-align: left;
  }
  .product_summary_box .option_lists > li {
    display: block;
  }
  .product_summary_box .option_box .option_item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .contact_box {
    display: block;
  }
  .contact_box > li {
    padding: 30px;
    width: 100%;
    margin: 0 0 20px;
  }
  .contact_box > li:last-of-type {
    margin: 0;
  }
  .contact_box > li > dl dd > ul {
    display: block;
  }

  .tab_link_box > ul.ul_col_06 > li {
    width: calc(33.333% - ((12px * 2) / 3));
  }
  .footer_wrap .content_box {
    display: block;
  }
  .footer_wrap .content_box .logo_box {
    margin: 0 auto 18px;
  }
  .footer_wrap .info_box .quick_menu {
    padding: 0 17px;
    margin-bottom: 19px;
    justify-content: space-between;
  }
  .footer_wrap .info_box .quick_menu li {
    margin: 0;
  }
  .footer_wrap .info_box .quick_menu a {
    font-size: 12px;
    line-height: 14px;
  }
  .footer_wrap .info_box .address ul li {
    font-size: 10px;
    line-height: 14px;
  }
  .footer_wrap .info_box .address > ul > .copy_right {
    margin: 0 auto;
    font-size: 12px;
    line-height: 14px;
  }
  .footer_wrap .info_box .address > ul > li:last-of-type {
    text-align: center;
  }

  .footer_wrap .info_box .address > ul > li > ul > li {
    margin-bottom: 9px;
  }
  .footer_wrap .info_box .address > ul > li:nth-last-child(3) {
    margin-bottom: 9px;
  }
  .footer_wrap .info_box .address > ul > li:nth-last-child(2) {
    margin-bottom: 15px;
  }

  .product_summary_box .right_box {
    margin-left: 30px;
  }
  .product_summary_box .board_search_box .b_select.type02 {
    padding: 0px 20px 0px 52px;
  }
  .product_summary_box .board_search_box.type02 .txt_required {
    position: absolute;
    top: 11px;
    left: 15px;
    font-size: 12px;
  }

  .path_box .select_nav {
    width: calc(100% - 70px);
  }

  .path_box .select_nav .depth_01 {
    min-width: 150px;
  }
  .path_box .sel_02_box .depth_02_outer,
  .path_box .sel_03_box .depth_03_outer {
    min-width: 150px;
    background: #fff;
    right: -1px;
    left: auto;
  }
}

@media screen and (max-width: 480px) {
  .wrapper {
    /* position: relative; */
    /* min-height: 100vh;
  padding-bottom: 280px;   */
  }
  .btn_gnb_m {
    display: block;
  }

  aside.quick_menu_wrap
    > ul
    > li
    .recently_view_inner_box
    > ul
    > li
    > a
    .desc_box
    .product_tit {
    font-size: 14px;
    line-height: 16px;
  }
  aside.quick_menu_wrap
    > ul
    > li
    .recently_view_inner_box
    > ul
    > li
    > a
    .desc_box
    .product_price {
    font-size: 18px;
    line-height: 21px;
  }
  aside.quick_menu_wrap
    > ul
    > li
    .recently_view_inner_box
    > ul
    > li
    > a
    .desc_box
    .product_price
    > span {
    font-size: 14px;
    line-height: 16px;
    margin-left: 10px;
  }
  .header_wrap .gnb_mobile > .inner_box > div:not(.select_nav),
  .header_wrap .gnb_mobile > .inner_box > a {
    display: block;
  }

  .header_wrap .header_top.header_util_box {
    display: none;
  }
  .btn_gnb_ta {
    display: none;
  }
  .header_wrap .header_bottom nav {
    display: none;
  }
  .header_wrap .gnb_mobile .header_util_box {
    display: block;
  }
  .header_wrap .gnb_mobile .login_box {
    display: block;
  }
  .header_wrap .gnb_mobile .gnb_tit_box {
    display: block;
  }
  .header_wrap .gnb_mobile .header_uitl_box_02 {
    display: block;
  }
  .header_wrap .gnb_mobile > .inner_box > div {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .header_wrap .gnb_mobile .inner_box .header_util_box {
    padding: 0;
    margin-right: 15px;
    margin-left: 15px;
  }
  .header_wrap .gnb_mobile > .inner_box > .gnb_m_footer_box {
    padding: 8px 15px;
    background-color: #606060;
    text-align: center;
  }
  .header_wrap .header_bottom {
    position: static;
  }
  .header_wrap .header_bottom .gnb_mobile {
    display: none;
    max-width: 300px;
    min-width: 270px;
    width: calc(100% - 60px);
    padding-right: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .header_wrap .header_bottom .gnb_mobile > .inner_box {
    /* max-width: 300px;
    min-width: 270px; */
    /* margin-right: 60px; */
    width: 100%;
    padding: 15px 0 0;
    position: relative;
    background-color: #fff;
    box-sizing: border-box;
  }
  .header_wrap .header_bottom .gnb_mobile.on {
    display: block;
  }
  .header_wrap .gnb_mobile .header_util_box {
    border-radius: 8px;
  }
  .header_wrap .header_util_box > .inner_box {
    display: block;
  }
  .header_wrap .header_util_box > .inner_box > ul {
    height: 30px;
    padding: 0 0 0 35px;
  }

  .header_wrap .gnb_mobile .login_box > ul > li {
    border: 1px solid #2887cf;
    border-radius: 8px;
  }
  .header_wrap .gnb_mobile .login_box > ul > li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .header_wrap .gnb_mobile .login_box > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    color: #2887cf;
  }
  .header_wrap .gnb_mobile .login_box > ul > li:last-of-type {
    border-color: #909090;
  }
  .header_wrap .gnb_mobile .login_box > ul > li:last-of-type > a {
    color: #909090;
  }
  .header_wrap .gnb_mobile .gnb_tit_box .gnb_tit {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #202020;
  }
  .header_wrap .header_bottom .select_nav {
    margin: 10px 0 20px;
  }

  .header_wrap .header_bottom .select_nav .sel_01 {
    padding: 12px 40px 12px 10px;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
  }
  .header_wrap .header_bottom .select_nav .sel_02_box {
    position: relative;
    width: 100%;
    padding: 12px 40px 12px 10px;
    height: 40px;
    margin-bottom: 10px;
  }

  .header_wrap .header_bottom .select_nav .sel_02 {
    /* padding: 12px 40px 12px 10px; */
    /* position: relative; */
    /* top: auto; */
    /* right: auto; */
    /* height: 40px; */
    /* width: 100%; */
  }
  .header_wrap .header_bottom .select_nav .depth_01 {
    top: 40px;
    width: calc(100% - 30px);
  }
  .header_wrap .header_bottom .select_nav .depth_01 .depth_02_outer {
    left: 0;
  }
  .header_wrap .header_bottom .sel_02_box .depth_02_outer {
    top: 39px;
  }

  .header_wrap .gnb_mobile > .inner_box .header_uitl_box_02 {
    padding: 20px 15px 15px;
    display: flex;
    flex-wrap: wrap;
    background-color: #f5f5f5;
  }
  .header_uitl_box_02 ul.top_box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .header_uitl_box_02 ul.top_box li {
    width: calc(50% - 5px);
    box-sizing: border-box;
  }
  .header_uitl_box_02 ul.top_box li:nth-of-type(2n) {
    margin-left: 10px;
  }
  .header_uitl_box_02 ul.top_box li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .header_uitl_box_02 ul.top_box li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    border: 1px solid #d2d2d2;
    color: #909090;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    background-color: #fff;
  }
  .header_uitl_box_02 ul.top_box li:last-of-type {
    width: 100%;
    border-radius: 8px;
  }

  .header_uitl_box_02 ul.bottom_box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_uitl_box_02 ul.bottom_box li,
  .header_uitl_box_02 ul.bottom_box li a {
    font-size: 12px;
    font-weight: 300;
    line-height: 14px;
  }
  .header_uitl_box_02 ul.bottom_box li span.phone_num {
    display: inline-block;
    padding-right: 11px;
    font-size: 18px;
    line-height: 22px;
  }
  .btn_gnb_m_close {
    position: absolute;
    width: 60px;
    top: 0;
    right: -60px;
  }
  .btn_gnb_m_close > img {
    width: 100%;
  }
  .header_wrap .gnb_m_footer_box .copy_right {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: #8d8d8d;
    background: url("img/ico_copyright.png") left center/11px auto no-repeat;
  }
  aside.quick_menu_wrap > ul > li > a {
    display: none;
  }
  /*검색*/
  .header_wrap .header_middle > .inner_box {
    position: relative;
  }
  .header_wrap .header_middle .search_box {
    max-width: 30px;
    background-color: #fff;
  }
  .header_wrap .header_middle .search_box.on {
    position: absolute;
    left: 15px;
    max-width: calc(100% - 30px);

    box-sizing: border-box;
    /* border: 1px solid red; */
  }
  .header_wrap .header_middle .search_box.on .btn_search {
  }
  .header_wrap .header_middle .search_box .btn_search {
    display: block;
    right: 0;
  }
  .header_wrap .header_middle .search_box .btn_search_close {
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("/img/btn_search_close.png") center / contain no-repeat;
  }
  .header_wrap .header_middle .search_box.on .btn_search_close {
    display: block;
  }
  .header_wrap .header_middle .search_box.on .btn_search {
    display: none;
  }
  .header_wrap .header_middle .search_box .input_submit {
    display: none;
    right: 50px;
  }
  .header_wrap .header_middle .search_box .input_submit {
    /* right: 0; */
  }
  .header_wrap .header_middle .search_box.on .input_submit {
    display: block;
  }
  .header_wrap .header_middle .search_box.on .input_search {
    width: calc(100% - 40px);
    padding: 12px 50px 14px 20px;
  }
  .header_wrap .header_middle .search_box .input_search {
    width: 0;
    padding: 0;
    border: 0;
  }
  .header_wrap .header_middle .search_box .label_search {
    /* position: absolute; */
    width: 0;
    height: 0;
    font-size: 0;
    visibility: hidden;
    text-indent: -999999;
  }

  .header_wrap .header_middle .logo_box h1 > a {
    display: inline-block;
    margin: 10px 0 11px;
    text-align: center;
  }
  .header_wrap .header_middle .logo_box img.logo {
    display: none;
  }
  .header_wrap .header_middle .logo_box img.logo_m {
    display: inline-block;
    width: 100%;
    max-width: 104px;
    /* max-width: 94px; */
    /* max-width: 26.11%; */
    height: auto;
  }
  .tab_link_box > ul.ul_col_04 > li {
    margin-right: 4px;
    width: calc(25% - 3px);
  }
  .tab_link_box > ul.ul_col_04 > li > a {
    padding: 17px 5px 16px;
    font-size: 12px;
  }
  .tab_link_box > ul.ul_col_06 {
    gap: 4px;
  }
  .tab_link_box > ul.ul_col_06 > li {
    /* margin-right: 4px; */
    width: calc(33.333% - ((4px * 2) / 3));
  }
  .tab_link_box > ul.ul_col_06 > li > a {
    padding: 17px 5px 16px;
    font-size: 12px;
  }

  .footer_wrap {
    padding: 10px 0 20px;
    /* position: absolute;
    bottom: 0; */
  }
  .footer_wrap .content_box .logo_box {
    width: 104px;
    margin: 0 auto 10px;
  }

  .content_wrap .content_container > div.primary_box_04 .content_box {
    padding-left: 0;
    padding-right: 0;
  }

  .modal_box p.tit {
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
  }

  .modal_box {
    padding: 15px;
  }

  .contact_box > li > dl dd > ul > li {
    margin-bottom: 15px;
  }
  .contact_box > li > dl dd > ul > li:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .contact_box > li > dl dt span.tit {
    font-size: 18px;
    line-height: 21px;
  }
  .contact_box > li > dl dt span.sub_tit {
    font-size: 12px;
    line-height: 14px;
  }
  .contact_box > li > dl dd.info_num {
    font-size: 24px;
    line-height: 29px;
  }
  .contact_box > li > dl dd span.cateogory_tit {
    font-size: 14px;
    line-height: 16px;
  }
  .contact_box > li > dl dd span.cateogory_desc {
    font-size: 14px;
    line-height: 16px;
  }
  .contact_box > li > dl dd span.desc {
    font-size: 12px;
    line-height: 18px;
  }
  .contact_box > li > dl dd:last-of-type span.cateogory_tit {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .contact_box > li > dl dd:last-of-type span.cateogory_desc {
    font-size: 12px;
    line-height: 18px;
    width: 100%;
  }
  .contact_box > li:nth-of-type(1) > dl dd {
    display: block;
  }
  .contact_box > li:nth-of-type(2) dl dd {
    margin-bottom: 20px;
  }

  .contact_box > li:nth-of-type(2) dl dd span {
    font-size: 14px;
  }

  .product_clickable_outer .desc_box {
    padding-top: 10px;
  }
  .product_clickable_outer .desc_box .discount_price .currency_unit {
    margin-left: 6px;
  }
  .primary_box_03 .content_box .desc_box .discount_price .currency_unit {
    margin-left: 6px;
  }

  .product_clickable_outer .desc_box .tit_p {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 16px;
  }
  .product_clickable_outer .desc_box .original_price {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 12px;
  }
  .product_clickable_outer .desc_box .discount_rate {
    font-size: 23px;
    line-height: 29px;
  }
  .product_clickable_outer .desc_box .discount_price {
    font-size: 13px;
    line-height: 17px;
  }
  .product_clickable_outer .desc_box .original_price .currency_unit,
  .product_clickable_outer .desc_box .discount_price .currency_unit {
    font-size: 12px;
    line-height: 14px;
  }
  .product_summary_box {
    display: block;
    margin-bottom: 40px;
  }
  .product_summary_box .left_box {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .product_summary_box .right_box {
    max-width: 100%;
    margin-left: 0;
  }
  .product_summary_box .producti_info_box > li {
    font-size: 14px;
  }
  .product_summary_box .option_box .option_item {
    margin-bottom: 10px;
  }
  .product_summary_box .price_box > p > span:nth-of-type(1) {
    font-size: 18px;
    line-height: 20px;
    margin-right: 10px;
  }
  .product_summary_box .price_box > p > span:nth-of-type(2) {
    font-size: 24px;
    line-height: 26px;
    margin-right: 25px;
  }
  .product_summary_box .price_box > p > span:nth-of-type(3) {
    font-size: 14px;
    line-height: 16px;
  }
  .product_summary_box .price_box {
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .product_summary_box .search_box_outer {
    margin-bottom: 30px;
  }
  .product_summary_box .pdViewswiper01 {
    padding: 15px 0 0;
  }
  .tab_link_box > ul {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 360px) {
  .content_wrap .content_container > div:not(.primary_box_04),
  .content_wrap .content_container > div.primary_box_04 .content_box,
  .header_wrap > .header_bottom,
  .header_wrap > .header_top > div,
  .header_wrap > .header_middle > div,
  .footer_wrap > div {
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }

  .content_wrap .content_container > div.primary_box_01 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 300px) {
  /* .footer_wrap .info_box .quick_menu {
    padding: 0;
  } */
}
