/* 공통 */

* {
  box-sizing: border-box;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
textarea:focus,
textarea:active {
  border-color: none;
  outline: none;
}
input:focus {
  border-color: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
input:active {
  border-color: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
label:focus {
  border-color: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
label:active {
  border-color: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.at-container {
  padding: 0px 20px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_al {
  display: flex;
  align-items: center;
}
.flex_ev {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.flex_sa {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex_co {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex_w {
  display: flex;
  flex-wrap: wrap;
}
.flex_wr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
button {
  background: inherit;
  border: 0;
}
.blind {
  text-indent: -9999999px;
  overflow: hidden;
  z-index: -1;
  height: 1px;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
ul::after,
.cl::after {
  content: "";
  display: block;
  clear: both;
}
.wrap {
  width: 1202px;
  margin: 0 auto;
}
.fl {
  float: left;
}
.tt {
  text-transform: uppercase;
}
.scroll_lock {
  overflow: hidden;
  touch-action: none !important;
  position: fixed;
  width: 100%;
  height: 100%;
}
.suite_num {
  font-family: "SUITE Variable";
  font-weight: 800;
}
.two {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
textarea {
  resize: none;
}

.grid_parts {
  padding-bottom: 60px;
}

.grid_parts .auto_parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 20px 0 32px 0;
}

.grid_parts .auto_parts > li {
  display: flex;
  flex-direction: column;
  padding: 1.2em;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
}

.grid_parts .auto_parts .content_img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.grid_parts .auto_parts .content_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid_parts .auto_parts .content_txt {
  width: 100%;
  padding-top: 0.8em;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.grid_parts .auto_parts .content_txt .sales_section {
  margin-top: auto;
}

/*탑버튼*/
.top {
  position: fixed;
  bottom: 30px;
  right: 396px;
  width: 60px;
  height: 60px;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;
  z-index: 99;
}
.top.view {
  opacity: 1;
}

/*스크롤바*/
body {
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
}

/* 헤더 */
.header {
  width: 100%;
  z-index: 99;
  text-align: center;
  position: relative;
}
.header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #8916bb, #c32ee2, #ed41f8);
  z-index: 10;
}
.header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #8916bb, #c32ee2, #ed41f8);
  z-index: 10;
}

.header .h_top {
  padding-top: 26px;
  line-height: 60px;
  color: #808080;
  font-size: 14px;
  position: relative;
  z-index: 11;
}
.h_top > h1 {
  float: left;
}
.h_top .h_right {
  float: right;
}
.h_top .login {
  display: none;
  margin-right: 120px;
  padding-right: 20px;
}
.h_top .login.on {
  display: block;
}

.h_top .n_login > button {
  float: left;
}
.h_top .n_login > button:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 8px;
  background: #808080;
  position: relative;
  margin: 0 20px;
}

.lang {
  margin-top: 12px;
  border-radius: 5px;
  border: 1px solid #dedede;
  transition: 0.3s;
  text-transform: uppercase;
  text-align: left;
  text-indent: 15px;
  background-color: #f8f8f8;
  width: 120px;
  overflow: hidden;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
}
.lang.on {
  height: 160px;
}
.lang_li li:first-child {
  position: relative;
}
.lang_li li.on {
  background-color: #d35aff;
  color: #fff;
}
.lang_li li:first-child::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  background: url(/org/img/arrow_down.png) no-repeat center;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  background-size: cover;
  z-index: 1;
}
.lang_li li:first-child.on::after {
  background: url(/org/img/arrow_up.png) no-repeat center;
  background-size: cover;
}
.lang_li {
  text-transform: uppercase;
  background-color: #f8f8f8;
  width: 100%;
  line-height: 40px;
}
.lang_li li a {
  display: block;
}

/*대메뉴, 소메뉴*/
.nav .gnb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .gnb > li {
  position: relative;
  line-height: 50px;
  font-weight: 700;
  padding: 8px 0 5px;
}
.nav .gnb > li.on > a {
  color: #6100b5;
}
.nav .gnb > li > a {
  font-size: 18px;
  display: block;
  padding: 5px 0 3px;
}

.nav .snb {
  position: absolute;
  top: 100%;
  margin-top: 25px;
  color: #202020;
  font-weight: 100;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 10;
  transition: 0.3s;
  height: 0;
  overflow: hidden;
}
.nav .snb.on {
  height: 185px;
}
.nav .snb > li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #666666;
  padding: 13px 0;
}
.nav .snb > li:hover a,
.nav .snb > li:focus a,
.nav .snb > li:active a {
  color: #7900b5;
}

.header .back_bg {
  position: absolute;
  top: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.3s;
  height: 0;
  overflow: hidden;
}
.header .back_bg.on {
  height: 200px;
}

/*헤더 태블릿~모바일버전*/
.header .mob_menubtn {
  width: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3%;
  z-index: 100;
}
.header .mob_menubtn img {
  width: 100%;
  display: block;
}

.mob_menu_bg {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mob_menu {
  position: fixed;
  z-index: 101;
  background: #fff;
  width: 50%;
  overflow-y: scroll;
  height: 100vh;
  transition: 0.3s;
  display: none;
  top: 0;
  left: 0;
}
.mob_menu.on {
  display: block;
}
.mob_menu::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  background: linear-gradient(to right, #8916bb, #c32ee2, #ed41f8);
}

.mob_menu .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 5%;
  background: #dd11f0;
}
.mob_menu .close > button {
  width: 100%;
  height: 100%;
}
.mob_menu .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #fff;
}
.mob_menu .close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mob_menu .close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m_menu_top {
  padding: 20px; /*7%*/
  padding-bottom: 0;
}
.m_menu_top .lang {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  width: 70%;
}

.m_menu_bottom {
  padding-bottom: 80px;
}

.mob_contact {
  display: block;
  width: 100%;
  background: #f7e5ff;
  padding: 0 14px 0 15px;
  text-align: left;
  line-height: 40px;
  font-family: "Pretendard-Medium";
  border-radius: 5px;
  color: #6100b5;
  position: relative;
  margin: 0 5.56% 20px;
  width: 89.99%;
}
.mob_contact::before {
  content: "";
  display: inline-block;
  background: url(/org/img/mob_contact.png) no-repeat center / cover;
  width: 27px;
  height: 20px;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
.mob_contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 7px;
  height: 10px;
  background: url(/org/img/mob_arrow.png) no-repeat center / cover;
}

.mob_gnb {
  width: 100%;
  padding: 60px 0 20px;
}
.mob_gnb > li {
  padding: 5px 0;
}
.mob_gnb > li:first-child {
  padding-top: 0;
}
.mob_gnb > li:last-child {
  padding-bottom: 0;
}
.mob_gnb > li > a {
  font-family: "Pretendard-Medium";
}
.mob_gnb > li.on > a {
  font-family: "Pretendard-SemiBold";
  color: #6100b5;
}

.mob_snb {
  background: #f5f5f5;
  color: #3d1313;
  font-size: 12px;
  font-family: "Pretendard-Light";
  padding: 10px 0 10px 10px;
  display: none;
  margin-top: 10px;
}
.mob_snb.on {
  display: block;
}
.mob_snb > li {
  padding-bottom: 3px;
}
.mob_snb > li:last-child {
  padding-bottom: 0;
}

.m_shipping {
  width: 100%;
  background: linear-gradient(to right, #bc66c5, #aa4de7, #9d3bff);
  padding: 12px 20px;
  color: #fff;
  font-family: "Pretendard-Medium";
  margin-bottom: 6px;
}
.m_shipping > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_shipping > a > div {
}
.m_shipping > a > div span:last-child {
  font-size: 10px;
  opacity: 0.75;
  font-family: "Pretendard-Light";
  position: relative;
  bottom: 1px;
  margin-left: 4px;
}
.m_shipping > a > span {
}
.m_shipping > a > span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(/org/img/mob_arrow_right.png) no-repeat center / contain;
  position: relative;
  right: -8px;
  top: 2px;
}

.m_currency {
  padding: 10px 20px;
  background: linear-gradient(to left, #683bff, #844ee7, #a966c5);
}
.m_currency .m_crc_top {
  color: #fff;
  font-family: "Pretendard-Medium";
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_currency .m_crc_top span {
}
.m_currency .m_crc_top span:last-child {
  font-family: "SUITE-Regular";
  font-size: 10px;
  margin-top: 3px;
}
.m_crc_btm .money > div {
  float: left;
  width: calc(50% - 5px);
  font-size: 12px;
  line-height: 30px;
}
.m_crc_btm .money > div .left {
  text-indent: 10px;
  width: 20%;
}
.m_crc_btm .money > div .right {
  width: 80%;
  padding-right: 10px;
  text-align: right;
}
.m_crc_btm .money > div .right span {
  padding-right: 0;
}
.m_crc_btm .money .usd {
  margin-right: 10px;
}

.m_info {
  width: 100%;
  padding: 20px 35px 22px;
  display: flex;
  align-items: center;
  color: #acacac;
  font-size: 12px;
  font-family: "Pretendard-Light";
  text-align: center;
  position: relative;
  align-items: center;
}
.m_info > button {
  width: 50%;
}
.m_info .m_use {
  margin-bottom: 0;
}
.m_info .m_use::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 10px;
  background: #acacac;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.m_channel {
  padding: 0 10px;
  display: flex;
  justify-content: end;
  align-items: end;
  padding-bottom: 10px;
}
.m_channel > span {
  font-family: "Poppins", sans-serif;
  color: #acacac;
  font-size: 8px;
  margin-right: 6px;
  text-wrap: nowrap;
}
.m_channel > ul {
  width: 58%;
}
.m_channel > ul > li {
  float: left;
  margin-left: 4px;
  width: calc((100% - 12px) / 4);
}
.m_channel > ul > li:last-child {
  margin-left: 0;
}

.mob_back_bg {
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  left: 0;
}
.mob_back_bg.view {
  display: block;
}
.mob_back_bg2 {
  position: fixed;
  z-index: 101;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  left: 0;
}
.mob_back_bg2.view {
  display: block;
}

/*헤더 팝업-join*/
/*팝업 공통*/
.scroll_bg {
  height: 350px;
  overflow-y: scroll;
}

.pop_sub3_title {
  font-size: 1.5em;
  color: #202020;
  font-family: "Pretendard-Medium";
  margin-bottom: 0.5em;
  display: block;
}

.pop_textarea > textarea:focus,
.pop_textarea > textarea:active,
.pop_textarea > input:focus,
.pop_textarea > input:active {
  border-color: #ea53ef;
}

.pop_close {
  width: 5%;
  position: absolute;
  top: 5%;
  right: 5%;
}
.pop_close > img {
  width: 100%;
}

.pop_bg {
  width: 600px;
  background: white;
  border-radius: 10px;
  overflow-x: hidden;
  font-size: 12px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  display: none;
}
.pop_bg.on {
  display: block;
}
.pop {
  padding: 14.63% 12.5% 10.97%;
  box-sizing: border-box;
}
.pop_txt {
  padding-bottom: 10%;
}
.pop_txt .pop_title {
  font-family: "Pretendard-Bold";
  color: #6100b5;
  font-size: 4em;
  text-align: center;
} /*52px*/
.pop_txt .pop_sub_title {
  font-family: "Pretendard-Light";
  color: #202020;
  font-size: 2em;
  display: block;
  text-align: center;
  padding-top: 2%;
}
.pop_textarea {
  width: 100%;
}
.pop_textarea > input {
  border-color: #ea53ef;
}
span.no_answer.on {
  color: #ea53ef;
  display: block;
}
span.no_answer {
  font-size: 1.3em;
  margin-top: 5px;
  font-family: "Pretendard-Light";
  color: transparent;
  display: none;
}
span.no_blank.on {
  color: #ea53ef;
  display: inline-block;
}
span.no_blank {
  font-size: 1.3em;
  margin-top: 10px;
  position: relative;
  color: transparent;
  font-family: "Pretendard-Light";
  display: none;
}
span.no_blank.on::before {
  display: inline-block;
}
span.no_blank::before {
  content: "";
  display: none;
  position: relative;
  width: 6px;
  height: 5px;
  background: url(/org/img/bullet.png) no-repeat center / cover;
  margin-right: 6px;
  bottom: 3px;
}
.pop_textarea .write {
  width: 100%;
}
.pop_textarea input {
  line-height: 3.8em;
  text-indent: 1.6em;
  font-size: 1.3em;
  border: 1px solid #dedede;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Pretendard-Light";
}
.pop_textarea input.on {
  border-color: #ea53ef;
}
.pop_textarea input::placeholder {
  color: #acacac;
}
.psw_form,
.contirm_form {
  position: relative;
}

.form_txt {
  font-size: 1.4em;
  color: #acacac;
  margin-top: 0.8em;
}
.form_txt > span {
  display: inline-block;
  color: #6100b5;
}

.btn_shrot.pop_btn {
  margin-top: 5%;
}
.pop_btn {
  margin-top: 10%;
  display: flex;
  justify-content: space-between;
}
.pop_btn > button {
  width: calc((100% - 1.67%) / 2);
  padding: 0.8em 0;
  font-size: 2em;
  box-sizing: border-box;
  font-family: "Pretendard-Bold";
}
.pop_btn .cancel,
.pop_btn .login_go {
  color: #6100b5;
  border: 2px solid #6100b5;
  background: #fff;
}
.pop_btn .next {
  background: #6100b5;
  color: #fff;
}

/*join-info팝업*/
.info_form {
  display: flex;
  flex-wrap: wrap;
}

.info_form .join_info_sel {
  position: relative;
  display: block;
  width: 100%;           /* 부모 form 폭 기준으로 꽉 채우기 */
  box-sizing: border-box;
}

/* 선택된 국가코드 버튼 */
.country_select_btn {
  width: 100%;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

/* 드롭다운 박스 */
.country_dropdown {
  width: 450px;
  position: absolute;
  left: 0;
  right: 0;                        /* 왼쪽~오른쪽 꽉 채우기 */
  top: calc(100% + 4px);           /* 버튼 바로 아래 */
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 9999;                   /* 다른 요소 위에 확실히 올라오게 */
}

/* 열렸을 때 */
.country_dropdown.open {
  display: flex;
}

#countryDropdown #countrySearchInput {
  border: none;
  border-radius: 0;
  font-size: 1em;
}

.country_search_input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid #eee;
  outline: none;
}

/* 드롭다운 안에 있는 리스트는 무조건 보이게 */
.country_dropdown .arrow {
  display: block !important;   /* 기존 display:none; 씹어먹기 */
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  height: 150px;
}

/* 리스트 아이템 스타일 */
.country_dropdown .arrow li {
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.country_dropdown .arrow li:hover {
  background: #f5f5f5;
}

#countryList li {
  padding: 8px 10px;
  cursor: pointer;
}

#countryList li:hover {
  background: #f5f5f5;
}


.info_form .join_info_sel {
  width: 21%;
  line-height: 3.8em;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  height: auto;
  text-indent: 1.6em;
  margin-right: 4%;
  position: relative;
}
.info_form .join_info_sel > a {
  width: 100%;
  padding: 9%;
}
.join_info_sel.c_search_li > a::after {
}

.info_form .first {
  width: calc((100% - 20px) / 2);
  margin-right: 17px;
  margin-bottom: 1.3em;
}
.info_form .last {
  width: calc((100% - 20px) / 2);
  margin-bottom: 1.3em;
}
.select_wrapper {
  float: left;
  position: relative;
  width: 20.5%;
  margin-right: 4.5%;
  line-height: 3.8em;
  font-size: 1.3em;
}
.select_wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.6em;
  width: 14px;
  height: 10px;
  background: url(/org/img/nation.png) no-repeat center / cover;
  pointer-events: none;
}
.select_wrapper .nation {
  width: 100%;
  height: 100%;
  display: block;
  padding-left: 1.2em;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-family: "Pretendard-Medium";
}
.select_wrapper .nation > option {
  border: 1px solid #dedede;
  line-height: 3.8em;
  display: block;
}
.info_form .phone {
  width: 75%;
}
.info_form > span {
  color: #ea53ef;
  display: none;
}
.info_form > span.on {
  display: block;
}

/*join-info-wrong*/
.info_form > input.wrong {
  border: 1px solid #ea53ef;
}
.info_form > select.wrong {
  border: 1px solid #ea53ef;
}

/*메인 비주얼*/
.main {
  background: url(/org/img/visual-min.png) no-repeat center / cover;
  width: 100%;
  height: 800px;
  position: relative;
  margin-bottom: 101px;
}

.main .main_txt {
  text-align: center;
  font-size: 30px;
  color: #fff;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main .main_txt span {
  font-family: "Pretendard-Bold";
  display: block;
  font-size: 54px;
  font-weight: 900;
}

/*메인비주얼-fixed*/
.main .contect {
  position: fixed;
  top: 238px;
  left: 196px;
  z-index: 20;
}
.main .contect img {
  width: 140px;
  height: 134px;
}

.main .fixed_area {
  position: fixed;
  top: 250px;
  right: 80px;
  width: 250px;
  z-index: 20;
}
.main .fixed_area > div {
  width: 100%;
  margin-bottom: 20px;
}

.fixed_area .shipping {
  width: 100%;
  height: auto;
  background: url(/org/img/shipping_bg.png) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.fixed_area .shipping::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -32px;
  background: url(/org/img/boat.png) no-repeat center;
  width: 282px;
  height: 138px;
  background-size: cover;
}
.fixed_area .shipping a {
  position: relative;
  z-index: 1;
}
.fixed_area .shipping a > span {
  font-size: 10px;
  padding-top: 22px;
  display: block;
}
.fixed_area .shipping a > span::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 3px;
  height: 5px;
  background: url(/org/img/arrow_right.png) no-repeat center / cover;
  margin-left: 6px;
}
.fixed_area .shipping_txt {
  text-transform: uppercase;
}
.fixed_area .shipping_txt h3 {
  font-size: 24px;
  font-weight: 800;
}
.fixed_area .shipping_txt span {
  font-family: "Pretendard-Light";
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.fixed_area .currency {
  background: url(/org/img/currency.png) no-repeat left center;
  color: #fff;
  background-size: cover;
  padding: 20px;
  padding-bottom: 22px;
  cursor: default;
}
.fixed_area .currency h3 {
  font-size: 24px;
  text-transform: uppercase;
}
.fixed_area .currency > a {
  cursor: default;
}
.fixed_area .currency > a > span {
  font-family: "SUITE-Regular";
  font-size: 12px;
  margin-top: 6px;
  display: block;
  text-align: right;
  margin-bottom: 10px;
}
.money .usd {
  margin-bottom: 4px;
}
.money > div {
  display: inline-block;
  width: 100%;
  line-height: 30px;
  border: 1px solid #dedede;
  background: #f8f8f8;
  border-radius: 5px;
  color: #808080;
  font-family: "Pretendard-Light";
  font-size: 14px;
}
.money > div .left {
  float: left;
  text-transform: uppercase;
  text-indent: 15px;
}
.money > div .right {
  float: right;
  padding-right: 15px;
}
.money > div .right span {
  font-family: "SUITE-Medium";
  color: #6100b5;
  padding-right: 5px;
}

.fixed_area .credit a {
  float: left;
  width: calc(50% - 5px);
}
.fixed_area .credit a img {
  display: block;
  width: 100%;
}

.fixed_area .credit a:first-child {
  margin-right: 10px;
}
.fixed_area .credit a:nth-child(3) {
  padding-top: 10px;
}
.fixed_area .credit a:last-child {
  margin-left: 10px;
  padding-top: 10px;
}

/*fixed_area pop 팝업*/
.contact_bg {
  height: calc(100vh - 8%);
  overflow-y: hidden;
}
.contact_bg {
  height: auto;
  overflow-y: visible;
}
.contact_bg .pop_close {
  top: 2.5%;
  right: 4%;
}
.contact_pop {
  padding: 10% 12.5% 9%;
}
.pop_sub2_title {
  text-align: center;
  font-family: "Pretendard-Light";
  color: #888888;
  font-size: 1.16em;
  margin-top: 0.2em;
}
.sub3_title {
  font-size: 1.5em;
  color: #202020;
  font-family: "Pretendard-Medium";
  margin-bottom: 0.5em;
  display: block;
}
.contact_area {
  width: 100%;
  margin-bottom: 2.5em;
}
.pop_call_info {
  width: 100%;
  padding: 5%;
  box-sizing: border-box;
  background: #f8f8f8;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.pop_call_info .call_img {
  float: left;
  width: 19.5%;
  margin-right: 5%;
}
.pop_call_info .call_txt {
  float: left;
  width: 70%;
  padding: 3% 0;
  color: #202020;
}
.pop_call_info .call_txt h3 {
  font-family: "Pretendard-Medium";
  font-size: 1.8em;
}
.pop_call_info .call_txt span {
  font-size: 1.2em;
  font-family: "Pretendard-Light";
}
.contact_bg .whatsapp_color {
  color: #25d366;
}
.contact_bg .scroll_bg {
  height: auto;
  overflow: visible;
}

.contact_form > input {
  margin-bottom: 0.5em;
  text-indent: 1.3em;
}
.contact_form .question {
  height: 200px;
  font-family: "Pretendard-Light";
  font-size: 1.3em;
  padding: 1em 1em 0.5em 1.3em;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.contact_form .question::placeholder {
  color: #acacac;
}
.contact_bg .pop_close {
}

.contact_bg .pop_btn {
  margin-top: 6%;
  width: 100%;
  background: #fff;
}
.contact_bg .pop_txt {
  margin-bottom: 6%;
}

/*contact 완료 메세지*/
.send_cmp_bg .pop_btn {
  margin-top: 3%;
}
.send_cmp_bg .pop {
  padding: 10% 12%;
}
.cancel.onebtn {
  border: none;
  background: #6100b5;
  color: #fff;
  margin: 0 auto;
}

/*credit card 크레딧카드 팝업*/
.credit_bg .pop_title {
  line-height: 125%;
  margin-bottom: 3%;
}
.credit_bg .pop_btn {
  margin-top: 2%;
}
.credit_bg .cancel {
  width: 100%;
}

/*멤버십 가입 알림창*/
.joinmem_bg .pop_btn {
  margin-top: 2%;
}

/*장바구니 확인 알림창 basket cart*/
.cart_bg .pop {
  padding: 13% 12.5% 10%;
}
.cart_bg .pop_btn {
  margin-top: 3%;
}

/*export 자세히 보기 팝업*/
.export_dti_bg {
  width: 720px;
  height: calc(100vh - 2%);
}
.export_dti_bg .pop_close {
  top: 3%;
  right: 4%;
  width: 4%;
}
.export_dti_bg .pop {
  padding: 12.63% 4.5% 4.97%;
}
.export_dti_img {
  width: 100%;
  height: 800px;
  border-radius: 0;
}
.export_dti_img > img {
  width: 100%;
  height: 100%;
}
.export_dti_bg .pop_btn {
  margin-top: 6%;
}
.export_dti_bg .cancel {
  width: 37%;
}

/*경매영역 Auction*/
.auction {
  padding-bottom: 100px;
}
.title {
  font-family: "Pretendard-Bold";
  font-size: 45px;
  text-align: center;
  color: #202020;
  padding-bottom: 20px;
}
.sub_title {
  font-size: 24px;
  color: #666;
  text-align: center;
  display: block;
}
.auction .week_list_wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 0;
}
.auction .week_list {
  background: #f8f8f8;
  margin-top: 45px;
}
.week_list .wrap {
  position: relative;
}
.week_list .wrap > span {
  padding: 5px 0;
  background: #a640ff;
  color: #fff;
  text-transform: uppercase;
  border-radius: 15px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  text-align: center;
}
.week_list ul {
  text-align: center;
  padding-top: 5px;
  font-size: 0;
}
.week_list ul li {
  /* float: left; */
  width: calc(100% / 7);
  font-size: 18px;
  color: #b2b2b2;
  padding: 10px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.week_list ul li.on {
  background: #fff;
  border: 2px solid #d2d2d2;
  border-radius: 15px;
}
.week_list ul li.on::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-right: 12px solid #d2d2d2;
}
.week_list ul li span {
  display: block;
  width: 100%;
  padding: 17px 0;
  border-radius: 8px;
}
.week_list ul li span:first-child {
  margin-bottom: 6px;
  text-transform: uppercase;
}
.week_list ul li.on span:first-child {
  background: #6100b5;
  color: #fff;
  font-weight: 800;
}
.week_list ul li span:last-child {
  /* margin-top: 20px; */
  height: 90px;
  padding: 0;
}
.week_list ul li:nth-child(5) span:last-child {
  /* padding: 15% 0 20%; */
  /* margin-top: 0; */
}
.week_list .wrap {padding: 15px 0;}
.grid {display: grid; width: 100%; height: 100%; justify-items: center; align-content: center;}
.auction .week_list_wrap.edit0513 {overflow: visible;}

.a_wrap {
  width: 1202px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}
.a_wrap .auction_txt {
  position: absolute;
  right: 0;
  bottom: calc(100% + 20px);
}
.a_wrap .auction_txt > div {
  float: left;
  font-size: 16px;
  color: #202020;
}
.a_wrap .auction_txt > div:first-child {
  margin-right: 20px;
}
.a_wrap .auction_txt span {
  font-family: "SUITE Variable";
  font-weight: 900;
  color: #ea53ef;
  padding-left: 6px;
}
.a_wrap .auction_li {
  margin-top: 73px;
}
.a_wrap .auction_li li {
  border: 2px solid #ececec;
  border-bottom-width: 0px;
  box-sizing: border-box;
  width: 50%;
  float: left;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 196px;
}
.a_wrap .auction_li li:nth-child(odd) {
  border-right-width: 1px;
}
.a_wrap .auction_li li:nth-child(even) {
  border-left-width: 1px;
}
.a_wrap .auction_li li:nth-child(9),
.a_wrap .auction_li li:nth-child(10) {
  border-bottom-width: 2px;
}

.auction_li li .left {
  padding: 27px 0 27px 20px;
  /* width: 25%; */
}
.auction_li li .left span {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #999;
  color: #fff;
  font-family: "Pretendard-Bold";
  font-size: 10px;
  padding: 4px;
}
.auction_li li .left img {
  width: 130px;
  height: 76px;
}

.auction_li li .right {
  width: 75%;
  padding-left: 10px;
  box-sizing: border-box;
}
.kate {
  padding: 10px 0;
}
.kate span {
  /* width: 54px; */
  line-height: 18px;
  font-size: 8px;
  color: #fff;
  background: #a640ff;
  box-sizing: border-box;
  padding: 0 7px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  font-family: "SUITE-Regular";
}
.kate span:first-child {
  font-weight: 900;
  font-family: "Pretendard-Bold";
}
.kate span:last-child {
  font-family: "SUITE-ExtraBold";
  font-weight: 800;
}

.right > a {
  display: block;
  padding-top: 5px;
  text-transform: uppercase;
  font-size: 12px;
}
.sub_kate {
  font-size: 10px;
  color: #999;
  padding-top: 5px;
}
.sub_kate span:after {
  content: "";
  display: inline-block;
  position: relative;
  background: #c8c8c8;
  width: 1px;
  height: 6px;
  top: 0;
  margin: 0 4px 0 6px;
}
.sub_kate span:last-child::after {
  display: none;
}
.sub_kate span.n_tt {
  text-transform: none;
}

.right .kate_bottom {
  /* position: relative; */
  padding-top: 5px;
}
.right .kate_bottom > button {
  /* position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); */
  width: 28px;
  display: inline-block;
  vertical-align: top;
}
.right .kate_bottom > button a {
  display: block;
  width: 28px;
  height: 28px;
  background: url(/org/img/backet.png) no-repeat center / cover;
}
.right .kate_bottom > button.no_cart a {
  background: url(/org/img/cart_gray.png) no-repeat center / cover;
}
.right .kate_bottom > span {
    width: calc(100% - 32px);
    text-align: right;
    display: inline-block;
    vertical-align: top;
  /* float: right; */
  font-family: "SUITE-Regular";
  font-size: 30px;
  color: #6100b5;
  padding-right: 20px;
}

/*더보기 more*/
.more {
  width: 100%;
  background: #fff;
  border: 2px solid #ececec;
  color: #666;
  text-align: center;
  line-height: 60px;
  margin-top: 20px;
  font-size: 18px;
  overflow: hidden;
  font-weight: 800;
  opacity: 0.9;
}
.more a {
  display: block;
}

/*브이아이피 제품 product_vip*/
.vip_prd {
  background: url(/org/img/car_slide_bg.png) no-repeat center / cover;
  width: 100%;
}
.c_wrap {
  width: 1048px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}
.vip_prd .car_slide {
  position: relative;
  padding: 60px 0 0;
  width: 100%;
}
.vip_prd .car_slide .prev {
  position: absolute;
  right: 100%;
}
.vip_prd .car_slide .next {
  position: absolute;
  left: 100%;
}

.c_wrap .swiper-slide {
  padding: 40px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #ececec;
}

.c_kate {
  font-size: 12px;
  color: #fff;
}
.c_kate b {
  line-height: 24px;
  font-weight: bold;
  font-family: "Pretendard-Bold";
  text-align: center;
  background: #ff53b4;
  border-radius: 5px;
  display: inline-block;
  padding: 0 10px;
  font-weight: 500;
}
.c_kate span {
  display: inline-block;
  width: 74px;
  line-height: 24px;
  padding: 0 7px;
  box-sizing: border-box;
  background: #a640ff;
  border-radius: 5px;
  text-align: center;
  font-weight: 800px;
}
.c_kate span:first-of-type {
  font-weight: 900;
  text-transform: uppercase;
}
.c_txt {
  padding-top: 12px;
  font-family: "Pretendard-Medium";
}
.vip_prd .c_txt span {
  line-height: 120%;
  width: 74%;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.c_txt span {
  font-size: 20px;
  line-height: 0;
}

.car_img_bg {
  height: 176px;
  margin: 10px 0;
}

.car_img {
  width: 100%;
  height: 100%;
  opacity: 0.99;
  object-fit: contain;
}
.swiper-slide .new_mark {
  top: 15px;
  right: 15px;
  z-index: 15;
}
.swiper-slide.on .new_mark {
  display: block;
}
.car_list {
  border-bottom: 2px solid #ececec;
}
.car_list > li {
  padding-bottom: 20px;
  font-size: 16px;
}
.car_list > li::after {
  content: "";
  display: block;
  clear: both;
}
.car_list > li:last-child {
  padding-bottom: 15px;
}
.car_list > li > b {
  float: left;
  color: #202020;
  display: block;
  font-family: "Pretendard-Regular";
}
.car_list > li > span {
  float: right;
  color: #666;
  display: block;
  font-family: "Pretendard-Regular";
}
.car_list .tt {
  text-transform: uppercase;
}

.price {
  font-family: "SUITE-Regular";
  color: #6100b5;
  font-size: 42px;
  text-align: right;
  padding: 15px 0;
}

.c_bottom::after {
  content: "";
  display: block;
  clear: both;
}
.cart_btn {
  float: left;
  width: calc(20% - 10px);
  display: block;
  position: relative;
  top: 10px;
}
.cart_btn > a {
  width: 35px;
  height: 30px;
  display: block;
  object-fit: cover;
  background: url(/org/img/backet.png) no-repeat center / cover;
}
.cart_btn.no_cart > a {
  background: url(/org/img/cart_gray.png) no-repeat center / cover;
}
.c_bottom .detail_btn {
  float: right;
  background: #dc84fc;
  border: none;
  border-radius: 10px;
  width: calc(80% - 10px);
  display: block;
  line-height: 44px;
  color: #fff;
  font-family: "Pretendard-Medium";
}

/*브이아이피 슬라이드 네비게이션*/
/*원래 화살표*/
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next > img,
.swiper-button-prev > img {
  width: 100%;
}

/*수정 화살표 img*/
.c_btn_next,
.c_btn_prev {
  width: 48px;
  height: 44px;
  object-fit: cover;
}
.c_btn_next {
  right: -76px;
  transform: rotate(180deg);
}
.c_btn_prev {
  left: -76px;
}

/*전문가 실적 export performance*/
.e_container {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.export {
  margin-bottom: 100px;
}
.export .wrap {
  background: #fef6ff;
  padding: 100px 0;
  position: relative;
}
.export .title {
  color: #6100b5;
  padding-bottom: 60px;
}
.export .title > span {
  color: #c831e6;
}
.export_list .swiper-slide > img {
  display: block;
  border-radius: 10px;
}
.export_list .swiper-slide > span {
  display: inline-block;
  padding-top: 20px;
  font-family: "Pretendard-Light";
  color: #202020;
}
.export_list .swiper-slide > span b {
  font-family: "Pretendard-SemiBold";
}

/*전문가 실적 버튼*/
.e_btn_next,
.e_btn_prev {
  width: 18px;
  height: 28px;
  object-fit: cover;
  top: var(--swiper-navigation-top-offset, 59%);
  right: var(--swiper-navigation-sides-offset, 20px);
}

.e_btn_prev {
  left: var(--swiper-navigation-sides-offset, 20px);
  transform: rotate(180deg);
}

/*실제 활동 act*/
.act {
  padding-bottom: 100px;
}
.act .title {
  padding-bottom: 60px;
}
.act .wrap > ul {
  border: 2px solid #ececec;
  background: #fff;
}
.act .wrap > ul > li {
  border-right: 2px solid #ececec;
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 30px;
}
.act .wrap > ul > li:last-child {
  border-right: none;
}
.act .act_txt {
  display: block;
  color: #202020;
  font-size: 30px;
  font-family: "Pretendard-Medium";
  line-height: 120%;
}
.act .total {
  display: block;
  color: #6100b5;
  font-family: "SUITE-Medium";
  font-size: 42px;
  text-align: right;
  padding-top: 80px;
}

/*news*/
.news {
  margin-bottom: 100px;
}
.news .title {
  padding-bottom: 60px;
}
.news .wrap {
  position: relative;
}
.news .more_btn {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(/org/img/btn_more.png) no-repeat center;
  background-size: cover;
  top: 1%;
  right: 0;
}
.news_area {
  float: left;
  width: calc(50% - 30px);
  position: relative;
}
.news_area.notice {
  margin-right: 60px;
}
.news_area .sub_t {
  font-family: "Pretendard-Bold";
  font-size: 24px;
  color: #c8c8c8;
  padding-bottom: 20px;
  border-bottom: 2px solid #ececec;
}
.news_area > ul {
  padding-top: 30px;
}
.news_area > ul > li {
  margin-bottom: 10px;
}
.news_area > ul > li.on .no_img {
  display: none;
}
.news_area > ul > li.on .yes_img {
  display: block;
}
.news_area > ul > li > a::after {
  content: "";
  display: block;
  clear: both;
}
.news_area .img_area {
  width: 60px;
  height: 60px;
  background: #f1d5ff;
  border-radius: 10px;
  float: left;
  overflow: hidden;
}

.news_area .img_area > img {
  width: 100%;
  height: 100%;
}

.img_area .no_img {
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
}

.img_area .no_img > img {
  width: 25px;
  height: 20px;
}

.news_area .n_txt {
  float: left;
  padding: 18px;
  font-size: 16px;
}
.news_area .n_txt {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 60px);
}
.news_area.review .n_txt span:first-child {
  width: 62%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_area.notice .n_txt span:first-child {
  width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_area .n_txt span:nth-child(2) {
  font-family: "SUITE-Medium";
  font-size: 12px;
  color: #c8c8c8;
}

/*news list*/
.news_list {
  padding: 60px 0;
  background: #f8f8f8;
}
.news_list .more {
  margin-top: 30px;
  color: #888888;
  border: 2px solid #c8c8c8;
  border-radius: 40px;
}
.news_list .wrap > ul > li {
  float: left;
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
}
.news_list .wrap > ul > li:last-child {
  margin-right: 0;
}
.news_list .thum {
  position: relative;
  width: 100%;
  height: 220px;
}

/*05/22*/
.news_list .wrap > ul > .video_go .thumb {height: 230px; overflow: hidden;}
.news_list .wrap > ul > .video_go .thumb .grid {width: 100%; height: 100%; display: grid; align-content: center; justify-items: center;}
.news_list .wrap > ul > .video_go .thumb .grid a {display: block;}
.news_list .wrap > ul > .video_go .thumb .grid a .grid {width: 100%; height: 100%; display: grid; align-content: center; justify-items: center;}
.news_list .wrap > ul > .video_go .thumb .grid a img.noimg {max-width: inherit; width: 160%;}
@media (max-width: 768px) {
    .news_list .wrap > ul > li {margin-bottom: 15px;}
}
/*05/22*/

.news_list .thum > iframe {
  width: 100%;
  height: 100%;
}

.news_list .thum > img {
  height: 100%;
}
/*video 배경+플레이버튼*/
.thum.on::before,
.video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.news_list .thum.on::after,
.video::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  height: 26%;
  background: url(/org/img/play_btn.png) no-repeat center / contain;
}

.video_txt {
  padding: 20px 0;
  font-family: "Pretendard-Medium";
  font-size: 20px;
  line-height: 125%;
}

.video_bottom::after {
  content: "";
  display: block;
  clear: both;
}
.video_bottom > a {
  float: left;
  color: #a640ff;
}
.video_bottom > a:first-child::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 3px;
  height: 5px;
  background: url(/org/img/tag_arrow.png) no-repeat center;
  background-size: cover;
  margin: 0 10px;
  bottom: 1px;
}
.video_bottom > span {
  float: right;
  color: #c8c8c8;
  font-family: "SUITE-Regular";
}

/*footer 푸터*/
.footer {
  background: #202020;
  color: #acacac;
  padding-top: 60px;
  padding-bottom: 14px;
  position: relative;
  z-index: 19;
}
.footer .f_wrap {
  width: 90%;
  margin: 0 auto;
}

.f_top {
  display: flex;
  justify-content: space-between;
}
.f_top > a {
  display: block;
  width: 14.44%;
  margin-right: 6.39%;
}
.f_top .f_gnb {
  width: 79.17%;
  display: flex;
  justify-content: space-between;
  grid-gap: 6%;
}
.f_top .f_gnb::after {
  display: none;
}
.f_top .f_gnb > li > a {
  display: block;
  font-family: "Pretendard-Medium";
}
.f_gnb .f_snb {
  padding-top: 22px;
}
.f_gnb .f_snb > li {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Pretendard-Light";
}

.f_bottom {
  padding-top: 80px;
}
.f_bottom .sns_list {
  width: 14.44%;
  margin-right: 6.39%;
  float: left;
}
.f_bottom .sns_list li {
  float: left;
  width: 29.27%;
  margin-right: 6%;
}
.f_bottom .sns_list li:last-child {
  margin-right: 0;
}

.f_bottom .f_bottom_m {
  float: left;
  width: 45.93%;
  margin-right: 15.37%;
}
.f_bottom_m .info {
  padding-bottom: 20px;
  font-family: "Pretendard-Medium";
}
.f_bottom_m .info span {
  display: inline-block;
  cursor: pointer;
}
.f_bottom_m .use_txt {
  margin-right: 60px;
  position: relative;
}
.f_bottom_m .use_txt::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background: #888888;
  height: 10px;
  width: 2px;
  right: -25%;
  top: 25%;
}
.f_bottom_m address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
}
.f_bottom_m address .float {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
}
.f_bottom_m .copy {
  padding-top: 5px;
  display: block;
  color: rgba(255, 255, 255, 0.3);
}

.f_bottom .payment {
  float: right;
  width: 17.87%;
}
.f_bottom .payment > span {
  padding-bottom: 8px;
  display: block;
  font-family: "Pretendard-Medium";
}
.f_bottom .payment ul {
  display: flex;
  grid-gap: 6px;
}
.f_bottom .payment ul::after {
  display: none;
}

/*푸터팝업*/
/*제너럴*/
.fpop_bg {
  height: calc(100vh - 4%);
  border-radius: 5px;
  font-size: 14px;
}
.fpop_bg .pop_close {
  top: 2.5%;
  right: 4%;
}
.fpop_pop {
  padding: 13% 6% 6%;
}
.fpop_title {
  font-size: 1.2em;
  color: #888888;
  margin-bottom: 0.6em;
}
.fpop_txt {
  padding: 5% 4% 1%;
  background: #f5f5f5;
  height: 760px;
  overflow-y: scroll;
  color: #888888;
  padding-bottom: 0.8em;
}
.fpop_txt > span {
  word-break: break-all;
}
.fpop_bg .pop_btn {
  margin-top: 8%;
}
.fpop_bg .pop_btn .cancel {
  margin: 0 auto;
  background: #6100b5;
  color: #fff;
  border: none;
}

/*sub1*/
.sub_bg_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  background: url(/org/img/sub_bg_img.jpg) no-repeat center / cover;
}
.sub_bg_blank {
  position: absolute;
  width: 84.38%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 50%;
}

.sub_common {
  background: #f8f8f8;
  margin-bottom: -80px;
  position: relative;
}
.sub_container {
  width: 62.5%;
  margin: 0 auto;
  position: relative;
  background: #fff;
  z-index: 2;
  bottom: 80px;
  padding: 10% 6.5%;
}
.sub_page_title {
  position: absolute;
  top: 62.8%;
  left: 19.5%;
  font-size: 5.2em;
  font-family: "Pretendard-Bold";
  line-height: 100%;
  color: #fff;
  z-index: 1;
}
.link_list {
  position: absolute;
  top: 63%;
  right: 19%;
  color: #fff;
  font-family: "Pretendard-Light";
  font-size: 1.2em;
  z-index: 1;
}
.link_list > li {
  float: left;
}
.link_list > li:first-child a > img {
  display: inline-block;
  width: 18px;
  height: 16px;
}
.link_list > li::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 6px;
  height: 10px;
  background: url(/org/img/sub_arrow.png) no-repeat center / cover;
  margin: 0 10px;
}
.link_list > li:last-child::after {
  display: none;
}

