/*---common css---*/

:root {
  /*color*/
  --color-base: #000;
  --color-gray: #777;
  --color-base2: #333;
  --color-base3: #999;
  --color-red: #e60019;
  --color-kakao-text: #442f01;
  --color-naver: #00c13a;
  --color-foot: #666;

  /*font-size*/
  --font-size-14: 0.875rem;
  --font-size-15: 0.938rem;
  --font-size-16: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-22: 1.375rem;
  --font-size-25: 1.563rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.688rem;
  --font-size-28: 1.75rem;
  --font-size-32: 2rem;
  --font-size-35: 2.188rem;
  --font-size-42: 2.625rem;
  --font-size-80: 5rem;

  /*font-weight*/
  --font-r: 400;
  --font-m: 500;
  --font-sb: 600;
  --font-b: bold;
  --font-eb: 800;
  --font-bl: 900;
}

/*font size*/
.fs_14 {
  font-size: var(--font-size-14);
}
.fs_16 {
  font-size: var(--font-size-16);
}
.fs_17 {
  font-size: var(--font-size-17);
}
.fs_18 {
  font-size: var(--font-size-18);
}
.fs_20 {
  font-size: var(--font-size-20);
}
.fs_22 {
  font-size: var(--font-size-22);
}
.fs_25 {
  font-size: var(--font-size-25);
}
.fs_26 {
  font-size: var(--font-size-26);
}
.fs_27 {
  font-size: var(--font-size-27);
}
.fs_28 {
  font-size: var(--font-size-28);
}
.fs_32 {
  font-size: var(--font-size-32);
}
.fs_35 {
  font-size: var(--font-size-35);
}
.fs_42 {
  font-size: var(--font-size-42);
}
.fs_80 {
  font-size: var(--font-size-80);
}

@media screen and (max-width: 1480px) {
}

@media screen and (max-width: 767px) {
  .fs_18 {
    font-size: 12px;
  }
  .fs_25 {
    font-size: 14px;
  }
  .fs_42 {
    font-size: 21px;
  }
}

/*color*/

.fc_77 {
  color: var(--color-gray);
}
.fc_33 {
  color: var(--color-base2);
}
.fc_99 {
  color: var(--color-base3);
}
.fc_red {
  color: var(--color-red);
}
.fc_66 {
  color: var(--color-foot);
}

/*font weight*/
.font_r {
  font-weight: var(--font-r);
}
.font_m {
  font-weight: var(--font-m);
}
.font_sb {
  font-weight: var(--font-sb);
}
.font_b {
  font-weight: var(--font-b);
}
.font_eb {
  font-weight: var(--font-eb);
}
.font_bl {
  font-weight: var(--font-bl);
}

/*text-motion*/

.j_motion.common_motion {
  transform: translateY(25px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.4s;
}
.j_motion.common_motion.on {
  transform: translateY(0);
  opacity: 1;
}

.j_delay_01 {
  transition-delay: 0.2s !important;
}
.j_delay_02 {
  transition-delay: 0.4s !important;
}
.j_delay_03 {
  transition-delay: 0.6s !important;
}
.j_delay_04 {
  transition-delay: 0.8s !important;
}
.j_delay_05 {
  transition-delay: 1s !important;
}
.j_delay_06 {
  transition-delay: 1.2s !important;
}
.j_delay_07 {
  transition-delay: 1.4s !important;
}
.j_delay_08 {
  transition-delay: 1.6s !important;
}
.j_delay_09 {
  transition-delay: 1.8s !important;
}
.j_delay_10 {
  transition-delay: 2s !important;
}
.j_delay_11 {
  transition-delay: 2.2s !important;
}

/*margin-top*/
.mt_10 {
  margin-top: 10px;
}
.mt_13 {
  margin-top: 13px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_22 {
  margin-top: 22px;
}
.mt_25 {
  margin-top: 25px;
}
.mt_26 {
  margin-top: 26px;
}
.mt_28 {
  margin-top: 28px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_33 {
  margin-top: 30px;
}
.mt_38 {
  margin-top: 38px;
}
.mt_42 {
  margin-top: 42px;
}
.mt_45 {
  margin-top: 45px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_86 {
  margin-top: 86px;
}

@media screen and (max-width: 1480px) {
}

@media screen and (max-width: 1020px) {
  .mt_86 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .mt_26 {
    margin-top: 13px;
  }
  .mt_28 {
    margin-top: 14px;
  }
  .mt_30 {
    margin-top: 15px;
  }
  .mt_33 {
    margin-top: 16px;
  }
  .mt_50 {
    margin-top: 25px;
  }
  .mt_86 {
    margin-top: 23px;
  }
}

/*paddin*/
.pt_0 {
  padding-top: 0 !important;
}

/*all_side_menu*/
.all_side_menu {
  position: absolute;
  width: 230px;
  top: 270%;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  display: none;
  z-index: 50;
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.11);
}
.all_side_menu > .j_gnb > li.active > a {
  color: #0054ff;
}
.all_side_menu > .j_gnb > li > a {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 0;
  display: block;
  width: 100%;
  transition: 0.28s;
}
.all_side_menu > .j_gnb > li:hover > a {
  color: #0054ff;
}
.all_side_menu > .j_gnb > li > .depth02 > li > a {
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  transition: 0.28s;
}
.all_side_menu > .j_gnb > li > .depth02 > li > a:hover {
  color: #0054ff;
}
.all_side_menu > .j_gnb > li > .depth02 {
  display: none;
}

.swiper-slide figure {
  position: relative;
}
.swiper-slide figure:hover .hover_cart {
  opacity: 1;
}
.prod_img figure {
  position: relative;
  margin-right: 38px;
}
.prod_img figure img {
  width: 100%;
}
.prod_img figure:hover .hover_cart {
  opacity: 1;
}
.hover_cart {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transition: 0.28s;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .prod_img figure {
    margin-right: 0;
  }
}

.j_sub_section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 188px 0;
  width: 92%;
}
.j_sub_section02 {
  max-width: 700px;
  margin: 0 auto;
  padding: 188px 0 100px 0;
  width: 92%;
}

@media screen and (max-width: 767px) {
  .j_sub_section {
    padding: 150px 0;
  }
  .j_sub_section02 {
    padding: 120px 0 80px 0;
  }
}

/*로그인 페이지*/

/*로그인, 회원가입 - 로그인*/

.mbInner {
  width: 92%;
  max-width: 400px;
  margin: 0 auto;
}
.regInner {
  width: 92%;
  max-width: 640px;
  margin: 0 auto;
}
.mbTitle {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.comInput {
  font-size: 0.9375rem;
  line-height: 50px;
  border: 1px solid #dbdbdb;
  padding: 0 15px;
  font-weight: 400;
  border-radius: 5px;
  outline: none;
  overflow: hidden;
}
.comInput:focus {
  outline: none;
}
.comInput::placeholder {
  color: #999;
  font-size: 0.9375rem;
}
.comInput_w100 {
  display: block;
  width: 100%;
}

.mbSave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 400;
}

.mbCheck {
  position: relative;
}
.mbCheck input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.mbCheck input[type="checkbox"] + label span {
  width: 20px;
  height: 20px;
  border: 1px solid #dbdbdb;
  background: #fff;
}
.mbCheck input[type="checkbox"]:checked + label span {
  background: url(/img/chk.png) no-repeat 50% 50% #222;
  border-color: #000;
}

.mb_btnBox {
  margin-top: 20px;
}
.mbBtn {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 400;
  color: #888;
  font-size: 0.9375rem;
  overflow: hidden;
}
.mbBtn_01 {
  background: #000;
  border-color: #000;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 720px) {
  .mbWrap {
    padding: 60px 0;
  }

  .mbTitle {
    margin-bottom: 30px;
  }

  .comInput {
    line-height: 45px;
    padding: 0 13px;
    font-size: 13px;
  }

  .mbSave,
  .mbBtn {
    font-size: 13px;
  }
  .mbBtn {
    line-height: 45px;
  }
}

/*로그인, 회원가입 - 회원가입 약관*/
.regNavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.regNavi li {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #979797;
  position: relative;
}
.regNavi li.on {
  color: #000;
}
.regNavi li::after {
  content: "-";
  font-family: pretendard;
  position: absolute;
  left: calc(100% + 10px);
  z-index: 1;
}
.regNavi li:last-child::after {
  display: none;
}

.mbInfobox {
  padding: 20px;
  background: #f4f4f4;
  border-radius: 5px;
  overflow: hidden;
}

.regTerms {
  margin-top: 35px;
}
.regTerms > h4 {
  font-size: 1.13rem;
  font-weight: bold;
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 2px solid #000;
}
.regTerms .mbCheck {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 15px;
}
#fregister textarea {
  border: 1px solid #dbdbdb;
  background: #fff;
  font-size: 0.875rem;
  padding: 20px 5%;
  font-weight: 400;
  outline: none;
  resize: vertical;
}

.regTable,
.regTable th,
.regTable td {
  font-size: 0.875rem !important;
  font-weight: 400;
}
.regTable th {
  font-weight: 500;
  background: #f4f4f4;
}
.regTable td {
  padding: 13px 15px;
  border-color: #dbdbdb;
}
.regTable .regTcolor td {
  background: #f9f9f9;
  font-weight: 500;
}

.mb_flexBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media screen and (max-width: 720px) {
  .regNavi {
    margin-bottom: 25px;
  }

  .mbInfobox {
    padding: 15px;
  }

  .regTerms {
    margin-top: 30px;
  }
  .regTerms > h4 {
    font-size: 16px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .regTerms .mbCheck {
    font-size: 13px;
    margin-bottom: 14px;
  }
  #fregister textarea {
    height: 150px;
    font-size: 13px;
  }

  .regTable,
  .regTable th,
  .regTable td {
    font-size: 12px !important;
  }
}

/*로그인, 회원가입 - 정보입력*/
.regTerms > h4.regGen {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}
.regGen span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #979797;
}
.regGen span i {
  color: #f00;
}