.sub_detail_bg {
  position: relative;
}
.sub_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}
.sub_detail > h3 {
  text-align: center;
}
.detail_title {
  color: #6100b5;
  font-family: "Poppins";
  font-size: 3.42em;
  font-weight: 600;
  line-height: 110%;
}
.sub_detail > img {
  display: block;
  width: 23.33%;
  height: auto;
  text-align: center;
  margin: 6% 0 8%;
}
.sub_common .page_bg {
  position: absolute;
  z-index: 3;
  width: 128%;
  left: -6.5%;
  bottom: -4.5%;
  height: 78.5%;
  background: #ffe8ff;
}
.triangle {
  position: absolute;
  bottom: 73%;
  right: 14.5%;
  width: 0;
  height: 0;
  border-bottom: 80px solid #f5ddf5;
  border-top: 80px solid transparent;
  border-left: 80px solid #f5ddf5;
  border-right: 80px solid transparent;
}

.sub_detail_txt {
  font-size: 1.7em;
  font-family: "Pretendard-Light";
  padding-top: 4%;
}
.sub_detail_txt > span {
  display: block;
  padding-bottom: 1em;
}

.sub1_img {
  width: 100%;
  background: #fff;
  padding: 2%;
  margin-top: 3.5%;
  box-shadow: 0 0 15px -8px #666;
  height: 630px;
}
.sub1_img > .work_img {
  width: 100%;
  height: 560px;
  background: #fcf;
}
.sub1_img > img {
  width: 100%;
  height: 100%;
}

.page_bg2 {
  position: absolute;
  width: 18.75%;
  height: 63.5%;
  bottom: 14%;
  left: 0;
  background: #f5ddf5;
}

/*sub2*/
:root {
  --c-purple: #6100b5;
  --c-pink: #c831e6;
  --c-gray: #666666;
}

/* .sub_main1_2 .sub_page_title{bottom: 99.3%;} */
.sub_main1_2 .sub_container {
  padding: 12% 6.5% 7%;
}
.sub2_list > ul {
  margin-bottom: 2%;
}
.sub2_list > ul > li {
  margin-bottom: 5%;
  background: #fbf6ff;
  padding: 2.5%;
}
.sub2_list > ul > li.c_pink {
  background: #fef6ff;
}
.sub2_list > ul > li.c_gray {
  background: #f5f5f5;
}
.contact_left {
  float: left;
  width: 23%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 11px -8px #666;
  margin-right: 4%;
}
.contact_left .contact_img {
  width: 100%;
  background: url(/org/img/ceo.png) no-repeat center / cover;
  height: 270px;
}
.sub2_list > ul > li.clara .contact_img {
  background-image: url(org/img/sale3_img.png);
}
.sub2_list > ul > li:nth-child(2) .contact_img {
  background-image: url(/org/img/sales2_img.jpg);
}
.sub2_list > ul > li:nth-child(3) .contact_img {
  background-image: url(/org/img/sales3_img.png);
}
.contact_right {
  float: left;
  width: 73%;
}