.regBox li {
  margin-bottom: 20px;
}
.regBox li:last-child {
  margin-bottom: 0;
}

.regText {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.regText b {
  color: #f00;
}

.regInfo,
#captcha #captcha_info {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 8px;
  color: #888;
}

.regCheck label {
  font-size: 0.9375rem;
}

@media screen and (max-width: 720px) {
  .regGen span {
    font-size: 12px;
  }
  .regText,
  .regCheck label {
    font-size: 13px;
  }
  .regInfo,
  #captcha #captcha_info {
    font-size: 12px;
  }
}

/*로그인, 회원가입 - 회원가입완료*/
.regResult {
  text-align: center;
}

.regResult h2 {
  font-weight: 400;
  margin-bottom: 20px;
}
.regResult h2 b {
  font-weight: 700;
}
.regResult p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 180%;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  overflow: hidden;
  padding: 33px 20px;
}

/*비회원구매*/
.guestWrap {
  margin-top: 40px;
}
.guestWrap p {
  font-size: 0.875rem;
  text-align: center;
}
.guestWrap .mb_btnBox {
  margin-top: 10px;
}

.mb_t10 {
  margin-top: 10px;
}

@media screen and (max-width: 720px) {
  .guestWrap p {
    font-size: 13px;
  }
}

/*---mypage css---*/

/*common*/
.myWrap {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
  padding-top: 0;
}

.nwBtn-wrap {
  display: flex;
  gap: 5px;
}
.nwBtn {
  font-size: 0.875rem;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  padding: 8px 15px;
  font-weight: 500;
  color: #999;
}
.nwBtn-1 {
  background: #000;
  border-color: #000;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 720px) {
  .nwBtn-wrap a {
    flex: 1;
    text-align: center;
  }
  .nwBtn {
    padding: 10px 5px;
    font-size: 13px;
  }
}

/*-- mypage - profile --*/
.myProfile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  background-color: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
}