.c_title {
  font-size: 2.8em;
  font-family: "Pretendard-Bold";
  padding: 0.7em 0 0.5em;
}
.c_title > span {
  font-size: 0.6em;
}
.c_purple .c_title {
  color: var(--c-purple);
}
.c_pink .c_title {
  color: var(--c-pink);
}
.c_gray .c_title {
  color: var(--c-gray);
}

.c_info_list > li {
  display: flex;
  align-items: baseline;
  margin-bottom: 2.6%;
}
.c_info_list > li > p {
  font-size: 1.1em;
  font-family: "Pretendard-Medium";
  width: 120px;
  padding: 6px 8px;
  text-align: center;
  color: #fff;
  margin-right: 6%;
  box-sizing: border-box;
  white-space: nowrap;
  flex: 0 0 120px;
}
.c_purple .c_info_list > li > p {
  background: var(--c-purple);
}
.c_pink .c_info_list > li > p {
  background: var(--c-pink);
}
.c_gray .c_info_list > li > p {
  background: var(--c-gray);
}

.c_info_list > li > span {
  font-family: "Pretendard-Light";
  font-size: 1.7em;
}

.sub_sns_list {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
.sub_sns_list > ul {
  display: flex;
  justify-content: space-between;
}
.sub_sns_list > ul::after {
  display: none;
}
.sub_sns_list > ul > li {
  width: calc(91% / 4);
  margin-right: 3%;
}

.sub_sns_list > ul > li:nth-child(2) > a > div {
  background-image: url(/org/img/sub_facebook.png);
}
.sub_sns_list > ul > li:nth-child(3) > a > div {
  background-image: url(/org/img/sub_insta.png);
}
.sub_sns_list > ul > li:nth-child(4) > a > div {
  background-image: url(/org/img/sub_what.png);
  height: 80px;
}

.sub_sns_list > ul > li:last-child {
  margin-right: 0;
}
.sns_title {
  font-size: 2.5em;
  color: #6100b5;
  font-family: "Pretendard-SemiBold";
  margin-bottom: 1.4em;
}
.sns_img {
  background: url(/org/img/sub_ytb.png) no-repeat center / contain;
  width: 100%;
  height: 6em;
}
.sub_sns_list > ul > li > span {
  display: block;
  margin-top: 14%;
  font-size: 1.7em;
  font-family: "Pretendard-Medium";
}
.sns_linkbtn {
  width: 55%;
  border: 1px solid #6100b5;
  background: #fff;
  display: block;
  margin: 0.7em auto 0;
  color: #6100b5;
  font-size: 0.85em;
  line-height: 2.2em;
  box-sizing: border-box;
}
.sns_linkbtn span {
  display: block;
  font-family: "Pretendard-Bold";
}
.sns_linkbtn_num {
  display: block;
  margin-top: 0.3em;
  font-size: 1.2em;
  color: #202020;
  font-family: "Pretendard-Light";
}

/*sub3*/
.sub_main1_3 .sub_page_title {
  top: -4.7%;
}
.sub_main1_3 .link_list {
  top: -4.5%;
}
.location {
  width: 100%;
  height: 640px;
  margin-bottom: 4.2em;
}
.location .api {
  width: 100%;
  height: 100%;
  /*여기부터 배경색/글씨 css부분*/
  background: #fcc;
  font-size: 150px;
  font-size: 10.7em;
  text-align: center;
  color: #f00;
  font-family: "Pretendard-Light";
}
.l_address {
  background: #f5f5f5;
}
.l_address > ul {
  padding: 3%;
  box-sizing: border-box;
}
.l_address > ul > li {
  display: flex;
  margin-bottom: 2.2%;
  align-items: baseline;
}
.l_address > ul > li:last-child {
  margin-bottom: 0;
}
.l_address > ul > li b {
  color: #6100b5;
  display: block;
  font-family: "Pretendard-Medium";
  font-size: 1.5em;
  font-weight: normal;
  width: 25%;
}
.l_address > ul > li b::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  background: url(/org/img/location_f.png) no-repeat center / contain;
  margin-right: 0.6em;
  top: 4px;
}
.l_address > ul > li:nth-child(2) b::before {
  background-image: url(/org/img/location_s.png);
}
.l_address > ul > li:nth-child(3) b::before {
  background-image: url(/org/img/location_t.png);
}
.l_address > ul > li span {
  color: #202020;
  font-family: "SUITE-Light";
}
.l_address > ul > li:first-child span {
  font-family: "Pretendard-Light";
  font-size: 1.5em;
}

/*mypage 마이페이지*/
.my_info_li > li:first-child .my_input input:active,
.my_info_li > li:first-child .my_input input:focus,
.my_info_li .my_input > input:active,
.my_info_li .my_input > input:focus,
.purchase_con input:active,
.purchase_con input:focus,
.purchase_con textarea:focus,
.purchase_con textarea:active {
  border-color: #ea53ef;
}

.sub_mypage_title {
  left: 19.5%;
  top: 62.8%;
}
.sub_mypage_link_list {
  top: 63%;
  right: 16%;
}

.sub2 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main2_title {
  top: 32.2%;
  left: 19.5%;
}
.sub_main2_link {
  top: 32%;
  right: 19%;
  z-index: 1;
}

.my_list {
  display: flex;
  border: 1px solid #dedede;
}
.my_list.off {
  display: none;
}
.my_list > li {
  width: 25%;
  text-align: center;
  border-right: 1px solid #dedede;
  font-size: 1.2em;
  padding: 1.4% 0;
  color: #acacac;
}
.my_list > li.on {
  background: #6100b5;
  color: #fff;
  border-right: none;
}
.my_list > li:last-child {
  border-right: none;
}
.my_list > li > a {
  display: block;
}
.my_list > li > a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 20px;
  background: url(/org/img/setting_gray.png) no-repeat center / contain;
  position: relative;
  top: 5px;
  margin-right: 0.6em;
}
.my_list > li.on > a::before {
  background: url(/org/img/setting_white.png) no-repeat center / contain;
}
.my_list > li:nth-child(2) > a::before {
  background-image: url(/org/img/shopping_gray.png);
}
.my_list > li:nth-child(2).on > a::before {
  background-image: url(/org/img/shopping_white.png);
}
.my_list > li:nth-child(3) > a::before {
  background-image: url(/org/img/reserved_gray.png);
}
.my_list > li:nth-child(3).on > a::before {
  background-image: url(/org/img/reserved_white.png);
}
.my_list > li:nth-child(4) > a::before {
  background-image: url(/org/img/purchase_gray.png);
}
.my_list > li:nth-child(4).on > a::before {
  background-image: url(/org/img/purchase_white.png);
}

.my_menu {
  padding-top: 6.4em;
  display: none;
}
.my_menu.on {
  display: block;
}
.my_title {
  font-family: "Pretendard-Bold";
  font-size: 2.5em;
  color: #6100b5;
  margin-bottom: 1.8em;
}

.my_info_li {
  color: #202020;
  line-height: 3.1em;
}
.my_info_li > li {
  display: flex;
  align-items: center;
  margin-bottom: 4%;
}
.my_info_li > li:last-child {
  margin-bottom: 0;
}
.my_info_li > li > span {
  font-size: 1.7em;
  width: 72%;
}
.my_info_li .my_input {
  width: 100%;
  position: relative;
}

.my_info_li .my_input.half .my_number > a {
  padding: 9%;
  padding-left: 0;
}

.my_info_li .my_input.half {
  display: flex;
  font-size: 1.3em;
}
.my_info_li .my_input.half .select_wrapper {
  width: 25%;
  margin-right: 3.5%;
}

.my_input.c_search_area {
  padding: 0;
  background-color: transparent;
}

.my_input.c_search_area > .c_search_li {
  width: 23%;
  padding: 2.1%;
  height: auto;
  margin-right: 4%;
  line-height: auto;
}
.my_info_li .my_input.c_search_area > input {
  width: 73%;
}

.my_info_li .my_input > input {
  font-size: 1.1em;
  font-family: "Pretendard-Light";
  text-indent: 8px;
  padding: 1.7%;
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 5px;
}
.my_info_li .my_input > input::placeholder {
  color: #acacac;
}
.my_info_li .my_input > input.black {
  font-size: 1em;
}
.my_info_li .my_input > input.black::placeholder {
  color: #202020;
}
.my_info_li > li:first-child .my_input input {
  background: #f8f8f8;
  border: 1px solid #dedede;
}

.my_input.eye {
  position: relative;
}

.save {
  display: block;
  width: 24%;
  background: #6100b5;
  color: #fff;
  font-size: 1.7em;
  padding: 0.9em;
  margin: 6.5% auto 0;
  font-weight: 700;
}

.pasw_change {
  position: absolute;
  top: 50%;
  right: 3.5%;
  width: 22px;
  height: 15px;
  transform: translateY(-50%);
}

.pasw_change > img {
  display: none;
}

.pasw_change > img.on {
  display: block;
}

/* .eye::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 15px;
  background: url(/org/img/eye_gray.png) no-repeat center / contain;
  right: 3.5%;
} */

/*my2*/
.my2_container .p_preview {
  padding: 2%;
  border: 2px solid #ececec;
  margin-bottom: 5%;
}

.my2_container .p_preview .pre_img {
  width: 260px;
  margin-right: 2%;
}

.my2_container .p_preview .pre_img > img {
  width: 100%;
  height: 100%;
}

.my2_container .kate span {
  font-size: 14px;
  padding: 5px 10px;
  height: auto;
  width: auto;
  line-height: 100%;
}

.my2_container .sub_prd_right {
  width: calc(100% - 240px);
}

.my2_container .sub_prd_right .sub_kate_bg > span {
  font-size: 24px;
  font-family: "Pretendard-Medium";
}

.my2_container .kate span:first-child {
  font-family: "Pretendard-Medium";
  font-weight: 600;
}

.my2_container .sub_kate {
  font-size: 14px;
}

.my2_container .sub_prd_right .price {
  margin-top: 1%;
}
/*마이페이지 팝업*/
.bid_item_pop {
  padding: 14.63% 11.5% 10.97%;
}
.my_save_bg .pop_txt {
  padding-bottom: 5%;
}

.my2_input {
  margin-bottom: 30px;
  line-height: 60px;
}

.my2_input > span {
  display: block;
  font-size: 24px;
  margin-bottom: 1%;
}

.my2_input > input {
  width: 100%;
  font-family: "Pretendard-Light";
  padding: 0 20px;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-size: 16px;
}

.my2_input > input::placeholder {
  color: #acacac;
  font-family: "Pretendard-Light";
}

.my2_input.my2_name {
}

.my2_name > input {
  width: 48.5%;
  float: left;
}

.my2_name > input:first-of-type {
  margin-right: 2.5%;
  display: inline-block;
}

.my2_tel {
  position: relative;
}

.my2_tel > input {
  width: 78%;
  float: right;
}

.my2_pnum {
  position: absolute;
  width: 20%;
}

/* .my2_pnum.on > a {
  border-bottom: none;
} */

/* .my2_pnum > a {
  display: block;
  border: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-radius: 5px;
  padding-left: 20px;
  position: relative;
}

.my2_pnum > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 10px;
  background: url(/org/img/all_arrow.png) no-repeat center / cover;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
} */

.my2_input .c_search_li > a {
  line-height: 62px;
}

.my2_input .c_search_li {
  width: 100%;
}

/* .my_pnum_li {
  height: 150px;
  overflow-y: scroll;
  position: absolute;
  top: 90%;
  border-radius: 5px;
  width: 100%;
  display: none;
  border: 1px solid #dedede;
  border-radius: 5px;
  border-top: none;
  background-color: #fff;
}

.my_pnum_li > li {
  padding-left: 20px;
} */

.my2_buy {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8%;
}

.my2_buy > button {
  width: 28%;
  display: block;
  font-family: "Pretendard-Bold";
  font-size: 24px;
  text-align: center;
  line-height: 80px;
  background: #6100b5;
  color: #fff;
}

.my2_credit_list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10%;
}

.my2_credit_txt {
  width: 29%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #acacac;
}

.my2_credit_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 32%;
}
.my2_credit_img > li {
  width: 21%;
}

.my2_credit_img > li > a {
  display: block;
  cursor: default;
}

.sub_main2_1 input:active,
.sub_main2_1 input:focus,
.sub_main2_1 textarea:focus,
.sub_main2_1 textarea:active {
  border-color: #ea53ef;
}

.sub2_1 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main2_1 .sub_page_title {
  top: -4%;
}
.sub_main2_1 .link_list {
  top: -3.8%;
}
/*bid 팝업*/
.my2_bid_bg {
  width: 800px;
}
.my2_bid_pop {
  padding: 14.63% 7.5% 10.97%;
}
.my2_bid_bg .pop_txt {
  padding-bottom: 5%;
}
.my2_bid_bg .pop_btn {
}
.my2_bid_bg .pop_btn > button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #6100b5;
  width: calc(98% / 3);
}
.my2_bid_bg .pop_btn > button div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 20px;
}
.my2_bid_bg .pop_btn > button div img {
  width: 60%;
  display: block;
}
.my2_bid_bg .pop_btn > button span {
  font-family: "Pretendard-Bold";
  color: #6100b5;
  line-height: 100%;
}

.my2_recip_pop {
  padding: 14.63% 5.5% 10.97%;
}

.pay_pop_sub_title {
  display: block;
  font-size: 13px;
  color: #202020;
  font-family: "Pretendard-Light";
  margin-bottom: 10px;
}

.pp_right.pp_txt {
  color: #6100b5;
}

.my2_recip_pop .pop_btn {
  margin-top: 0;
}
/*영수증 팝업*/
.recip_bg {
  height: calc(100vh - 40px);
  overflow: hidden;
}
.recip_pop {
  height: 100%;
  padding: 13% 6% 10.97%;
}
.recip_pop .pop_close {
  top: 3%;
  right: 5%;
}
.recip_pop .pop_txt {
  height: 500px;
  overflow-y: scroll;
  color: #202020;
  padding-bottom: 0;
}

.pay_pop_con {
  margin-bottom: 1.4em;
}
.pay_pop_title {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  color: #888888;
}
.pay_pop_li {
  background: #f5f5f5;
  padding: 0.7em 1.4em;
}
.pay_pop_li > li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.7em;
  justify-content: space-between;
}
.pay_pop_li .pp_left {
  color: #888888;
}
.pay_pop_li .pp_right {
  text-align: right;
}

.pp_right.suite_num {
  font-weight: 500;
}

.ever_txt {
  color: #acacac;
}
.ever_txt > span {
  display: block;
  margin-bottom: 0.7em;
  white-space: pre-line;
}

.recip_bg {
  overflow-y: hidden;
}
.recip_bg .btn_shrot.pop_btn {
  margin-top: 10%;
}
.recip_bg .cancel.onebtn {
  width: 100%;
}

/*mypage-basket list_off*/
.car_list_off {
  display: none;
  padding: 7% 0;
}
.car_list_off.on {
  display: block;
}
.car_list_off > img {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  display: block;
}
.car_list_off > span {
  display: block;
  font-family: "Pretendard-Light";
  font-size: 1.2em;
  color: #888888;
  text-align: center;
  margin-top: 1.6em;
}

/*mypage-basket*/
.car_list_on {
  display: none;
}
.car_list_on.on {
  display: block;
}
.allchk {
  width: 100%;
  background: #f5f5f5;
  line-height: 60px;
  border-radius: 5px;
  padding-left: 0.7em;
  margin-bottom: 2.14em;
}
.my_menu2 input,
.my_menu3 input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.allchk > label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 1.2em;
  color: #acacac;
}
.allchk > label::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  background: url(/org/img/chk_off.png) no-repeat center / cover;
  top: 6px;
  margin-right: 0.5em;
}
.allchk > input:checked + label:before {
  background-image: url(/org/img/chk_on.png);
}
.sub_kate_bg {
  padding-top: 5px;
  text-transform: uppercase;
  font-size: 12px;
}
.sub_kate > span.n_tt {
  text-transform: none;
}

.my_menu2 .sub_kate span:after {
  top: 0;
}