.myName h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.myName h4 b {
  font-weight: bold;
}
.myName p {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 25px;
}

.myInfo {
  display: flex;
  justify-content: flex-end;
  width: 75%;
}
.myInfo li {
  border-left: 1px solid #ddd;
  padding: 0 25px;
}
.myInfo li h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.myInfo li span {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 150%;
}

/*-- mypage - myList --*/
.myList {
  margin-top: 50px;
}
.myList > h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#sod_inquiry li:first-child {
  border-top-color: #000;
}
#sod_inquiry li .idtime_link,
#sod_inquiry li .inquiry_price {
  font-size: 1rem;
}
#sod_inquiry li .inquiry_name {
  margin-top: 5px;
}

#myWish {
  display: flex;
  gap: 10px;
}
#myWish li {
  width: calc((100% - 40px) / 5);
}

.wish_img {
  margin-bottom: 15px;
}
.wish_img img {
  display: block;
  width: 100%;
  height: auto;
}
.wish_info a,
.wish_info span {
  display: block;
}
.wish_info a {
  font-weight: 600;
  margin-bottom: 5px;
}
.wish_info span {
  font-weight: 400;
  color: #999;
}

@media screen and (max-width: 1680px) {
  .myProfile {
    display: block;
  }

  .myInfo {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .myInfo li:first-child {
    border-left: none;
    padding-left: 0;
  }
  .myInfo li h4 {
    margin-bottom: 13px;
  }
  .myInfo li span {
    white-space: nowrap;
  }
}

@media screen and (max-width: 1080px) {
  .myList {
    margin-top: 30px;
  }
}

@media screen and (max-width: 960px) {
  .myProfile {
    padding: 22px;
  }

  .myInfo {
    display: block;
    margin-top: 20px;
    width: 100%;
  }
  .myInfo li {
    width: 100%;
    padding: 0;
    border-left: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 9px;
    margin-bottom: 12px;
  }
  .myInfo li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .myInfo li h4 {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 720px) {
  .myProfile {
    padding: 20px;
  }

  .myName h4 {
    font-size: 20px;
  }
  .myName p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .myInfo li h4 {
    font-size: 14px;
  }
  .myInfo li span {
    font-size: 13px;
    white-space: normal;
    word-break: keep-all;
  }

  #sod_inquiry li {
    padding: 15px 0;
  }
  #sod_inquiry li .idtime_link,
  #sod_inquiry li .inquiry_name {
    font-size: 14px;
  }
  #sod_inquiry li .inquiry_name {
    line-height: 160%;
  }
  #sod_inquiry li .inquiry_price {
    font-size: 16px;
  }

  #myWish li {
    width: calc((100% - 10px) / 2);
  }
  .wish_info a {
    font-size: 14px;
  }
}

/* add_pop */
.add_pop_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
}
.add_pop_wrap * {
  color: #fff;
}
.add_pop_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94%;
  max-width: 800px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.3s ease;
}



.add_pop_wrap.active .add_pop_inner {
  transform: translate(-50%, -50%) scale(1);
}

.add_pop_tit {
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.add_pop_close {
  width: 20px;
  height: 60px;
  position: relative;
}
.add_pop_close span {
  position: absolute;
  top: 29px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  z-index: 1;
  transition: transform 0.3s ease;
}
.add_pop_close span:nth-child(1) {
  transform: rotate(45deg);
}
.add_pop_close span:nth-child(2) {
  transform: rotate(-45deg);
}

.add_pop_close:hover span {
  transform: rotate(0);
}

.add_pop_con {
  background: #fff;
  padding: 22px 25px;
  overflow-y: scroll;
  height: calc(100% - 60px);
}
.add_pop_con h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  margin-top: 20px;
}
.add_pop_con p {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 25px;
  color: #000;
}

.add_pop_wrap ol, .add_pop_wrap li{
  font-size: 14px;
 color: #000;
   line-height: 160%;
}

@media (max-width: 780px) {
  .add_pop_con p {
    font-size: 12px;
  }
}

.j_search_box form {
  line-height: 0;
}