.my_basket_li {
  border: 2px solid #ececec;
}
.my_basket_li > li {
  display: flex;
  align-items: center;
  height: 130px;
  border-bottom: 2px solid #ececec;
  padding-right: 2%;
}
.my_basket_li > li:last-child {
  border-bottom: none;
}
.sub_prd_left {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.sub_prd_left > label {
  width: 24px;
  height: 24px;
  background: url(/org/img/chk_off.png) no-repeat center / cover;
  position: absolute;
  top: 10px;
  left: 10px;
}
.sub_prd_left > input:checked + label {
  background-image: url(/org/img/chk_on.png);
}
.sub_prd_left > img {
  width: 80%;
  height: 100%;
}

.right_label {
  display: block;
  width: 100%;
}
.sub_prd_right .sub_kate_bg {
  padding-top: 0.6em;
}
.sub_prd_right .kate {
  padding: 0;
}
/*카테고리 추가*/
.sub_prd_right .kate .kate_more {
  width: 64px;
  display: none;
  font-family: "Pretendard-Bold";
  float: right;
  background: #b2b2b2;
}
.sub_prd_right .kate .kate_more.on {
  display: inline-block;
}

.sub_prd_right .price {
  font-size: 2.1em;
  padding: 0;
}

.my_auction_menu {
  margin-top: 4.2em;
}

.my_btn {
  width: 60%;
  margin: 0 auto;
  font-weight: bold;
  font-family: "Noto Sans KR", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4em;
}
.my_btn > button {
  display: block;
  width: 28%;
  border: 2px solid #6100b5;
  background: #fff;
  padding: 1em 0;
  color: #6100b5;
  font-weight: 900;
}
.my_del {
  margin-right: 2%;
}
.my_btn > button.my_buy {
  background: #6100b5;
  color: #fff;
}

.waiting .kate .car_wit {
  background: #ea53ef;
  font-family: "Noto Sans KR", sans-serif;
}
.waiting .kate .car_two {
  font-weight: 900;
  font-family: "Pretendard-Bold";
}

/*mypage_4 마이페이지4 구매완료*/
.sell_com {
  display: none;
}
.sell_com.on {
  display: block;
}
.sell_com_img {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.sell_com_img > img {
  width: 186px;
  height: auto;
  opacity: 0.2;
}

.sell_com_txt {
  text-align: center;
  font-size: 18px;
  font-family: "Pretendard-Light";
  color: #888;
}

.sell_com_txt span {
  display: block;
  margin-top: 10px;
}

.sell_com_btn {
  margin-top: 9em;
}

.sell_com_btn > button {
  background: #6100b5;
  color: #fff;
}

/*구입목록*/
.flex_date {
  font-size: 1.2em;
  color: #888;
  padding: 1em 0 1em 1.5em;
  background: #f5f5f5;
  border-radius: 5px;
  margin: 3.5em 0 1.7em;
}
.p_con_li > ul {
  border: 2px solid #ececec;
}
.p_preview {
  display: flex;
  border-bottom: 2px solid #ececec;
}

.purchase_con {
  display: none;
  position: relative;
}
.purchase_con.on {
  display: block;
}

.purchase_con .pre_img {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase_con .pre_img > img {
  width: 80%;
}
.purchase_con .sub_prd_right {
  width: 63%;
  padding: 0.2em 0;
}
.purchase_con .price {
  padding-right: 0.6em;
}
.after_menu {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-family: "Pretendard-Bold";
  font-size: 0.8em;
  width: 17%;
  padding: 0.5em 0;
}
.after_menu::after {
  display: none;
}
.after_menu > li {
  border: 1px solid #6100b5;
  background: #fff;
  color: #6100b5;
  box-sizing: border-box;
  padding: 0.8em 0;
  width: 90%;
  text-align: center;
  margin-bottom: 0.4em;
  display: block;
}
.after_menu > li:last-child {
  margin-bottom: 0;
}
.after_menu > li.nblock {
  display: none;
}
.after_menu > li.pp {
  background: #6100b5;
  color: #fff;
}
.after_menu > li.nblock.on {
  display: flex !important;
  background: #b2b2b2;
  color: #fff;
  border-color: #b2b2b2;
}
.after_menu > li.off {
  display: none;
}
.after_menu > li > button {
  display: block;
  width: 100%;
  text-transform: uppercase;
}

/*구매 상세보기*/
.purchase_title {
  padding: 1em 1.6em 1em 1em;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 1.2em;
  margin-bottom: 1.6em;
}
.purchase_title > p {
  color: #888;
}
.purchase_title > p > span {
  color: #000;
  margin-left: 1em;
}
.purchase_title > p:first-child {
  float: left;
}
.purchase_title > p:last-child {
  float: right;
}

.purchase_con2 .p_preview {
  margin-bottom: 3.3em;
  border: 2px solid #ececec;
}

.payment_info {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 0 2.8em;
}
.payment_info > h3 {
  font-size: 2.28em;
  color: #666666;
  padding: 0.9em 0;
}

.payment_list {
  padding: 1.6em 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  font-size: 1.2em;
}
.payment_list > li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.3em;
}
.payment_list > li:last-child {
  margin-bottom: 0;
}
.payment_list > li > p {
  color: #888888;
}
.payment_list > li > span {
  color: #202020;
}

.payment_total {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
}
.payment_total > b {
  color: #202020;
  padding: 0.9em 0;
  display: block;
}
.payment_total > h4 {
  font-size: 1.7em;
  color: #6100b5;
  padding: 0.9em 0;
  font-family: "SUITE Variable";
  font-weight: 800;
}

.receipt {
  display: block;
  width: 100%;
  background: #fff;
  border: 2px solid #ececec;
  font-size: 1.2em;
  color: #666666;
  padding: 1em 0;
  margin: 1.6em 0 3.3em;
}

.purchase_con2 .payment_list {
  border-bottom: none;
}

.recip_okbtn {
  width: 100%;
  padding: 4.2em 0 12.8em;
  display: flex;
  justify-content: center;
}
.recip_okbtn > button {
  width: 27%;
  background: #6100b5;
  color: #fff;
  font-family: "Pretendard-Bold";
  text-align: center;
  display: block;
  font-size: 1.7em;
  padding: 1em 0;
}

/*리뷰작성*/
.purchase_back {
  position: absolute;
  bottom: -2%;
  left: 0;
}

.purchase_back button {
  display: flex;
  align-items: center;
}

.purchase_back img {
  width: 20px;
  transform: rotate(180deg);
}

.purchase_back span {
  display: block;
  font-size: 1.5em;
  font-family: "Pretendard-Medium";
  padding-left: 0.5em;
}

.purchase_con3 .purchase_title > p {
  float: left;
}
.purchase_con3 .p_preview {
  border: 2px solid #ececec;
}
.purchase_con3 .sub_prd_right {
  width: 80%;
}
.ph_area {
  width: 100%;
}
.ph_area > form {
  display: flex;
  align-items: center;
}
.ph_area > form > label {
  display: block;
  width: 22%;
  margin-right: 8%;
}
.ph_area > form > label > img {
  display: block;
}

.write_title {
  margin-bottom: 1.4em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.write_title > h3 {
  font-size: 1.7em;
  color: #202020;
}
.write_title > p {
  font-family: "Pretendard-Light";
  color: #888;
}
.write_area > form input,
.write_area > form textarea {
  border: 1px solid #dedede;
  border-radius: 5px;
  width: 100%;
  padding: 2% 2% 2%;
}
.write_area > form textarea {
  height: 400px;
}
.write_area > form input::placeholder,
.write_area > form textarea::placeholder {
  color: #acacac;
  font-family: "Pretendard-Light";
}
.write_area1 {
  margin-top: 4.2em;
}
.write_area2 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.pt_up {
  background: #f5f5f5;
  padding: 2em;
  box-sizing: border-box;
}

#image_container {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
#image_container .new_img {
  width: calc(92% / 3);
  margin-right: 4%;
  height: 88px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#image_container > .new_img:last-child {
  margin-right: 0;
}

#image_container .new_img:hover::before {
  opacity: 1;
}
#image_container .new_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

#image_container .new_img:hover::after {
  opacity: 1;
}
#image_container .new_img::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 49px;
  height: 49px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  background: url(/org/img/delete_btn.png) no-repeat center / contain;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

#image_container > .new_img:last-child {
  margin-right: 0;
}

.new_img > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.purchase_con3 .recip_okbtn {
  padding: 4.2em 0 2.8em;
}

/*sub4*/
.sub4 {
  background-image: url(/org/img/sub4_bg.png);
}
.sub_main4 .sub_container {
  padding: 9% 6.5% 7%;
}
.sub_main4 .sub_page_title {
  top: -2.8%;
}
.sub_main4 .link_list {
  top: -2.6%;
}

.pg_li {
  margin-bottom: 4.2em;
  display: flex;
  align-items: center;
}
.step_left {
  width: 37.5%;
  height: 240px;
  background: url(/org/img/step1.png) no-repeat center / cover;
}
.pg_sec .step_left {
  background-image: url(/org/img/step2.png);
}
.pg_thr .step_left {
  background-image: url(/org/img/step3.png);
}
.pg_for .step_left {
  background-image: url(/org/img/step4.png);
}

.step_right {
  color: #202020;
}
.step_right > h4 {
  font-size: 22px;
  font-family: "Pretendard-SemiBold";
  color: #fff;
  background: #6100b5;
  padding: 0.2em 1.1em;
  display: inline-block;
  text-align: center;
  margin-bottom: 0.6em;
}
.step_right > h3 {
  font-size: 36px;
  font-family: "Pretendard-SemiBold";
  margin-bottom: 0.5em;
}
.step_right > span {
  font-size: 1.7em;
  display: block;
  margin-bottom: 0.7em;
  font-family: "Pretendard-Light";
}

.pg_fir .step_left {
  margin-right: 5.5%;
  margin-top: 5%;
}
.pg_sec {
  justify-content: space-between;
}
.pg_thr .step_left {
  margin-right: 5.5%;
}
.pg_for {
  justify-content: space-between;
}
.pg_for .step_right {
  width: 52%;
}

.mini_li {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8em;
}
.mini_li::after {
  display: none;
}
.mini_li > li {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mini_li > li:last-child {
  margin-right: 0;
}
.mini_img {
  width: 100%;
  height: 80px;
  background: url(/org/img/sub_home.png) no-repeat center / contain;
}
.mini_li > li:nth-child(2) .mini_img {
  background-image: url(/org/img/sub_facebook.png);
}
.mini_li > li:nth-child(3) .mini_img {
  background-image: url(/org/img/sub_insta.png);
}
.mini_li.pg_sec_li {
  justify-content: space-around;
  width: 75%;
  margin: 0 auto;
  margin-top: 1.8em;
}

.mini_li.pg_sec_li > li .mini_img {
  background-image: url(/org/img/sub_what.png);
}

.mini_li > li > b {
  display: block;
  font-family: "Pretendard-Medium";
  font-size: 1.14em;
  font-weight: normal;
  margin-top: 0.2em;
}
.mini_li > li > a {
  display: block;
  font-family: "Pretendard-Bold";
  font-size: 0.8em;
  width: 48%;
  text-align: center;
  color: #6100b5;
}

.pg_thr .step_right > ul {
  width: 95%;
}
.pg_thr .step_right > ul > li::after {
  content: "";
  display: block;
  width: 20px;
  height: 18px;
  margin: 1.5em 0 1.5em 40%;
  background: url(/org/img/sub4_arrow.png) no-repeat center / cover;
}
.pg_thr .step_right > ul > li:last-child:after {
  display: none;
}

.txt_li {
  font-size: 1.7em;
  font-family: "Pretendard-Medium";
}
.txt_li > p {
  font-family: "Pretendard-Medium";
}
.txt_li > span {
  font-family: "Pretendard-Light";
}

/*sub5*/
.sub5 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main5 .sub_container {
  padding: 8% 5% 10%;
}
.sub_main5 .sub_page_title {
  top: -2.8%;
}
.sub_main5 .link_list {
  top: -2.7%;
}

.c_search_area {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.1em;
  position: relative;
}
.c_search_area.mainselect {
  z-index: 15;
}
.c_search_area.otherselect {
  background: transparent;
  width: 100%;
  padding: 0;
  margin: 1.9em 0 0.7em;
}
.c_search_area.otherselect .c_search_li {
  width: 26%;
}
.c_search_li {
  font-family: "Pretendard-Light";
  color: #808080;
  position: relative;
  line-height: 40px;
  text-indent: 0.9em;
  margin-right: 1.1%;
  border-radius: 5px;
  z-index: 10;
}

.my_input.c_search_area > .c_search_li.maker {
  padding: 0;
  line-height: unset;
}

.c_search_li.maker {
  width: 28.74%;
}
.c_search_li.model {
  width: 34.6%;
}
.c_search_li.year {
  width: 10.34%;
  margin-right: 0;
}
.c_search_li.at {
  width: 22.99%;
}
.arrow {
  position: absolute;
  top: 90%;
  left: 0;
  background: #fff;
  width: 100%;
  text-indent: 0.9em;
  color: #808080;
  border: 1px solid #dedede;
  border-top: none;
  display: none;
  height: 120px;
  overflow: scroll;
  border-radius: 0 0 5px 5px;
  cursor: pointer;
}

.arrow > li {
  cursor: pointer;
}
.c_search_li.on .arrow {
  border-radius: 0 0 5px 5px;
}
.c_search_li > a {
  display: block;
  position: relative;
  line-height: 40px;
  border: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-radius: 5px;
  padding-left: 0;
  background: #fff;
}
/*padding: 9%;*/
.c_search_li > a::after {
  content: "";
  display: inline-block;
  pointer-events: none;
  width: 13px;
  height: 7px;
  background: url(/org/img/arrow_down.png) no-repeat center / cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.c_search_li > a span {
  display: block;
  width: 100%;
}

.c_search_group > input,
.c_search_group > button {
  float: left;
  line-height: 40px;
  display: block;
  border-radius: 5px;
}

.c_search_group {
  width: 100%;
  margin-top: 0.6em;
}
.c_search_group > input {
  margin-right: 1.1%;
  width: 83.33%;
  font-family: "Pretendard-Light";
  border: 1px solid #dedede;
  padding-left: 0.9em;
}
.c_search_group > input::placeholder {
  color: #acacac;
}
.c_search_group > button {
  background: #6100b5;
  text-align: center;
  font-size: 1em;
  font-family: "Pretendard-Bold";
  color: #fff;
  width: 15.57%;
}

.c_content_li {
  width: 100%;
}
.c_content_li > li {
  display: flex;
  padding: 1.4em;
  background: #fff;
  align-items: center;
  position: relative;
}

.c_content_li > li:last-child {
}
.c_content_li .content_num {
  position: absolute;
  top: 0;
  left: 0;
  width: 11%;
  background-color: #999999;
  font-family: "SUITE Variable";
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 32px;
  z-index: 1;
}
.new_mark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  display: none;
}
.c_content_li > li.on .new_mark {
  display: block;
}
.c_content_li .content_img {
  width: 350px;
  position: relative;
  margin-right: 1.5%;
  height: 246px;
  z-index: 0;
}
.c_content_li .content_img > img {
  width: 100%;
  height: 100%;
}
.c_content_li .content_txt {
  width: 58.89%;
}

.content_kate > li {
  float: left;
  padding: 4px 0.5em;
  background: #a640ff;
  border-radius: 5px;
  color: #fff;
  margin-right: 0.5em;
}
.content_kate > li:nth-child(2) {
  font-family: "Pretendard-Medium";
}
.content_kate > li.new {
  font-family: "Pretendard-Bold";
  background: #ff53b4;
}
.content_kate > li:last-child {
  margin-right: 0;
}

.content_name > a {
  display: block;
  font-family: "Pretendard-Medium";
  font-size: 1.7em;
  line-height: 120%;
  padding: 0.4em 0 0.7em;
}

.content_tag {
  margin-bottom: 1.4em;
}
.content_tag > li {
  float: left;
  color: #999999;
}
.content_tag > li::after {
  content: "";
  display: inline-block;
  height: 6px;
  width: 1px;
  background: #c8c8c8;
  margin: 0 0.7em;
  position: relative;
  bottom: 1px;
}
.content_tag > li:last-child::after {
  display: none;
}

.content_icon {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.1em;
}
.icon_metrial {
  margin-right: 0.6em;
  position: relative;
}
.icon_metrial.out {
  display: none;
}
.metrial_txt {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  text-align: center;
  text-wrap: nowrap;
  display: none;
  padding: 0.25em 1em;
  border: 1px solid #6100b5;
  border-radius: 5px;
  background: #fff;
}

.icon_metrial.on .metrial_txt {
  display: block;
  font-family: "Pretendard-Medium";
  color: #6100b5;
}
.metrial_txt::before {
  border-color: #6100b5 transparent;
  border-style: solid;
  border-width: 0 6px 8px 6.5px;
  content: "";
  display: block;
  left: 45%;
  position: absolute;
  bottom: -8px;
  width: 0;
  z-index: 0;
  transform: rotate(180deg);
}
.metrial_txt::after {
  border-color: #fff transparent;
  border-style: solid;
  border-width: 0 6px 8px 6.5px;
  content: "";
  display: block;
  left: 45%;
  position: absolute;
  bottom: -7px;
  width: 0;
  z-index: 1;
  transform: rotate(180deg);
}
.icon_img {
  width: 40px;
  height: 40px;
  background: url(/org/img/Icon_Sunroof.png) no-repeat center / cover;
}

.icon_img.on {
  display: block;
}

.icon1 .icon_img {
  background-image: url(/org/img/Icon_Sunroof_off.png);
}

.icon1 .icon_img.on {
  background-image: url(/org/img/Icon_Sunroof.png);
}

.icon2 .icon_img {
  background-image: url(/org/img/Icon_SmartKey_off.png);
}

.icon2 .icon_img.on {
  background-image: url(/org/img/Icon_smartkey.png);
}

.icon3 .icon_img {
  background-image: url(/org/img/Icon_parking_off.png);
}

.icon3 .icon_img.on {
  background-image: url(/org/img/Icon_parking.png);
}

.icon4 .icon_img {
  background-image: url(/org/img/Icon_navi_off.png);
}

.icon4 .icon_img.on {
  background-image: url(/org/img/Icon_navi.png);
}

.icon5 .icon_img {
  background-image: url(/org/img/Icon_rearCamera_off.png);
}

.icon5 .icon_img.on {
  background-image: url(/org/img/Icon_rearcamera.png);
}

.icon6 .icon_img {
  background-image: url(/org/img/Icon_leatherSeat_off.png);
}

.icon6 .icon_img.on {
  background-image: url(/org/img/Icon_leatherSeat.png);
}

.icon7 .icon_img {
  background-image: url(/org/img/Icon_Headlamp-hid_off.png);
}

.icon7 .icon_img.on {
  background-image: url(/org/img/Icon_Headlamp-hid.png);
}

.icon8 .icon_img {
  background-image: url(/org/img/Icon_Headlamp-led_off.png);
}

.icon8 .icon_img.on {
  background-image: url(/org/img/Icon_Headlamp-led.png);
}

.icon9 .icon_img {
  background-image: url(/org/img/Icon_heatedSeat-f_off.png);
}

.icon9 .icon_img.on {
  background-image: url(/org/img/Icon_heatedSeat-f.png);
}

.icon10 .icon_img {
  background-image: url(/org/img/Icon_heatedSeat-r_off.png);
}

.icon10 .icon_img.on {
  background-image: url(/org/img/Icon_heatedSeat-r.png);
}

.icon11 .icon_img {
  background-image: url(/org/img/Icon_ventilatedseat-f_off.png);
}

.icon11 .icon_img.on {
  background-image: url(/org/img/Icon_ventilatedseat-f.png);
}

.icon12 .icon_img {
  background-image: url(/org/img/Icon_ventilatedseat-r_off.png);
}

.icon12 .icon_img.on {
  background-image: url(/org/img/Icon_ventilatedseat-r.png);
}

.sales_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sales_section .cart_btn {
  display: block;
  top: 0;
}
.sales_section .cart_btn > a {
  display: block;
  width: 28px;
  height: 28px;
}
.sales_section .price {
  font-size: 2.1em;
  padding: 0;
}

.num_metrial {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.6em;
}
.num_list {
  font-size: 1.1em;
  color: #888;
}
.num_list > li {
  float: left;
  margin-right: 1.6em;
}
.num_list > li.on {
  font-family: "SUITE Variable";
  color: #6100b5;
  font-weight: 800;
}
.num_list > li:last-child {
  margin-right: 0;
}
.num_metrial > a.prev {
  width: 10px;
  height: 7px;
  background: url(/org/img/all_arrow.png) no-repeat center / cover;
  transform: rotate(90deg);
  margin-right: 1.6rem;
}
.num_metrial > a.next {
  width: 10px;
  height: 7px;
  background: url(/org/img/all_arrow.png) no-repeat center / cover;
  transform: rotate(-90deg);
  margin-left: 1.6em;
}

/*auto parts 오토파츠*/
.auto_parts .content_img {
  width: 200px;
  height: 100%;
}

.auto_parts .content_txt {
  width: calc(98.5% - 200px);
}

.auto_parts > li {
  padding: 0.6em 1.4em;
}

.auto_parts .new_mark {
  top: 10px;
  right: 10px;
}

.auto_parts .content_name > a {
  margin: 0.4em 0 0.7em;
  padding: 0;
  padding-right: 1em;
  width: 98%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*sub5_2*/

.slide_before {
  position: relative;
}
.slide_before::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

iframe {
  width: 100%;
  /* height: auto; */
}
.your-video-class .ytp-large-play-button,
.ytp-button {
  display: none !important;
}

.sub5_2 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main5_2 .sub_container {
  padding: 9% 6.5% 10%;
}
.sub_main5_2 .sub_page_title {
  top: -0.95%;
}
.sub_main5_2 .link_list {
  top: -0.75%;
}

.car_f_title {
  display: block;
  font-size: 2.28em;
  font-family: "Pretendard-Medium";
  line-height: 110%;
  margin-bottom: 1em;
  width: 93%;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ellipsis line */
  -webkit-box-orient: vertical;
  line-height: 1.4em;
  height: 2.6em;
}

.car_f_con1.reserved .car_f_left:after,
.car_f_con1.sold_out .car_f_left:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.sell_out {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  font-family: "Pretendard-Bold";
  font-size: 42px;
  color: #fff;
}

.sell_out span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.car_f_con1.reserved .sell_out1 {
  display: block;
}

.car_f_con1.sold_out .sell_out2 {
  display: block;
}

.car_f_con1.reserved .car_f_left:after,
.car_f_con1.sold_out .car_f_left:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}

.car_f_con1.reserved .my_buy_btn,
.car_f_con1.sold_out .my_buy_btn {
  display: none;
}

.car_f_con1.reserved .buy_btn.r_btn {
  display: block;
  cursor: default;
}
.car_f_con1.sold_out .buy_btn.s_btn {
  display: block;
  cursor: default;
}

.car_f_con1 {
  display: flex;
  align-items: center;
  margin-bottom: 4.2em;
  position: relative;
}

.car_f_left {
  width: 61%;
  display: flex;
  align-items: center;
  height: 270px;
  position: relative;
}
.car_video {
  width: 81%;
  height: 100%;
  margin-right: 2%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.car_video .car_blank {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
}
.car_video.on .car_blank {
  display: block;
}
.car_video.on > iframe {
  display: block;
}
.car_video > img {
  display: block;
  width: 100%;
  height: auto;
}
.car_video.on > img {
  display: none;
}
.car_video > iframe {
  height: 100%;
  display: none;
}
.car_ex_sample {
  width: 17%;
  height: 219px;
  position: relative;
}
.car_ex_sample .swiper {
  height: 217px;
}
.car_ex_sample .swiper-wrapper {
  bottom: 82px;
}
.car_ex_sample .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 2px solid #ececec;
}
.car_ex_sample .swiper-slide.on {
  border: 2px solid #ea53ef;
}
.car_ex_sample .swiper-slide img {
  margin: 0 auto;
  transform: scale(110%);
}

.car_f_next {
  background: url(/org/img/up_arrow.png) no-repeat center / cover;
  width: 10px;
  height: 7px;
  top: var(--swiper-navigation-top-offset, 115%);
  right: var(--swiper-navigation-sides-offset, 44%);
  transform: rotate(180deg);
}
.car_f_prev {
  background: url(/org/img/up_arrow.png) no-repeat center / cover;
  width: 10px;
  height: 7px;
  top: var(--swiper-navigation-top-offset, 0);
  left: var(--swiper-navigation-sides-offset, 44%);
}

.car_f_right {
  width: 46%;
  text-align: right;
  margin-left: 5%;
}
.car_price > span {
  display: block;
  font-family: "Pretendard-Light";
  color: #666;
  font-size: 16px;
}
.car_price {
  font-size: 2.3em;
  font-weight: 500;
  color: #6100b5;
  margin-top: 0.8em;
  white-space: nowrap;
}

.buy_area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4.2em;
}
.buy_area .cart_btn {
  width: auto;
  position: static;
  margin-right: 2.2em;
  position: relative;
}
.buy_area .buy_btn {
  text-align: center;
  color: #fff;
  background: #6100b5;
  line-height: 80px;
  font-family: "Pretendard-Bold";
  width: 75%;
  display: block;
  font-size: 1.7em;
}
.buy_area .buy_btn.g_btn {
  background: #b2b2b2;
  display: none;
}

.car_f_con2 {
  background: #f5f5f5;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  padding: 2em;
  justify-content: space-between;
  margin-bottom: 3.75em;
}

/*05/23*/
.car_f_con2 {display: block;}
.car_f_con2 ul.half {width: calc((100% - 20px) / 2); display: inline-block; vertical-align: top; margin-right: 16px;}
.car_f_con2 ul.half:nth-child(2n) {margin-right: 0;}
.car_f_con2 > ul {
  /* width: 47%; */
}
.car_f_con2 b {
  font-weight: normal;
  font-family: "Pretendard-Medium";
  color: #202020;
}
.car_f_con2 span {
  color: #666666;
}
.car_f_con2 ul > li::after {
  content: "";
  display: block;
  clear: both;
}
.car_f_con2 > ul > li {
  margin-bottom: 1em;
}
.car_f_con2 > ul > li:last-child {
  margin-bottom: 0;
}
.con2_li1 > li > b {
  float: left;
}
.con2_li1 > li > span {
  float: right;
}

.con2_li2 > li > b {
  float: left;
}
.con2_li2 > li > span {
  float: right;
}
.car_f_con3 {
  padding: 4.2em 3em;
  background-color: #f5f5f5;
  margin-bottom: 3.75em;
}
.car_f_con3 > ul::after {
  display: none;
}
.car_f_con3 > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  text-align: center;
  font-size: 1.14em;
}
.car_f_con3 > ul li {
  width: 14%;
  margin-right: 2%;
}

.car_f_con3 > ul li .on_show {
  display: none;
}

.car_f_con3 > ul li.on .on_show {
  display: block;
}

.car_f_con3 > ul li.on .no_show {
  display: none;
}

.car_f_con3 > ul li:nth-child(1) {
  margin-bottom: 3.4em;
}
.car_f_con3 > ul li:nth-child(6n) {
  margin-right: 0;
}
.car_f_con3 > ul li > img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.car_f_con3 > ul li > span {
  margin-top: 0.8em;
  display: block;
}

.car_second_main {
  padding: 0 0 3.5em;
}
.car_second_main .car_bg {
  margin-bottom: 2em;
  padding: 10em 0;
  border: 2px solid #ececec;
}
.car_second_main > div:first-of-type,
.car_second_main > div:nth-of-type(4),
.car_second_main > div:last-of-type {
  margin-bottom: 0;
}
.car_second_main > div:nth-of-type(2),
.car_second_main > div:nth-of-type(5) {
  margin-top: 2em;
}
.car_second_main > span {
  display: block;
  font-family: "Pretendard-Light";
  font-size: 1.2em;
  width: 92%;
  margin-bottom: 3%;
  margin-top: 3%;
}
.car_second_main > span:last-child {
  margin-bottom: 0;
}

.car_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
}
.car_btn_area > button {
  display: block;
  width: 49%;
  box-sizing: border-box;
  font-family: "Pretendard-Bold";
  font-size: 1.7em;
  color: white;
  margin-right: 2%;
  height: 80px;
  background: #6100b5;
}
.car_btn_area > button.go_list {
  background: #fff;
  border: 2px solid #6100b5;
  color: #6100b5;
}

.car_btn_area.off > button.go_list{
  border-color: #666;
  color: #666;
  position: relative;
}

.car_btn_area.off:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.car_btn_area > button.Buy.g_btn {
  background: #b2b2b2;
  display: none;
}

.car_btn_area.reserved > button.Buy,
.car_btn_area.sold_out > button.Buy {
  display: none;
}

.car_btn_area.reserved,
.car_btn_area.sold_out{
  position: relative;
}

.car_btn_area.reserved > button.Buy.out_res {
  display: block;
}

.car_btn_area.sold_out > button.Buy.out_sold {
  display: block;
}

.car_btn_area.reserved:after,
.car_btn_area.sold_out:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/*car 미리보기 팝업*/
.example_bg {
  width: 1000px;
}
.example_pop {
  padding: 9% 6% 7%;
}
.example_pop .pop_close {
  width: 3%;
  top: 3%;
  right: 3%;
}

.car_f_con1_2 {
  width: 100%;
  height: 470px;
}
.sample2 {
  height: 400px;
}
.sample2 .swiper-wrapper {
  bottom: 150px;
}
.sample2 .swiper {
  height: 395px;
}

.example_bg .car_f_next,
.example_bg .car_f_prev {
  width: 20px;
  height: 14px;
}
.example_bg .car_f_next {
  top: var(--swiper-navigation-top-offset, 110%);
}
.example_bg .car_f_prev {
  top: var(--swiper-navigation-top-offset, -3%);
}

.example_bg .pop_btn .cancel {
  width: 26%;
}
.example_bg .pop_btn {
  margin-top: 8%;
}

.example_bg .swiper-wrapper > div:first-child::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

/*sub6*/
.sub6 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main6 .sub_container {
  padding: 8% 5% 10%;
}
.sub_main6 .sub_page_title {
  top: -3%;
}
.sub_main6 .link_list {
  top: -2.8;
}

/*sub6_1*/
.sub6_1 {
  background-image: url(/org/img/mypage_bg.png);
}
.sub_main6_1 .sub_page_title {
  top: -1%;
}
.sub_main6_1 .link_list {
  top: -0.8%;
}
.sub_main6_1 .car_second_main {
  padding: 0 0 3.5em;
}

.sub_main6_1 .car_video img {
  display: block;
}

/*sub7*/
.sub7,
.sub_7_1_1 {
  background-image: url(/org/img/activity_bg.png);
}
.sub_main7 .sub_page_title {
  top: -4.7%;
}
.sub_main7 .link_list {
  top: -4.5%;
}

.activity > ul {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.activity > ul > li:first-child,
.activity > ul > li:nth-child(4n) {
  margin-bottom: 3%;
}
.act_area_li {
  width: 32%;
}
.video_bg {
  position: relative;
  /* height: 170px; */
}
.video_bg > iframe {
  height: 100%;
}
.video_area {
  position: relative;
  display: block;
}
.video_txt_bg {
  padding: 0.6em 0 1em;
}
.activity .video_txt {
  padding: 0;
  height: auto;
}
.activity .video_bottom > a:first-of-type {
  color: #c8c8c8;
}

/*sub7_1*/
.sub_main7_1 .video_bg > img {
  width: 100%;
  height: 100%;
}

/*sub7_1_1*/
.sub_main_7_1_1 .link_list {
  top: -1.6%;
}
.sub_main_7_1_1 .sub_page_title {
  top: -1.8%;
}

.sub_main_7_1_1 .car_f_left {
  width: 100%;
  height: 540px;
}
.sub_main_7_1_1 .car_video {
  width: 83%;
  border: 2px solid #ececec;
}
.sub_main_7_1_1 .car_ex_sample {
  height: 385px;
  width: 15%;
}
.sub_main_7_1_1 .car_ex_sample .swiper {
  height: 402px;
}
.sub_main_7_1_1 .car_ex_sample .swiper-wrapper {
  bottom: 152px;
}
.sub_main_7_1_1 .car_f_prev,
.sub_main_7_1_1 .car_f_next {
  width: 20px;
  height: 14px;
}

.sub_main_7_1_1 .car_f_prev {
  top: var(--swiper-navigation-top-offset, -5%);
}
.sub_main_7_1_1 .car_f_next {
  top: var(--swiper-navigation-top-offset, 118%);
}

.car_title_text > h3 {
  font-size: 2.5em;
  color: #202020;
  margin: 1.7em 0 0.7em;
  line-height: 120%;
}
.car_date {
  font-size: 1.14em;
  font-family: "SUITE-Light";
  color: #888888;
  margin-bottom: 3.4em;
}
.car_date > span {
  display: inline-block;
  position: relative;
}
.car_date > span::before {
  content: "";
  display: inline-block;
  background: url(/org/img/sub_date.png) no-repeat center / cover;
  width: 16px;
  height: 16px;
  position: relative;
  top: 1.2px;
  margin-right: 0.5em;
}
.car_date > span:nth-child(2):before {
  content: "";
  display: inline-block;
  background: url(/org/img/watching.png) no-repeat center / cover;
  margin-left: 2em;
}

.sub_main_7_1_1 .car_second_main > div:first-of-type {
  margin: 2em 0;
}
.sub_main_7_1_1 .car_second_main > div:last-of-type {
  margin-bottom: 0;
}
.sub_main_7_1_1 .go_list.onebtn {
  color: #fff;
  background: #6100b5;
  border: none;
}

/*sub_8*/
.sub_8 {
  background-image: url(/org/img/cummunity.png);
}
.sub_main_8 .sub_page_title {
  top: -5.5%;
}
.sub_main_8 .link_list {
  top: -5.3%;
}

.notice_table {
  border-top: 2px solid #6100b5;
}
.notice_table > table {
  width: 100%;
}
.notice_table thead {
  background: #f6ecff;
  line-height: 60px;
  font-family: "Pretendard-Medium";
  color: #202020;
  border-bottom: 2px solid #efdcff;
}

.table_fi {
  width: 12%;
  text-align: center;
  display: inline-block;
}
.table_s {
  width: 50%;
  display: inline-block;
}
.table_t {
  width: 17%;
  display: inline-block;
}
.table_t a > img {
  margin: 0 auto;
  width: 25px;
  height: 24px;
}
.title_fo {
  width: 16%;
  text-align: center;
  display: inline-block;
}

tbody {
  line-height: 60px;
  font-size: 1.14em;
}
tbody > tr {
  border-bottom: 2px solid #ececec;
}
tbody .table_fi {
  color: #202020;
}
tbody .title_fo {
  font-family: "SUITE-Light";
  color: #888888;
}
tbody .table_s > a {
  display: block;
}
tbody .table_s > a > span {
  padding-left: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  width: 54%;
  display: block;
}

.sub_main_8 .num_metrial {
  padding-top: 1.7em;
}

/*sub_8_1*/
.sub_main_7_1_1.sub_main_8_1 .sub_page_title {
  top: -1.9%;
}

.sub_main_7_1_1.sub_main_8_1 .link_list {
  top: -1.7%;
}

/*sub_8_2*/
.sub_8_2 {
  background-image: url(/org/img/cummunity.png);
}
/* .sub_main_8_2 .sub_page_title{bottom: 99.4%;} */

.review_li > li {
  display: flex;
  border: 1px solid #ececec;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2em;
  height: 120px;
}
.review_li > li.on .yes_img {
  display: block;
}

.review_li > li.on .no_img {
  display: none;
}

.yes_img {
  display: none;
}

.review_left {
  width: 190px;
}
.review_left > a {
  display: block;
  height: 100%;
}
.no_img {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  border-right: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no_img img {
  width: 50px;
  height: auto;
}

.review_left > a > img {
  display: none;
  height: 100%;
}

.review_middle {
  width: 68%;
  padding-left: 2.14em;
  padding-top: 1.8em;
  padding-bottom: 1em;
  box-sizing: border-box;
}
.order_num .order_con {
  display: inline-block;
  background: #6100b5;
  padding: 5px 10px;
  color: #fff;
}
.order_num > span {
  display: inline-block;
  color: #6100b5;
  font-size: 1.2em;
  margin-left: 0.6em;
}
.review_txt {
  display: block;
  font-size: 1.2em;
  padding-top: 0.6em;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review_date {
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: "SUITE-Light";
}

/*sub_8_3*/
.sub_8_3 {
  background-image: url(/org/img/cummunity.png);
}
/* .sub_main_8_3 .sub_page_title{bottom: 99.35%;}
.sub_main_8_3 .link_list{bottom: 101.4%;} */
.sub_main_8_3 .car_second_main {
  padding: 0 0 5em;
}
.sub_main_8_3 .car_date {
  margin-bottom: 2em;
}
.sub_main_8_3 .car_date span:nth-child(3)::before,
.sub_main_8_3 .car_date span:nth-child(4)::before {
  display: none;
}
.sub_main_8_3 .car_date span:nth-child(3) {
  font-family: "Pretendard-Regular";
  color: #888888;
  margin-left: 2.1em;
  margin-right: 0.6em;
}
.sub_main_8_3 .car_date span:nth-child(4) {
  color: #6100b5;
}

/*sub_8_4*/
/* .sub_main_8_4 .sub_page_title {
  top: -4.3%;
} */

.sub_84_title {
  top: 62.8%;
  left: 19.5%;
}
.sub_84_link_list {
  top: 64%;
  right: 19%;
  z-index: 1;
}

/* .sub_main_8_4 .link_list {
  top: -4.1%;
} */

.ask_area {
  background: url(/org/img/qna_bg.png) no-repeat center / contain;
  width: 100%;
  height: 200px;
  padding: 4.2em;
  box-sizing: border-box;
  margin-bottom: 4.2em;
}
.ask_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 1%;
}
.ask_txt > h3 {
  font-family: "Pretendard-Medium";
  font-size: 1.7em;
  color: #202020;
  line-height: 120%;
  margin-bottom: 0.3em;
}
.ask_txt > span {
  display: block;
  color: #888;
}
.ask_btn {
  width: 30%;
}
.ask_btn > button {
  display: block;
  width: 100%;
  background: #6100b5;
  color: #fff;
  font-family: "Pretendard-Bold";
  font-size: 1.7em;
  position: relative;
  padding: 9% 0 8%;
}
.ask_btn > button::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/org/img/qna_icon.png) no-repeat center / contain;
  width: 40px;
  height: 40px;
  top: 5%;
  right: 24%;
}
.ask_btn > button span {
  display: block;
  padding-right: 3%;
}

.ask_li {
  border-top: 2px solid #6100b5;
  width: 100%;
  font-size: 1.14em;
}
.ask_ul > li {
  padding-left: 4em;
  padding-right: 0;
  position: relative;
  border-bottom: 2px solid #ececec;
}
.ask_q {
  font-size: 1.7em;
  color: #6100b5;
  font-family: "Pretendard-Bold";
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
}

.qna_area_top {
  width: 100%;
  position: relative;
  padding: 1.8em 0;
}
.qna_question {
  display: block;
  position: relative;
}
.qna_question::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/org/img/ask_arrow.png) no-repeat center / contain;
  width: 20px;
  height: 13px;
  top: 40%;
  right: 3%;
  transform: rotate(180deg);
}
.qna_question span {
  display: block;
  width: 68%;
}

.ask_answer {
  margin-top: 1.3em;
  padding: 1.5em 2.8em 1.5em 1.25em;
  background: #f5f5f5;
  border-radius: 5px;
  color: #666666;
  font-family: "Pretendard-Light";
  display: none;
  margin-bottom: 1.8em;
}

/*sub_9*/
.sub_9 {
  background-image: url(/org/img/cummunity.png);
}

.ship_opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 2% 3%;
}
.ship_bg {
  width: 37%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ship_opt > img {
  display: block;
  width: 11px;
  height: 11px;
}
.ship_opt_li {
  width: 78%;
}
.opt_title {
  font-size: 0.8em;
  font-family: "Pretendard-Medium";
}

.search_btn {
  width: 15%;
  background: #6100b5;
  font-size: 1.1em;
  font-family: "Pretendard-Bold";
  color: #fff;
  border-radius: 5px;
  padding: 0.7% 0;
  text-align: center;
}
.search_btn > button {
  display: block;
  width: 100%;
}
.ship_opt_li1 {
  z-index: 50;
}

.ship_notice {
  padding: 3% 0;
  color: #202020;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ship_notice > p:first-child {
  font-size: 1.1em;
}
.ship_notice > p:first-child > span {
  font-size: 1.4em;
  color: #6100b5;
  font-weight: 800;
}
.ship_notice > p:last-child {
  font-family: "Pretendard-Light";
  font-size: 1.1em;
  color: #ea53ef;
  font-weight: 400;
}
.ship_notice > p:last-child::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(/org/img/bullet.png) no-repeat center / cover;
  width: 6px;
  height: 5px;
  margin-right: 5px;
  bottom: 2px;
}

.ticket_list > li {
  border: 1px solid #ececec;
  border-top: 2px solid #6100b5;
  padding: 3.5%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.8em;
}
.ticket_list > li > div:nth-last-child(2),
.ticket_list > li > div:last-child {
  margin-bottom: 0;
}
.ticket_list > li > div:nth-child(3)::after,
.ticket_list > li > div:nth-child(5)::after,
.ticket_list > li > div:last-child::after {
  display: none;
}
.ship_txt {
  display: flex;
  font-size: 1.1em;
  margin-bottom: 1.2em;
}
.ship_txt::after {
  content: "";
  display: inline-block;
  background: #efdcff;
  width: 2px;
  height: 12px;
  margin: 0 1.4em;
  position: relative;
  top: 6px;
}
.ship_name {
  font-family: "Pretendard-Medium";
  margin-right: 0.6em;
}
.ship_name2 {
  font-family: "Pretendard-Light";
  text-align: right;
}

.ship_pp {
  color: #6100b5;
}
.ship_pp > b {
  font-family: "Pretendard-Medium";
  font-weight: normal;
}

.export_items {
  width: calc(90% / 6)
}
