@charset "utf-8";
html,
body {
      font-size: 16px;
}
  
  .btn_scroll {
      display: block;
      position: absolute;
      left: 50%;
      bottom: 3em;
      animation: scroll .8s infinite alternate;
      z-index: 10;
  }
  @keyframes scroll {
      0% {
          transform: translateY(0);
      }
  
      100% {
          transform: translateY(-20px);
      }
  }
  
  /**************************************************************/
  /**************************************************************/
  /************************* basic setting **********************/
  /**************************************************************/
  /**************************************************************/
  /* ----------------------- basic setting ---------------------*/
  /* 섹션 제목 */
  .section_wrap section {
      width: var(--web-width);
      margin: 4rem auto;
      /* margin-bottom: 50px; */
      overflow: hidden;
  }
  .section_wrap.section_footer_info section {
    margin: 0rem auto 0;
  }
  .section_wrap section .tit {
      overflow: hidden;
      /* margin-top: 4rem; */
      margin-bottom: 1.5rem;
      text-align: center;
  }
  .section_wrap section .tit h4 {
      /* float: left; */
      font-size: 1.875rem;
      line-height: 1.3em;
      font-weight: 700;
      display: inline-block;
  }
  .section_wrap section .tit h4 span {
    font-weight: bold;
    color: var(--main-color);
  }
  .last_section{
    background: url(../images/main/last_bg.png) no-repeat;
    width: 100% !important;
    height: 569px;
    position: relative;
    /* z-index: -2; */
  }
  .tit_white{
    color: #fff;
    margin-top: 1.5rem;
}
  /* 제목 옆으로 들어가는 버튼 */
  .section_wrap section .tit .viewmore {
    float: right;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    width: 85px;
    height: 30px;
    border-radius: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  .section_wrap section .tit .viewmore:hover{
    background-color: var(--main-color);
    color: #fff;
  }
  .section_wrap section .tit .viewmore>p{
    margin-left: 0.5rem;
  }
  .viewmore_more{
    border: 1px solid #fff !important;
    color: #fff !important;
  }
  .tit_viewmore {
    text-align: center;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 30px;
}
.tit_viewmore h4 {
    font-size: 1.5rem;
    line-height: 1.3em;
    font-weight: 500;
    display: inline-block;
    margin-left: 70px;
}
.tit_viewmore .viewmore {
    float: right;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
    color: var(--main-color-2);
}

  /* 서브페이지 대제목 */
  .max .tit h4 {
      font-size: 2.5rem;
      line-height: 1.3em;
      margin-top: -20px;
      margin-bottom: 2rem;
      font-weight: 400;
      text-align: center;
      color: #111;
      width: 1050px;
      float: right;
  }
  .max .tit h4 span {
      color: var(--main-color);
      font-weight: bold;
  }
  .max  .sub_tit{
    height: 50px;
    margin-top: -1rem;
  }
  .sub_tit>h4{
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
  }
  .sub_tit_tit{
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .sub_tit_tit>h4{
    text-align: left !important;
    font-weight: 600 !important;
  }
  .sub_tit_tit>p{
    margin-top: 0.5rem;
  }
  .sub_tit_tit>p>span{
    color: var(--main-color);
    font-size: var(--txt-xl);
  }
  .sub_tit_tit>p::before{
    content: '';
    height: 10px;
    border: 1px solid #ddd;
    margin-right: 1rem;
  }

  /* 서브페이지 중제목 */
  .max .tit h5 {
      font-size: 1.5rem;
      line-height: 1.3em;
      margin-top: 50px;
      margin-bottom: 30px;
      font-weight: 500;
      text-align: center;
  }
  /* 서브페이지 소제목 */
  .max .subtit {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  
  
  
  /**************************************************************/
  /**************************************************************/
  /**************************** header **************************/
  /**************************************************************/
  /**************************************************************/
  /* ----------------------- 전체 카테고리 ---------------------*/
  .open_depth {
      display: none;
      z-index: 9999;
      position: absolute;
      background: #fafafa;
      /* border: 1px solid #ddd; */
      transition: 0.3s;
      top: 55px;
      left: 0;
      left: 50%;
      transform: translateX(-50%);
  }
  .nav_open:first-child>.open_depth {
    left: 0;
    transform: inherit;
  }
  .open_depth2 {
      width: auto !important;
      left: inherit;
  }
  .open_depth.on {
      display: flex !important;
  }
  .open_depth .wrapper {
      display: flex;
  }
  .open_depth .wrapper .depth {
    width: 162px;
    max-height: 500px;
    background: var(--main-color);
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.2s;
    min-height: 363px;
}
.open_depth .wrapper .depth::-webkit-scrollbar {
width: 10px;
}
.open_depth .wrapper .depth::-webkit-scrollbar-thumb {
border-radius: 10px;
background-clip: padding-box;
border: 3px solid transparent;
background-color: var(--sub-color-5);
}
  .open_depth2 .wrapper .depth {
      border-right: 0;
  }
  .open_depth .wrapper .depth .onedepth {
    text-align: left;
    font-size: 0.95rem;
    display: block;
    line-height: 2.4rem;
    width: 100%;
    padding-left: 1.5rem;
    letter-spacing: -0.8px;
    transition: 0.2s;
  }
  .open_depth .wrapper .depth .onedepth.on {
      background: #fff;
      position: relative;
  }
.open_depth .wrapper .depth .onedepth>a {color: #fff;}
.open_depth .wrapper .depth .onedepth.on>a {color: var(--main-color);width: 100%;height: 100%;display: block;}
.open_depth .wrapper .depth .onedepth.on:hover >a{
    color: var(--main-color);
    font-weight: bold;
}
.open_depth .wrapper .twodepth {
    display: none;
    width: 162px;
    background: #fff;
    border: 1px solid var(--main-color-2);
    padding: 16px 24px;
    position: absolute;
    top: -1px;
    left: 162px;
    height:auto!important;
    height:100%;
    min-height:100%;
}
.open_depth .wrapper .twodepth.on {
    display: block;
}
.open_depth .wrapper .twodepth.on:hover >a{
    background-color: var(--main-color-2);
}
.open_depth .wrapper .twodepth li {
    text-align: left;
    font-size: 0.925rem;
    width: 100%;
    display: block;
    margin-right: 0;
}
.open_depth .wrapper .twodepth li a {
    color: #757575;
    font-size: 0.9rem;
    line-height: 1.3em;
    display: block;
    min-height: auto;
    font-weight: 500;
    padding-bottom: 16px;
    transition: 0.2s;
}
  .open_depth .wrapper .twodepth li a:hover {
    color: var(--main-color);
    font-weight: 600;
  }
  

/**************************************************************/
/**************************************************************/
/**************************** main ****************************/
/**************************************************************/
/**************************************************************/
/* ------------------------ main banner ----------------------*/
.banner_company {
    background: url(../images/main/banner_company.png) no-repeat center;
    background-size: cover;
    border-radius: var(--rad-md);
    padding: 4rem 0 3.5rem 9rem;
    margin-top: 4rem;
}
.banner_company p {
    font-size: 1.5rem;
    line-height: 1.75em;
    margin-bottom: 1.25rem;
}
.banner_company p span {
    font-weight: 600;
    font-size: 1.825rem;
}
.banner_company a {
    padding: 0.75rem 2rem;
    border-radius: var(--rad-lg);
}
.banner_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;  
    flex-wrap: wrap;  
}
.banner_event{
    width: calc((100% - 0px) / 3);
    height: 180px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.banner_left_txt>p{
    font-size: var(--txt-xs);
    letter-spacing: 10px;
    margin-bottom: 1rem;
}
.banner_left_txt>h3{
    font-size: var(--txt-3xl);
    font-weight: 400;
    line-height: 2.5rem;
}
.banner_left_txt>h3>span{
    font-weight: 700;
}



/**************************************************************/
/**************************************************************/
/**************************** product *************************/
/**************************************************************/
/**************************************************************/
/* ---------------- product_top 상품리스트 상단 --------------*/
.product_top.tit {
    /* border-bottom: 1px dashed #bbb; */
    /* margin-left: 1rem; */
}
.product_top.tit span {
    opacity: 0.25;
    padding: 0 10px;
}
.product_top {
    display: flex;
    /* padding-bottom: 1rem; */
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 1rem; */
}
.product_top .pd_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.product_top .btn_left {
    display: flex;
}
.product_top .btn_right {
    display: flex;
}
.product_top .pager {margin-top: 30px;}
.product_top .pager ul {margin: 0; justify-content: inherit; -webkit-justify-content: inherit;}

/* .product_top .amount {
    flex-grow: 1;
}
.product_top .amount .lg {
    font-size: 1.425rem;
    font-weight: bolder;
    color: var(--sub-color-2);
    padding-right: 4px;
} */
.path .pd_wrap {
    border-bottom: none;
}
.pd_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #ddd; */
}
.pd_category {color:#999;display: flex;align-items: flex-end;font-size: 1rem;justify-content: flex-start;height: 3rem;
    line-height: 3rem;}
.pd_category .category_name {font-size: 1.75rem;font-weight: 500;color: var(--c-black-1);margin-right: 0.25rem;}
.pd_category .count {font-size: 1.25rem;font-weight:600;color: var(--main-color);margin-right: 2px;}
.product_top .view {display: flex;/* height: 32px;  margin-left: 4rem; */}
.product_top .view a.active { font-weight:600;color: var(--main-color); }
.product_top .view_sel {
    margin-left: 10px;
}
.product_top input {
    height: 36px;
    line-height: 36px;
    font-weight: normal;
    font-size: 0.925rem;
    background: #fafafa;
    border: 1px solid #ddd;
    color: #555;
}
.product_list_check {
    padding: 0.5rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fafafa;
}
.product_list_check input {}

  /* ------------------------ product_list 상품리스트 ---------------------*/
  .product input[type="checkbox"] {margin-bottom: -1.5rem;z-index: 9;position: inherit;}
  p.no_product_list {
    text-align: center;
    width: 100%;
    padding: 60px;
    border: 1px solid #efefef;
    background: #fafafa;
    font-size: 1.25rem;
    color: #888;
    padding-right: 120px;
}
  .product_list {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: stretch;
    gap: 30px 20px;
}
.tabcontent.product_list { display: none; }
.product_list .product {
    width: calc((100% - 80px) / 5);
    position: relative;
}
.product_list .product .img {
    width: 100%;
    max-height: 237px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    margin-bottom: 0.5rem;
    background: #fff;
    box-sizing: border-box;
    max-width: 237px;
    /* transition: 0.3s; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--c-black-5);
}
.product_list .product .img img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    /* transition: 0.3s; */
    max-width: fit-content;
}
.img_bg_big{
    width: 100% !important;
    height: 100% !important;
}
.ranking_txt{
    position: absolute;
    top: 5%;
    left: 5%;
    border: 1px solid var(--main-color);
    background-color: #fff;
    width: 45px;
    height: 45px;
    color: var(--main-color);
    text-align: center;
}
.ranking_txt>p{
    font-size: var(--txt-xs);
    font-weight: 600;
}
.ranking_txt>span{
    font-size: var(--txt-xl);
    font-weight: bold;
}
.last_ranking_txt{
    position: absolute;
    top: 5%;
    left: 5%;
    background-color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 7px;
    background-image: linear-gradient(-45deg, #ffe53a 0%, #ff979e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.last_ranking_txt>p{
    color: var(--main-color);
    font-weight: 700;
}
.popular_section{
    border: 1px solid var(--main-color);
    padding: 2rem;
    margin-bottom: 5rem;
}
.mid_txt_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* .product_list .product:hover .img img {
    transform: scale(1.05);
} */
.product_list .product .img .btn_cart {
  position: absolute;
  z-index: 1;
  background: var(--main-color);
  color: var(--c-black-2);
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0.5rem;
  right: 0.5rem;
}
.product_list .product .img .btn_cart span {
  font-size: 1rem;
  color: #fff;
}
.product_list .product .txt {/* text-align: center; */}
.product_list .product .txt .tag_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.product_list .product .txt .tag_wrap .tag {display: inline-block;padding: 0px 5px;font-size: 0.938rem;font-weight: 500;letter-spacing: -1px;}
.product_list .product .txt .tag_wrap .tag.tag_grey {
  border: 1px solid #999;
  background: #999;
  color: #fff;
}
.product_list .product .txt .tag_wrap .tag.tag_red {
  background: var(--main-color);
  color: #fff;
  width: 40px;
  text-align: center;
}
.product_list .product .txt .tag_wrap .tag.tag_green {
  background: var(--sub-color-4);
  color: #fff;
  width: 40px;
  text-align: center;
}
.product_list .product .txt .tag_wrap .tag.tag_blue {
  background: var(--sub-color-3);
  color: #fff;
  width: 40px;
  text-align: center;
}
.product_list .product .txt .tag_wrap .tag.tag_yellow {
  background: var(--sub-color-2);
  color: #fff;
}
.tag_pink{
    background: #ff979e;
    color: #fff;
    width: 55px;
    text-align: center;
    display: inline-block;
    padding: 0px 5px;
    font-size: 0.938rem;
    font-weight: 500;
    /* letter-spacing: -1px; */
}
.tag_gray{
    background: var(--c-black-3);
    color: #fff;
    width: 45px;
    text-align: center;
    display: inline-block;
    padding: 0px 5px;
    font-size: 0.938rem;
    font-weight: 500;
    /* letter-spacing: -1px; */
}

.product_list .product .txt h5 {
    font-size: 0.925rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4em;
    color: #444;
}
.product_list .product .txt h6 {
    color: #111;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 0.25rem;
    overflow: hidden;
    display: block;
}
.product_list .product .txt p {
    font-size: 0.925rem;
    font-weight: 400;
    margin-bottom: -0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4em;
    min-height: 2.5rem;
    color: #757575;
    word-break: break-all;
}
.h_txt{
    max-height: 60px;
}
.percent_wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}
.coin_txt{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
}
.product_list .product .txt h7 {
    font-weight: 400;
    line-height: 1.4em;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
    color: #222;
    text-decoration: line-through;
}
.coin_txt>span{
    font-weight: 700;
    padding-right: 5px;
    letter-spacing: -0.5px;
    font-size: 1.05rem;
}   
.product_list .product .txt h8 {
    font-weight: 400;
    line-height: 1.4em;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
    color: var(--sub-color);
}
.product_list .product .txt h8 span {
    font-size: 1.05rem;
    font-weight: 700;
    padding-right: 3px;
    letter-spacing: -0.5px;
}

  /* ---------------------- product_list_card 카테고리 리스트 ------------------*/
  .product_list_card {
    margin-bottom: 3rem;
}
.product_list_card:last-child {margin: 0;}
  .product_list_card .card {
    width: calc(((100% - 80px) / 5) * 2);
    min-height: 100%;
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: stretch;
    border-radius: var(--rad-md);
    overflow: hidden;
}
  .product_list_card .card .img {
    width: 100%;
    height: calc(100% - 64px);
    background: url(../images/main/main_category.png) no-repeat center;
    background-size: cover;
    color: #fff;
    display: flex;
    padding: 4rem 2.5rem 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: space-between;
}
  .product_list_card .card.card01 .img {
    background: url(../images/main/main_category.png) no-repeat center;
    background-size: cover;
  }
  .product_list_card .card.card02 .img {
    background: url(../images/main/main_category-02.png) no-repeat center;
    background-size: cover;
  }
  .product_list_card .card.card03 .img {
    background: url(../images/main/main_category-03.png) no-repeat center;
    background-size: cover;
  }
  .product_list_card .card.card04 .img {
    background: url(../images/main/main_category-04.png) no-repeat center;
    background-size: cover;
  }
  .product_list_card .card.card05 .img {
    background: url(../images/main/main_category-05.png) no-repeat center;
    background-size: cover;
  }
  .product_list_card .card .img h5 {
    font-size: 1.75rem;
    font-weight: 400;
    width: 100%;
}
  .product_list_card .card .img .tag_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
  .product_list_card .card .img .tag_wrap .tag {
    border: 1px solid #fff;
    padding: 4px 12px;
    font-size: 0.875rem;
    border-radius: 1.25rem;
}
  .product_list_card .card .btn_wrap {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 0 0 1.25rem 1.25rem;
}
.product_list_card .card.card01 .btn_wrap {
    background: var(--main-color);
}
.product_list_card .card.card02 .btn_wrap {
    background: #ffba00;
}
.product_list_card .card.card03 .btn_wrap {
    background: #4dBde5;
}
.product_list_card .card.card04 .btn_wrap {
    background: #765ba7;
}
.product_list_card .card.card05 .btn_wrap {
    background: #1c4da1;
}
  .product_list_card .card .btn_wrap .viewmore {
    background: transparent;
}
  .product_list_card .card .btn_wrap .viewmore span { margin-left: 0.5rem;}


  /* -------------------------- promotion 추천상품리스트 -----------------------*/
   .promotion {
        border: 1px solid var(--sub-color-8);
        padding: 1.5rem;
        /* padding-bottom: 0; */
        margin-top: -1rem;
        margin-bottom: 2rem;
        border-radius: 24px;
    }
    .promotion .tit h4 {
        margin-top: 0 !important;
    }
    .promotion .tit h5 {
        font-size: 1.325rem;
        line-height: 1.3em;
        margin-bottom: 30px;
        font-weight: 400;
        text-align: left;
    }
  
  /* ------------------ product_list_slide 상품리스트(슬라이드) ----------------*/
  .product_list_slide .product {
    width: calc((100% - 80px) / 5);
    margin-bottom: 2rem;
    /* cursor: pointer; */
    position: relative;
  }
  .product_list_slide .product .img {
    width: 100%;
    /* height: 300px; */
    margin: 0 auto;
    aspect-ratio: 1/1;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background: #fff;
    box-sizing: border-box;
    max-width: 240px;
    transition: 0.3s;
    overflow: hidden;
  }
  .product_list_slide .product .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
  }
  .product_list_slide .product:hover .img img {
      transform: scale(1.05);
  }
  .product_list_slide .product .txt h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4em;
    min-height: 3rem;
  }
  .product_list_slide .product .txt h6 {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
    margin-bottom: 8px;
    overflow: hidden;
    display: block;
  }
  .product_list_slide .product .txt h7 {
    font-weight: 400;
    line-height: 1.4em;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
    color: #555;
  }
  .product_list_slide .product .txt h7 span {
      color: var(--main-color-2);
      font-size: 1.175rem;
      font-weight: 700;
      padding-right: 3px;
      letter-spacing: -0.5px;
  }

  /* 세일상품 리스트 */
  .product_list_sale{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px 20px;
  }
  .product_sale{
    width: calc((100% - 20px) / 2) !important;
    position: relative;
  }
  .product_list_sale .product_sale .img_sale{
    width: 100%;
    max-height: 237px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    margin-bottom: 0.5rem;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--c-black-5);
    max-width: none;
  }
  .img_sale>img{
    width: auto;
    height: 100%;
  }


  /* --- 리스트 badge 디자인(기본디자인: 판매순위 숫자뱃지) ---*/
  .num_badge {
      position: absolute;
      left: 0;
      top: 0;
      background: #aaa;
      font-size: 1.125rem;
      font-style: italic;
      font-weight: 800;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 2.25rem;
      aspect-ratio: 1/1;
      border-radius: 0 0 12px 0;
      padding-right: 0.25rem;
      z-index: 8;
  }
  .num_badge.top3 {
      background: linear-gradient(135deg, #007bff, #6fb12d);
  }
  
  
/* -------------- product_view 상품 상세페이지 ---------------*/
.product_preview {
    display: flex;
    margin: 2rem auto 0;
}
.product_preview .img_wrap {
    width: 40%;
    padding: 0 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_preview .img {
    width: 100%;
    aspect-ratio: 1/1;
    /* border: 1px solid #ddd; */
    box-sizing: border-box;
}
.product_preview .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_preview .cont {
    width: 60%;
}
.product_preview .cont .tit h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}
.product_preview .cont .tit h3 {
    margin: 1rem 0;
    font-size: var(--txt-3xl);
}
.product_preview .cont .tit p {
    font-size: 1rem;
    font-weight: 400;
    color: #757575;
}
.product_preview .cont .price_wrap {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}
.product_preview .cont .price_wrap .sale {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sub-color);
}
.product_preview .cont .price_wrap .price_now {
    font-weight: bold;
    font-size: 1.75rem;
    margin-left: 0.75rem;
}
.product_preview .cont .price_wrap .price_now span {
    font-size: 1.375rem;
}
.product_preview .cont .price_wrap .price_prev {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.75rem;
}
.product_preview .cont .detail {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    padding: 20px 0;
}
.product_preview .cont .detail li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.product_preview .cont .detail li:last-child {
    margin-bottom: 0;
}
.product_preview .cont .detail .price {
    font-weight: 600;
    font-size: 1.125rem;
}
.product_preview .cont .detail li .price_off {
    text-decoration: line-through !important;
    color: #999 !important;
    font-weight: 400 !important;
    width: auto !important;
}
.product_preview .cont .detail li .price_lg {
    font-size: 1.125rem;
    color: var(--sub-color-2);
    font-weight: 800;
}
.product_preview .cont .detail li .tit {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    display: inline-block;
    width: 8.75rem;
}
.product_preview .cont .detail li p {
    color: #666;
}
.product_preview .option .product_option {
    width: 200px;
    /* margin-bottom: 10px; */
}
.product_preview .option {
    display: flex;
    align-items: center;border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.product_preview .option p {
    font-weight: 500;
    width: 8.75rem;
}
.option_selected {
    overflow: hidden;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    background: #f5f5f5;
    margin-bottom: 10px;
}
.option_selected .wrap {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
}
.option_selected .wrap:last-child {
    margin-bottom: 0;
}
.option_selected p {
    font-size: 1rem;
    color: #666;
    float: left;
    padding-top: 10px;
}
.option_selected .close_search {
    float: right;
    padding-top: 10px;
    cursor: pointer;
}
.option_selected .count_btn {
    display: flex;
    align-items: center;
    float: right;
    margin-right: 12px;
}
.option_selected .count_btn a {
    width: 42px;
    height: 42px;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.option_selected .count_btn a:last-child {
    transform: rotate(180deg);
}
.option_selected .count_btn input[type=text] {
    width: 60px;
    border-left: 0;
    border-right: 0;
    text-align: center;
    height: 42px !important;
}
.view_count {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.product_view_big_p{
    font-size: var(--txt-lg);
    font-weight: 700 !important;
}
.product_view_big{
    font-size: var(--txt-xl);
}
/* 1: 입력+버튼형태 주문수량 */
.count {
    display: flex;
    align-items: center;
}
.count p {
    font-weight: 500;
    width: 8.75rem;
}
.count .count_btn {
    display: flex;
    align-items: center;
}
.count .count_btn a {
    width: 42px;
    height: 42px;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.count .count_btn a:last-child {
    transform: rotate(180deg);
}
.count .count_btn input[type=text] {
    width: 60px;
    border-left: 0;
    border-right: 0;
    text-align: center;
    height: 42px !important;
}
/* 2: 입력 형태 주문수량 */
/* .count {
    display: flex;
    align-items: center;
}
.count p {
    margin-right: 20px;
    font-weight: 500;
    width: 80px;
}
.count .count_btn {
    display: flex;
    align-items: center;
}
.count .count_btn input[type=text] {
    width: 60px;
    aspect-ratio: 60/42;
    border-left: 0;
    border-right: 0;
    text-align: center;
    border: 1px solid #ddd;
} */
.total_price {
    display: flex;
    align-items: flex-end;
    /* border-bottom: 1px solid #ddd; */
    margin: 1.5rem 0 2rem;
    justify-content: flex-end;
}
.total_price p {
    margin-right: 1rem;
    font-weight: 500;
    /* width: 70px; */
}
.total_price h6 {
    color: #757575;
    font-size: 1rem;
}
.total_price .price {
    color: var(--main-color);
    font-size: 1.75rem;
    font-weight: 700;
    padding-right: 4px;
    letter-spacing: -0.5px;
}
.product_btn {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.product_btn .not_sale {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: crimson;
    background: #f1f1f1;
    /* border: 1px solid #ddd; */
    font-size: 1.125rem;
    text-align: center;
    font-weight: 500;
}
.product_btn .not_sale span {
    padding-right: 8px;
}
.product_btn input {
    width: calc((100% - 3rem) /4);
    /* border-radius: var(--rad-sm); */
    font-size: 1.125rem;
}
.basket_btn input{
    width: calc((100% - 3rem) /3);
}
.product_btn.three input {
    width: calc((100% - 2rem) /3);
}
.product_btn02 input {
    width: 49.5%;
}
.product_price {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*상품문의하기 버튼*/
.prd_tablinks_02{
    padding: 0.7rem;
    width: calc((100% - 65rem) / 2);
    border: 1px solid var(--c-black-5);
    font-size: 1.125rem;
    text-align: center;
    transition: 0.5s;
    color: #555;
    box-sizing: border-box;
    margin: 0;
    font-weight: 500;
}
.prd_tablinks_02.active_02{
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-weight: 600;
}
.prd_tablinks_02:hover{
    color: var(--main-color);
    border: 2px solid var(--main-color);
    font-weight: 600;
}

.product_detail {
    margin-top: 60px;
}
.product_detail .tab_link {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}
.product_detail .tab_link .prd_tablinks {
    padding: 0.5rem;
    /* width: calc(100%/3); */
    width: 140px;
    border: 1px solid var(--c-black-5);
    font-size: 1rem;
    text-align: center;
    transition: 0.5s;
    color: #555;
    box-sizing: border-box;
    margin: 0;
    font-weight: 500;
}
.product_detail .tab_link .prd_tablinks:hover, .product_detail .tab_link .prd_tablinks.active {
    color: #fff;
    background: var(--main-color);
    border: none;
    font-weight: 600;
}
.product_detail .tabcontent {
    /* padding: 30px 0 0 0; */
}
.product_detail .tabcontent .detail_sm {
    font-size: 0.925rem;
    color: #757575;
    line-height: 1.6em;
    font-weight: 400;
}
.product_detail .tabcontent .detail_sm span {
    font-weight: 600;
    color: #333;
    display: block;
    width: 100%;
    padding-bottom: 6px;
}
.product_detail_tb th, .product_detail_tb td {
    font-size: 0.9rem !important;
    text-align: left;
    border-right: 0;
    background: none;
    color: #555;
    padding: 8px;
}
.product_detail_tb th {
    width: 20%;
}
.pd_txt { padding: 20px 0px 0px; }
.pd_txt .tit {font-weight: 500;font-size: 1rem;margin: 1rem 0 0.8rem;}
.pd_txt p { margin:10px 0 10px;font-size: 0.925rem;color: #757575;}
.pd_txt ul { margin:10px 0 30px; color: #666;}
.pd_txt ul li {line-height: 1.5em;font-size: 0.925rem;color: #757575;}
.pd_txt h4 {
    font-size: 1.125rem;
    font-weight:
    bold;
    line-height:1.2em;
    width:100%;
    color: var(--sub-color-5);
}
.pd_txt_qna h4{
    font-size: 1.5rem !important;
}
.pd_txt table {
    border: 1px solid #ddd;
}
.pd_txt table td, .pd_txt table th, .view_cont table td, .view_cont table th {
    font-size: 0.925rem;
    padding: 6px;
}
.view_cont table, .view_cont .tb_scroll {
    max-width: 800px;
    margin: 0 auto;
}
.view_cont img {margin: 0 auto; display: block;}
.pd_txt_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pd_txt_wrap>a{
    width: 110px;
    height: 45px;
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.pd_txt_wrap>a:hover{
    color: #fff;
    background-color: var(--main-color);
}
.inquiry_wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.inquiry_wrap .cont:first-child{
    border-top: 2px solid #333;
}
.inquiry_wrap .cont{
    width: 100%;
    border-bottom: 1px solid #d4d9dd;
    padding: 1rem;
}
.inquiry_wrap .cont_on{
    background-color: #f0f0f0;
}
.inquiry_wrap .cont_on .tit_wrap .tit{
    margin-left: 10px;
}
.inquiry_wrap .cont_on .tit_wrap .tit img{
    height: 24px;
}
.inquiry_wrap .cont .tit_wrap{
    margin-bottom: 0.75rem;
    overflow: hidden;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inquiry_wrap .cont .tit_wrap .tit{
    max-width: calc(100% - 18.75rem);
    max-height: 1.75rem;
    overflow: hidden;
    display: flex;
}
.inquiry_wrap .cont .tit_wrap .tit p{
    display: block;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
}
.inquiry_wrap .cont .tit_wrap .info{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inquiry_wrap .cont .tit_wrap .info>p{
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
}
.inquiry_wrap .cont .txt_wrap{
    max-height: 49px;
    line-height: 1.6em;
    overflow: hidden;
    transform: rotate(-.03deg);
    font-weight: 400;
    margin-left: 45px;
}
.cate_01{
    background: var(--main-color);
    font-weight: 600;
    margin-right: 10px;
    text-align: center;
    padding: 5px;
    line-height: 1rem;
    font-size: 1rem;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cate_02{
    background: var(--sub-color-2);
    font-weight: 600;
    margin-right: 10px;
    text-align: center;
    padding: 5px;
    line-height: 1rem;
    font-size: 1rem;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
}




/* ------------------- tb_product 상품이미지 및 정보 테이블 -------------------*/
.product_table {
    border-top: 2px solid var(--sub-color-6);
    border-bottom: 1px solid #222;
}
.product_table .tb_product {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.product_table td {
    vertical-align: middle;
    border-right: 0;
}
.order_li_btn input {margin: 4px;}
.order_li_btn a {margin: 4px;display: inline-block; }
.product_table td .count {justify-content: center;}
.product_table .tb_product .img {
    width: 9rem;
    aspect-ratio: 1/1;
    border: 1px solid #ddd;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
}
.product_table .tb_product .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.product_table .tb_product .txt {
    /* width: calc(100% - 540px); */
    /* display: flex;
    flex-wrap: wrap;
    align-content: space-around; */
}
.product_table .tb_product .txt h2 {
    width: 100%;
    font-size: 1.125rem;
    padding-bottom: 10px;
}
.product_table .tb_product .txt .detail {
    width: 100%;
    font-size: 0.925rem;
    font-weight: normal;
    color: #666;
    display: flex;
    padding-bottom: 10px;
}
.product_table .tb_product .txt .detail li:after {
    content: "｜" ;
	margin: 10px;
	color: #ccc;
	font-size: 0.8rem;
}
.product_table .tb_product .txt .detail li:last-child:after {
    content: "" ;
}
.product_table .tb_product .txt .detail02 {
    width: 100%;
    font-size: 0.925rem;
    font-weight: normal;
    color: #666;
    padding-bottom: 10px;
}
.product_table .tb_product .txt .detail02 span {
    color: #222;
    font-weight: 600;
    padding-right: 6px;
}
product_table .tb_product .txt .detail02 span.sale {
    text-decoration: none !important;
    color: #ee202e !important;
    font-weight: 500 !important;
    margin-left: 3px;
    display: inline-block;
    font-size: 1.125rem;
}
.product_table .tb_product .txt .option {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.product_table .tb_product .txt .option.count .count_btn a {
    height: 32px;
    width: 32px;
}
.product_table .tb_product .txt .option.count .count_btn input[type=text] {
    height: 32px;
    font-size: 0.925rem;
}
.product_table .tb_product .txt .option select {
    height: 32px;
    width: 100%;
    font-size: 0.925rem;
    padding: 0 5px;
    color: #555;
    margin-left: 10px;
}
.product_table .tb_product .txt .option select:first-child {
    margin-left: 0;
}

.product_table .tb_product .txt {text-align: left;/* margin-left: 1rem; */}
.product_table .tb_product .txt .tag_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.product_table .tb_product .txt .tag_wrap .tag {display: inline-block;padding: 0px 5px;font-size: 0.938rem;font-weight: 500;letter-spacing: -1px;}
.product_table .tb_product .txt .tag_wrap .tag.tag_grey {
  border: 1px solid #999;
  background: #999;
  color: #fff;
}
.product_table .tb_product .txt .tag_wrap .tag.tag_red {
    background: var(--main-color);
    color: #fff;
    width: 40px;
    text-align: center;
}
.product_table .tb_product .txt .tag_wrap .tag.tag_green {
    background: var(--sub-color-4);
    color: #fff;
    width: 40px;
    text-align: center;
}
.product_table .tb_product .txt .tag_wrap .tag.tag_blue {
    background: var(--sub-color-3);
    color: #fff;
    width: 40px;
    text-align: center;
}
.product_table .tb_product .txt .tag_wrap .tag.tag_yellow {
  background: var(--sub-color-2);
  color: #fff;
}
.product_table .tb_product .txt h5 {
    font-size: 0.925rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4em;
    color: #444;
}
.product_table .tb_product .txt h6 {
    color: #111;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 0.25rem;
    overflow: hidden;
    display: block;
}
.product_table .tb_product .txt p {
    font-size: 0.925rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4em;
    max-height: 2.5rem;
    color: #757575;
}
.product_table .tb_product .txt h7 {
    font-weight: 400;
    line-height: 1.4em;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
    color: #222;
}
.product_table .tb_product .txt h7 span {
    font-weight: 700;
    padding-right: 3px;
    letter-spacing: -0.5px;
    font-size: 1.05rem;
}
.product_table .tb_product .txt h8 {
    font-weight: 400;
    line-height: 1.4em;
    max-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
    color: var(--sub-color);
}
.product_table .tb_product .txt h8 span {
    font-size: 1.05rem;
    font-weight: 700;
    padding-right: 3px;
    letter-spacing: -0.5px;
}
.product_table .txt_strong { 
    display: none;
}
.product_table ul {}
.product_table ul li {
    margin: 5px 0;
}

  /**************************************************************/
  /**************************************************************/
  /********************** order 주문페이지 **********************/
  /**************************************************************/
  /**************************************************************/
  /* ------------------- 주문번호 바리에이션 -------------------*/
  .max .subtit h5.ordernum {
      font-size: 1.15rem;
      padding: 8px 10px;
      display: inline-block;
      border: 1px solid var(--sub-color-2);
      color: var(--sub-color-2);
      font-weight: 500;
      border-radius: 4px;
      margin-bottom: 30px;
  }
  .max .subtit h5.tracknum {
      font-size: 1.15rem;
      padding: 8px 10px;
      display: inline-block;
      border: 1px solid var(--main-color-2);
      color: var(--main-color-2);
      font-weight: 500;
      border-radius: 4px;
      margin-left: 10px;
      margin-bottom: 30px;
  }
  .max .subtit h5.state {
      font-size: 1.15rem;
      padding: 8px 10px;
      display: inline-block;
      border: 1px solid #ddd;
      color: #ddd;
      font-weight: 500;
      border-radius: 4px;
      margin-left: 10px;
      margin-bottom: 30px;
  }
  .max .subtit h5.state.btn_normal_b {
      border: 1px solid #757575;
      background: #fff;
      color: #333;
  }
  .max .subtit h5.state.btn_normal_b2 {
      border: 2px solid #999;
      background: #fff;
      color: #555;
  }
  .max .subtit h5.state.btn_normal_b3 {
      border: 1px solid var(--main-color-2);
      color: var(--main-color-2);
      border-radius: 3px;
  }
  .max .subtit h5.state.btn_normal_b_clr {
      border: 1px solid var(--main-color-2);
      background: #fff;
      color: var(--main-color-2);
  }
  .max .subtit h5.state.btn_normal_b_grey {
      border: 1px solid #ddd;
      background: #fff;
      color: #888;
  }
  .max .subtit h5.state.btn_normal_b_red {
      border: 1px solid #dc040e;
      background: #fff;
      color: #dc040e;
  }
  .order_detail_tb {
    border: 1px solid #ddd;

}
.order_detail_tb th {
    font-size: 0.9rem !important;
    background: #f5f5f5;
    color: #333;
    text-align: left;
    border-right: 0;
    padding: 8px 12px;
    width: 15%;
    vertical-align: middle;
}
.order_detail_tb td {
    font-size: 0.9rem !important;
    color: #555;
    text-align: left;
    border-right: 0;
    background: none;
    padding: 8px 12px;
}
.order_detail_tb th.wid_auto {
    width: auto;
}

/**************************************************************/
/**************************************************************/
/******************** mypage 마이페이지 ***********************/
/**************************************************************/
/**************************************************************/

.mypage_wrap { width:100%; overflow: hidden; display: flex; justify-content: space-between; align-items: center;} 
.mypage_info {width:30%;border-radius: var(--rad-md);overflow: hidden;background: #efefef;}
.my_id {width: 100%;padding: 1.25rem 1.25rem 1rem;/*color: #666;*/box-sizing: border-box;border-bottom: 1px solid #fff;}
.my_id span {font-size: 1.375rem;font-weight: 600;color: var(--sub-color-5);} 
.my_id p {font-size: 1.125rem; color: #fff; opacity: 0.8; margin-top: 5px;} 
.my_pay_wrap {padding: 1.25rem 1.5rem 1.125rem;}
.my_pay {width: 100%;font-size: 1.125rem;color: #333;box-sizing: border-box;display: flex;justify-content: space-between;align-items: center;font-weight: 500;}
.my_pay span.total {font-size: 1.875rem;color: var(--main-color);font-weight: bold;}
.my_pay span.total_b{
    font-size: var(--txt-lg);
    font-weight: bold;
    color: var(--main-color);
    margin-left: 0.5rem;
}
.my_pay span.total_b:hover{
    color: var(--sub-color-3);
}
.my_pay span.vat {font-size: 1rem;color: #757575; font-weight: 400;}
.my_menu {width: 100%;background: #ffb20a;padding: 0.75rem 0;box-sizing: border-box;font-size: 0.925rem;display: flex;justify-content: space-between;}
.my_menu a {width: 50%;text-align: center;position: relative;color: #fff;}
.my_menu a:hover { color: var(--main-color); font-weight: 500;}
.my_menu a:first-child:before {display: none;}
.my_menu a:before {
	content: '';
	display: inline-block;
	margin: 0 0px;
	width: 1px;
	height: 16px;
	background: #fff;
	position: absolute;
	left: 0px;
	top: 3px;
}
.mypage_state {width: 67%;border-radius: 20px;display: flex;justify-content: space-between; box-sizing: border-box; align-items: center;}
.mypage_state .state {width: 20%;text-align: center;position: relative;display: flex;justify-content: center;align-items: center;flex-wrap: wrap;color: #222;padding: 0;}
.mypage_state .state .circle {width: 85%;aspect-ratio: 1/1;display: flex;justify-content: center;align-items: center;border-radius: 100%;text-align: center;font-size: 2rem;color: var(--sub-color-5);background: #fafafa;margin: 0 auto;border: 3px solid var(--sub-color-2);}
.mypage_state .state .tit { margin-top: 1.25rem; }
.mypage_state .state:last-child {/* background: #ddd; */height: 100%;min-height: 100%;align-self: end;}
.mypage_state .state .number { width: 24px; height: 24px; line-height: 24px; border-radius: 12px; text-align: center; font-size: 15px; color:#fff; background: #00b6ad; position: absolute; bottom: 50px; left:65%;  }
.mypage_state .state ul {
    color: #555;
}
.mypage_state .state ul li span {
    font-weight: 600;
    color: #333;
    padding-right: 6px;
}
.mypage_state .state ul li {
    padding-bottom: 10px;
}
.mypage_state .state ul li:last-child {
    padding-bottom: 0;
}

.mypage_state.coupon {
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    gap: 1.5rem;
}
.mypage_state.coupon .state { 
    width: 50%;
    text-align: center;
    color: var(--sub-color-6);
    background: #fafafa;
    margin: 0 auto;
    border: 3px solid var(--sub-color-5);
    border-radius: 20px;
    padding: 1.5rem;
}
.mypage_state.coupon .state {width: 100%;border-radius: 20px;display: flex;justify-content: space-between; box-sizing: border-box; align-items: center;font-size: 1.25rem;}
.mypage_state.coupon .state .tit {
    margin-top: 0;
}    
.mypage_state.coupon .state .no strong {
    font-size: 2rem;
    margin-right: 10px;
}    

.mypage_menu {
    display: flex;
    margin-top: 4rem;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.mypage_menu>ul{
    width: 100%;
}
.mypage_box{
    margin-top: 20px;
    width: 100%;
    padding: 13px 18px;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: var(--rad-md);
    font-size: var(--txt-lg);
}
.mypage_box:hover{
    background-color: var(--sub-color-2);
    color: #fff;
    font-weight: 500;
}
.mypage_manager{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 49%;
    padding: 13px 40px;
    background: #efefef;
    border-radius: var(--rad-md);
}
.mypage_manager>p{
    font-size: 1.1rem;
    font-weight: 400;
}
.mypage_manager>span{
    font-size: 1rem;
}
.my_bottom>h5{
    font-size: 1.75rem;
}
.mypage_bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.mypage_bottom>ul{
    width: 100%;
}
.mypage_box_b{
    margin-top: 1.5rem;
    width: 100%;
    padding: 13px 18px;
    background: var(--sub-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: var(--rad-md);
    font-size: var(--txt-lg);
    color: #fff;
    font-weight: 500;
}
.mypage_box_b:hover{
    color: var(--main-color);
}

/**************************************************************/
/**************************************************************/
/********************* print 프린트페이지 *********************/
/**************************************************************/
/**************************************************************/
.pop_print{ 
    padding: 20px;
    width: 840px;
    min-width: 840px;
    max-width: 840px;
    max-height: 740px;
}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 4px solid #aaa;
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 100px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    /* min-height: 65vh; */
    min-height: 60vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.print_center .wrap .box {
    width: 33%;
}
.print_center .wrap .box .tit {
    margin-bottom: 10px;
}
.print_center .wrap .box .tit h7 {
    padding-left: 10px;
    font-weight: bold;
    background: #fff;
    display: inline-block;
    font-size: 16px;
    border-left: 5px solid var(--main-color);
}
.print_center .wrap .box .cont {
    margin-bottom: 30px;
}
.print_center .wrap .box .cont h8 {
    font-weight: bold;
    font-size: 17px;
}
.print_center .wrap .box .cont p {
    font-size: 14px;
    color: #333;
}
.print_center .wrap .box .cont ul {
    font-size: 14px;
}
.print_center .wrap .box.box_num .num {
    display: flex;
    background: #ddd;
    margin-bottom: 10px;
    padding: 2px 6px;
}
.print_center .wrap .box.box_num .num p {
    font-weight: bold;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid #ccc;
    vertical-align: middle;
}
.pop_print .print_tb td {
    border-right: 1px solid #ccc;
    font-size: 14px;
	text-align:left;
}
.print_bottom .bottom_wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.print_bottom .bottom_wrap .note {
    border-top: 1px dotted #aaa;
    padding-top: 10px;
    font-size: 15px;
    width: 60%;
}
.print_bottom .bottom_wrap .note p {
    font-size: 14px;
    display: flex;
    gap: 10px;
    word-break: break-all;
}
.print_bottom .bottom_wrap .note p span {
    font-weight: bold;
    font-size: 15px;
}
.print_bottom .bottom_wrap .result {
    display: flex;
    width: 40%;
    justify-content: space-between;
    align-self: baseline;
    background: #efefef;
    padding: 4px 8px;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    font-weight: bold;
}
.print_bottom .bottom_wrap .result p span {
    font-weight: 400;
    margin-right: 4px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}
.print_bottom .footer {
    background: none;
    border-top: 4px solid #aaa;
    padding-top: 20px;
    font-size: 14px;
    color: #666;
}
.print_bottom .footer p {
    word-break: break-word;
}
.print_bottom .footer .sign_two {
    display: flex;
    gap: 20px;
}
.print_bottom .footer .sign_two .sign {
    width: 50%;
    border-bottom: 1px dotted #222;
    padding-bottom: 10px;
    text-align: right;
}
.print_bottom .footer .sign_two .sign p {
    font-size: 16px;
    color: #222;
}
.pop_print .tit h5 {
    font-size: 1.5rem;
    line-height: 1.3em;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

/**************************************************************/
/**************************************************************/
/************************** pop 팝업 **************************/
/**************************************************************/
/**************************************************************/
#pop_tax {padding: 20px; width: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#pop_tax table {width: 800px;}
#pop_tax table td, #pop_tax table th {padding: 0 !important;}
#pop_tax .tax_tb {
    border: var(--main-color-2) 3px double;
    word-break: break-all;
    table-layout: fixed;
}
#pop_tax .tax_tb .set, #pop_tax .tax_tb .set td {border: 0; height: 0.1px; padding: 0; margin: 0;}
#pop_tax .no_bd, #pop_tax .no_bd td {border: 0;}
#pop_tax .tax_top, #pop_tax .tax_top th, #pop_tax .tax_top td {border: 0; text-align: left; padding: 0;}

#pop_receipt {padding: 20px; width: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#pop_receipt table {width: 800px;}
#pop_receipt table td, #pop_receipt table th { padding: 0.75rem !important;}
#pop_receipt .tax_tb {
    border: var(--main-color-2) 3px double;
    word-break: break-all;
    table-layout: fixed;
}
#pop_receipt .tax_top th {background: #d8dfe6 !important;}
#pop_receipt .tax_tb .set, #pop_receipt .tax_tb .set td {border: 0; height: 0.1px; padding: 0; margin: 0;}
#pop_receipt .no_bd, #pop_receipt .no_bd td {border: 0;}
#pop_receipt .tax_top, #pop_receipt .tax_top th, #pop_receipt .tax_top td {border: 0; text-align: left; padding: 0.75rem;}

#pop_order {padding: 20px; width: 840px; min-width: 840px; max-width: 840px; max-height: 740px;}
#pop_order table {width: 800px;}
#pop_order table td, #pop_tax table th {padding: 0 !important;}
#pop_order .tax_tb {
    border: var(--main-color-2) 3px double;
    word-break: break-all;
    table-layout: fixed;
}
#pop_order table td {padding: 8px 10px !important;}
#pop_order .basket table .tb_product .img {width: 80px; height: 80px;}
#pop_order .tax_tb .set, #pop_tax .tax_tb .set td {border: 0; height: 0.1px; padding: 0; margin: 0;}
#pop_order .no_bd, #pop_tax .no_bd td {border: 0;}
#pop_order .tax_top, #pop_tax .tax_top th, #pop_tax .tax_top td {border: 0; text-align: left; padding: 0;}

#search_pop {
    width: 688px;
    height: 712px;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 auto;
    overflow-y: auto;
    position: fixed;
    top: 0;
    margin-top: 2%;
    left: 0;
    right: 0;
    z-index: 99999999999999;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3); 
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
#search_pop .tit {
    overflow: hidden;
    font-size: 1.25rem;
    text-align: center;
}
#search_pop .tit span {
    float: right;
    cursor: pointer;
    font-size: 1.125rem;
}
#search_pop .t_search {
    display: flex;
}
#search_pop .t_search_wrap {
    width: 100%;
    background: #f1f1f1;
    padding: 20px;
    margin: 1rem 0;
}
#search_pop .t_search_wrap .top_wrap {
    display: flex;
    gap: 0.5rem;
}
#search_pop .t_search_wrap .top_wrap .view_sel {
    width: 25%;
}
#search_pop .t_search_wrap .top_wrap .view_sel select {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
#search_pop .t_search_wrap .search_wrap .search_group {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap .search_group input#schText {
    width: calc(100% - 40px);
}
#search_pop .t_search_wrap .t_search input.sell_form {
    padding: 0px 15px;
    width: calc(100% - 29px);
    height: 40px;
    border: 1px solid #ccc;
    border-right: none;
    color: #999;
    box-sizing: border-box;
}
#search_pop .t_search span.img {
    width: auto;
    height: 40px;
    border: 1px solid #ccc;
    border-left: none;
    box-sizing: border-box;
    float: right;
    text-align: center;
    padding-top: 8px;
    background: #fff;
    padding-right: 10px;
}
#search_pop .t_search_wrap p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.925rem;
}
#search_pop .btn_search {
    float: left;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-block;
    cursor: pointer;
    padding: 4px 0 0 7px;
    box-sizing: border-box;
    margin-top: 17px;
}
#search_pop .btn_search:hover {
    background-color: #000;
}
#search_pop .product_list {gap: 20px;}
#search_pop .product_list .product {
}
#search_pop .product_list .product .txt h6 {
    font-size: 0.825rem;
    margin-bottom: 0.125rem;
    word-break: break-all;
}
#search_pop .product_list .product .txt h7 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h7 span {
    font-size: 0.925rem;
}
#search_pop .product_list .product .txt h8 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h8 span {
    font-size: 0.925rem;
}
#search_pop .product_list .product .img img {
    width: 70%;
    height: 70%;
}
.product_bottom {
    overflow: hidden;
    margin-top: 40px;
}
/**************************************************************/
/**************************************************************/
/******************** order_sale 특가주문 *********************/
/**************************************************************/
/**************************************************************/
.order_sale {
    border-radius: var(--rad-sm);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sub-color-5);
    margin-bottom: 1rem;
}
.order_sale .sel_wrap {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.order_sale .sel_wrap .view_sel, .order_sale .sel_wrap .view_sel select {
    width: 100%;
}

/**************************************************************/
/**************************************************************/
/************************ data 자료실 *************************/
/**************************************************************/
/**************************************************************/
.data_top {
    border-radius: var(--rad-md);
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    background: var(--main-color-2);
}
.data_top .top_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.data_top .top_wrap .view_sel {
    margin-right: 0.25rem;
    margin-bottom: 10px;
}
.data_top .top_wrap .view_sel:last-child {
    margin-right: 0;
}
.data_top .top_wrap .view_sel select {
    width: 196px;
    border: none;
    border-radius: var(--rad-sm);
}
.data_top select  {
    /* border: none; */
    /* border-radius: var(--rad-sm); */
}
.data_top .top_wrap .search_group {
    /* border: none; */
    /* border-radius: var(--rad-sm); */
}
.data_top .top_wrap .search_group #schText {
    width: 446px;
}

.data_tab .tab_link {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}
.data_tab .tab_link .tablinks {
    width: 20%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 20px;
    border: 1px solid #ddd;
    border-bottom: 1px solid #222;
    box-sizing: border-box;
    color: #757575;
    cursor: pointer;
    transition: 0.5s;
}
.data_tab .tab_link .tablinks.active, .data_tab .tab_link .tablinks:hover {
    border-radius: 4px 4px 0 0;
    border: 1px solid #222;
    border-bottom: 0;
    color: #222;
    font-size: 1.125rem;
}
.data_tab .tab_link_depth .tabcontent {
    width: 100%;
    padding: 30px;
    color: #333;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    background: #ddd;
}
.data_tab .tab_link_depth>div>a {
    display: inline-block;
    cursor: pointer;
    font-size: 0.925rem;
}
.data_tab .tab_link_depth>div>a:hover {
    font-weight: bold;
}

.data_cont {
    margin-top: 60px;
}

.data_list .file {
    display: flex;
}
.data_list .file .link_ic {
    padding-left: 10px;
}

.data_list {
    border-top: 1px solid #ddd;
}
.data_list .product {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    display: flex;
    align-items: center;
}
.data_list .product .num {
    width: 2%;
    color: #555;
    font-size: 0.925rem;
}
.data_list .product .date {
    width: 10%;
    text-align: right;
    color: #555;
    font-size: 0.925rem;
}
.data_list .product .case {
    width: 8%;
    font-size: 0.925rem;
    text-align: center;
}
.data_list .product .case01 {
    color: var(--main-color);
}
.data_list .product .case02 {
    color: var(--sub-color);
}
.data_list .product .comp {
    width: 15%;
    font-size: 0.925rem;
    text-align: center;
}
.data_list .product .tit {
    width: 65%;
    cursor: pointer;
}
.data_list .product .tit>p {
    background: #ddd;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.825rem;
    color: #222;
    margin-bottom: 6px;
}
.data_list .product .tit>h3 {
    font-size: 1rem;
    font-weight: normal;
}
  
/**************************************************************/
/**************************************************************/
/******************** date_search 기간검색 ********************/
/**************************************************************/
/**************************************************************/
.date_search {
    gap: 0.25rem;
    margin-bottom: 0.25rem !important;
}
.date_search .date_tit {
    font-weight: 600;
    margin-right: 1rem;
}
.date_search .date_sel input {
    border-radius: var(--rad-sm);
    border: 0;
    margin-right: 0.25rem;
}
.date_search .date_txt {
    /* padding: 0 5px; */
    font-weight: 200;
    font-size: 2rem;
    opacity: 0.4;
}
.data_top .top_wrap .date_form .search_group #schText {width: 334px;}
  
  /**************************************************************/
  /**************************************************************/
  /**************************** footer **************************/
  /**************************************************************/
  /**************************************************************/
  /* ----------------------- 3단 info 박스 ---------------------*/
  .section_footer_info {
    /* background: #f6f6f6; */
}
  .footer_info {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      flex-wrap: wrap;
      margin: 0 0 3.5rem;
  }
  .footer_info .box {
      width: 32%;
      text-align: left;
      border: 1px solid var(--c-black-5);
  }
  .footer_info .box .tit {
      overflow: hidden;
      margin-top: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .footer_info .box .tit span {
    float: right;
  }
  .footer_info .box .tit .tit_l {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
  .section_footer_info .footer_info .box h4 {
      font-size: 1.375rem;
      font-weight: 600;
      margin-left: 10px;
  }
  .footer_info .box .tit span {
      float: right;
      font-size: 28px;
      cursor: pointer;
  }
  .footer_info .box .cont {
      border-radius: var(--rad-md);
      background: #fff;
      padding: 35px;
      text-align: center;
      height: 100%;
      position: relative;
  }
  .footer_info .box .cont.notice_cont {text-align: left;}
  .footer_info .box .cont .lg {
      font-size: 1.825rem;
      font-weight: 700;
      /* padding-bottom: 4px; */
      /* color: var(--main-color); */
      text-align: left;
      line-height: normal;
      margin-bottom: 1.5rem;
  }
  .footer_info .box .cont .lg span {
      /* vertical-align: sub; */
      /* font-size: 2rem; */
  }
  .footer_info .box .cont .lg_mail {
      font-size: 1.25rem;
      font-weight: 700;
      padding-bottom: 4px;
      color: #00017dd6;
  }
  .footer_info .box .cont .lg_mail span {
      vertical-align: sub;
  }
  .footer_info .box .cont .sm {
      font-size: 0.938rem;
      font-weight: normal;
      line-height: 1em;
      color: #757575;
      /* position: absolute; */
      text-align: left;
      /* bottom: 1.5rem; */
      width: 100%;
  }
  .footer_info .box .cont .bank {
      max-width: 124px;
      margin-right: 0.5rem;
      margin-top: -0.125rem;
  }
  .footer_info .box .cont .md {
      font-size: 1.075rem;
      font-weight: 500;
      line-height: 1.4em;
      color: #555;
      margin-top: 0.25rem;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .footer_info .box .notice li {
      cursor: pointer;
      margin-bottom: 16px;
      white-space: pre;
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      font-weight: 400;
      line-height: 1em;
  }
  .footer_info .box .notice li:last-child {
      margin-bottom: 0;
}
.longtxt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    /* line-height: 1.4em; */
    color: #444;
    /* padding: 0 1rem; */
    max-width: 400px;
    max-height: 40px;
    line-height: 40px;
}
/*우측 퀵*/
#right_quick {
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 1;
    /* padding: 6px; */
    width: 110px;
    margin-left: 690px;
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 10%);
}

#right_quick > .contents_con {/* width: 114px; */}

#right_quick > .contents_con > .nav {
}

#right_quick > .contents_con > .view_con {
    /* padding: 10px 0 9px 0; */
}

#right_quick > .contents_con > .view_con > .title_con {
    /* margin-bottom: 9px; */
    text-align: center;
    background: #dcdcdc;
    padding: 5px 0;
}

#right_quick > .contents_con > .view_con > .title_con span {
    font-size: 15px;
    color: #555555;
    font-weight: 600;
}

#right_quick > .contents_con > .view_con > .slide_con {
}

#right_quick > .contents_con > .view_con > .slide_con .swiper-container {
    padding: 6px;
}

#right_quick > .contents_con > .view_con > .slide_con .swiper-container .swiper-wrapper .swiper-slide {
    margin-bottom: 6px;
}
#right_quick > .contents_con > .view_con > .slide_con .swiper-container .swiper-wrapper .swiper-slide:last-child {
    margin-bottom: 0px;
}
#right_quick > .contents_con > .view_con > .slide_con .swiper-container .swiper-wrapper .swiper-slide .img {
    width: 95px;
    height: 95px;
    border: 1px solid #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* margin: 6px; */
}
#right_quick > .contents_con > .view_con > .slide_con .swiper-container .swiper-wrapper .swiper-slide .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s;
    max-width: fit-content;
}
#right_quick > .contents_con > .view_con > .slide_con .swiper-container .swiper-wrapper .swiper-slide p {
    font-size: 13px;
    margin-top: 0.1rem;
    /* width: calc(100% - 20px); */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 1rem;
}
#right_quick > .contents_con > .view_con > .slide_con .btn_con {
    
width: 100%;
    
display: flex;
    
justify-content: center;
    
align-items: center;
    
gap: 6px;
    
/* margin: 6px; */
    
margin-bottom: 6px;
}

#right_quick > .contents_con > .view_con > .slide_con .btn_con .btn_more {
    border: 1px solid #ddd;
    display: block;
    width: calc(50% - 10px);
    height: 25px;
}

/* left menu */
.lnb{
    width: 202px;
    float: left;
    margin-top: 2rem;
}
.lnb .left_tit{
    width: 202px;
    height: 56px;
    background: var(--main-color-2);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    padding: 1rem;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.03rem;
}
.lnb .left_box{
    width: 202px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 1rem;
    background: #f0f0f0;
}
.lnb .left_box ul.left_m li{
    margin: 4px 10px 9px 0 !important;
    cursor: pointer;
}
.lnb .left_box ul.left_m li.on{
    color: var(--main-color-2);
    font-weight: bold;
}
.catalogue_box{
    width: 202px;
    height: 56px;
    margin-top: 1.5rem;
    background: var(--main-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalogue_box a{
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03rem;
}

/* 서브컨텐츠 flex */
.subcont_wrap{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.subcont_wrap .lnb{
    /* width: 29%; */
}

/* 서브페이지 틀 - Specification */
.sub_box{
    width: 1050px;
    float: right;
    margin-top: 2rem;
}
.sub_box .product_tab_box{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    margin-bottom: 2rem;
}
.sub_box .product_tab_box a{
    padding: 1rem;
    width: calc(100%/3);
    border: 1px solid #ddd;
    font-size: 1.125rem;
    text-align: center;
    transition: 0.5s;
    color: #555;
    box-sizing: border-box;
    margin: 0;
    font-weight: 500;
}
.sub_box .product_tab_box .active{
    color: #fff;
    background: var(--main-color);
    border: none;
    font-weight: 500;
}
.sub_box .product_txt_box{
    width: 1050px;
    height: auto;
    border: 1px solid #ddd;
    padding: 1rem 1.4rem;
}
.sub_box .product_txt_box ul li span{
    font-size: 1rem;
    font-weight: 600;
    width: 130px;
    display: inline-block;
}
.sub_box .product_txt_box ul li{
    border-bottom: 1px dotted #ddd;
    margin: 9px 10px 9px 0;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.7rem;
}
.sub_box .product_txt_box ul li .txtbox{
    word-break: break-all;
    font-size: 1rem;
    font-weight: 400;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden; */
    max-width: 100%;
}
.sub_box .product_txt_box ul li .pattern_flex{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
}
.sub_box .product_txt_box ul li .pattern_flex p{
    width: 77%;
}
.sub_box .product_txt_box ul li .pattern_flex .pattern_p_02{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sub_box .product_txt_box ul li .pattern_flex .pattern_p_03{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pattern_btnfull{
    height: 35px;
    font-size: 0.938rem;
    min-width: 7rem;
    border-radius: 5px;
}
.pattern_grey{
    height: 35px;
    font-size: 0.938rem;
    min-width: 7rem;
    border-radius: 5px;
}


.sub_box .product_tit{
    position: relative;
    margin-bottom: 0.7rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub_box .product_tit::before{
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    /* top: 30%; */
    display: inline-block;
    left: 0;
}
.sub_box .product_tit h5{
    font-size: 1.125rem;
    font-weight: 500;
    margin-left: 1rem;
    color: var(--sub-color);
}
.sub_box .product_box{
    display: flex;
    align-items: inherit;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2.2rem;
}
.sub_box .product_box .box{
    width: calc((100% - 9rem)/5);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
} 
.sub_box .product_box .box .img{
    width: 180px;
    height: 180px;
    border: 1px solid #ddd;
}
.sub_box .product_box .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub_box .product_box .box .txt{
    text-align: center;
    margin-top: 0.2rem;
}
.sub_box .product_box .box .txt p{
    font-size: 1rem;
    font-weight: 400;
}

/* 서브페이지 틀 - Packing */
.sub_box .tab_img_box{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.sub_box .tab_img_box .img{
    /* width: 400px; */
    width: auto;
    height: auto;
}
.sub_box .tab_img_box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 서브페이지 틀 - pattern */
.sub_box .product_click_box{
    background: #f0f0f0;
}
.sub_box .product_click_box ul{
    display: flex;
    align-items: center;
}
.sub_box .product_click_box ul li{
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: flex;
    /* margin-left: 0.6rem; */
    border-bottom: 0;
    padding-bottom: 0;
    padding: 0 0.6rem;
}
.sub_box .product_click_box ul li:nth-child(1){
    margin-left: 0;
}
.sub_box .product_click_box ul li::before{
    content: "";
    width: 1px;
    height: 14px;
    background: #999;
    position: absolute;
    top: 14%;
    left: 105%;
}
.sub_box .product_click_box ul li:nth-child(10)::before{
    display: none;
}
.sub_box .product_click_box ul li:hover{
    color: var(--main-color);
}
.sub_box  .product_tit h5 span{
    color: var(--main-color);
    font-weight: 600;
}
.sub_box .product_click .box{
    cursor: pointer;
}

/* 서브페이지 틀 - pattern_view */
.sub_box .product_viewbox{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}
.sub_box .product_viewbox .left{
    width: 29%;
}
.sub_box .product_viewbox .left .img{
    border: 1px solid #ddd;
    width: 293px;
    height: 293px;
}
.sub_box .product_viewbox .left .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub_box .product_viewbox .right{
    width: 70%;
}
.sub_box .product_viewbox .right .product_txt_box{
    width: 735px;
    padding: 1rem 1.5rem;
}
.sub_box .product_viewbox .right .detail_button{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.1rem;
}
.sub_box .product_view_wrap{
    margin-top: 2rem;
    display: flex;
    align-items: inherit;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.sub_box .product_view_wrap .box{
    width: calc((100% - 7rem)/8);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.sub_box .product_view_wrap .box .img{
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
}

.sub_box .product_view_wrap .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Company > About */
.sub_box .about_box{
    padding: 3rem;
    margin: 0 0 3.5rem 0;
}
.about_box h5{
    font-size: 1.25rem;
    color: var(--main-color-2);
}
.about_box .greeting_p{
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}
.about_box .top_p{
    margin-top: 3rem;
}

/* Company > Factory */
.product_txt_box .img_box{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about_box .no_p{
    margin-top: 0;
}

/* Company > Location */
.location_box{
    width: auto !important;
}
.location_mapbox{
    margin-top: 2rem;
}

/* Customer > notice */
.sub_box .notice_box{
    margin: 0 0 4rem 0;
}

/* Customer > inquiry */
.sub_box .inquiry_box p{
    font-size: 1.1rem;
    font-weight: 500;
}

/* E-catalogue > E-catalogue */
.ecatalogue_box{
    border: none;
}
.ecatalogue_box .ecatalogue_inner{
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}
.ecatalogue_box .ecatalogue_inner .box{
    width: 22.7%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.ecatalogue_box .ecatalogue_inner .box .img{
    border: 1px solid #ddd;
    width: 250px;
    height: 330px;
}
.ecatalogue_box .ecatalogue_inner .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ecatalogue_box .ecatalogue_inner .box .info{
    width: 100%;
}
.ecatalogue_box .ecatalogue_inner .box .info .catalogue_button{
    margin-top: 1rem;
}
.ecatalogue_box .ecatalogue_inner .box .info .catalogue_button .btn{
    border: none;
    height: 40px;
    width: 100%;
    color: var(--sub-color);
}
.ecatalogue_box .ecatalogue_inner .box .info .catalogue_button .btn:hover{
    background: var(--sub-color);
    color: #fff;
}
.ecatalogue_box .ecatalogue_inner .box .ecatalogue_tit{
    margin-top: 0;
    width: 100%;
    text-align: start;
}

/* PVC Tarpaulin > Tarpaulin +a 그 외 디자인페이지들 */
.Tarpaulin_wrap{
    margin-top: 0 !important;
}
.Tarpaulin_wrap .product_view_wrap .box{
    width: calc((100% - 5rem)/6);
    margin-bottom: 0;
}
.Tarpaulin_wrap .product_view_wrap .box .img{
    width: 220px;
    height: auto;
}
.Tarpaulin_wrap .tarpaulin_ul{
    margin-top: 1rem;
}
.Tarpaulin_wrap .tarpaulin_box{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.Tarpaulin_wrap .tarpaulin_box .img{
    width: 32.3%;
    border: 1px solid #ddd;
}
.Tarpaulin_wrap .tarpaulin_big_img{
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #ddd;
}
.Tarpaulin_wrap .tarpaulin_box_2{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.Tarpaulin_wrap .tarpaulin_box_2 .img{
    width: 23.8%;
    border: 1px solid #ddd;
}
.Tarpaulin_wrap .tarpaulin_box_3{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.Tarpaulin_wrap .tarpaulin_box_3 .img{
    width: 49.2%;
    border: 1px solid #ddd;
}
.Tarpaulin_wrap .tarpaulin_box_3 .img_big{
    width: 100%;
}
.Tarpaulin_wrap .tarpaulin_box_noline .img{
    border: 0;
}
.Tarpaulin_wrap .tarpaulin_box_noline .img img{
    width: 500px;
}
.Tarpaulin_wrap .tarpaulin_box_item{
    align-items: stretch;
}
.Tarpaulin_wrap .tarpaulin_box_4{
    margin-top: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
}
.Tarpaulin_wrap .tarpaulin_box_4 .img{
    width: 40%;
}
.Tarpaulin_wrap .tarpaulin_box_4 .img_flex{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.Tarpaulin_wrap .wall_wrap{
    
}
.Tarpaulin_wrap .wall_wrap .wall_box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1rem; */
}
.Tarpaulin_wrap .wall_wrap .wall_box .left{
    width: 51%;
}
.Tarpaulin_wrap .wall_wrap .wall_box .left p{
    font-size: 1.125rem;
    text-align: justify;

}
.Tarpaulin_wrap .wall_wrap .wall_box .right{
    width: 47%;
}
.Tarpaulin_wrap .wall_wrap .wall_box .right .img img{
    width: 450px;
}
.Tarpaulin_wrap .pvcfree_box .img{
    height: 190px;
    overflow: hidden;
}

/* others > pvc compound +a 그 외 디자인페이지들 */
.sub_box .other_color{
    background: #f0f0f0;
}
.sub_box .product_txt_box .tarpaulin_ul li{
    border-bottom: 0;
    padding-bottom: 0;
}
.sub_box .location_box .flex_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}
.wallpaper .about_box .greeting_p:nth-child(1){
    margin-top: 0;
}
.wallpaper .about_box .greeting_p:nth-child(2){
    margin-bottom: 2rem;
}
.wallpaper .about_box .other_button_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wallpaper .about_box .other_button_wrap .other_button{
    background: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 50px;
    margin-top: 2rem;
    cursor: pointer;
    border-radius: 0.5rem;
}
.wallpaper .about_box .other_button_wrap .other_button p{
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01rem;
}
.wallpaper .about_box .other_button_wrap .other_button p span{
    font-size: 1.125rem;
    font-weight: 600;
}
.pvc_cloth_box{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

/* others > PVC Table Cloth*/
.pvc_cloth_box .img{
    width: 32.3%;
}
.pvc_cloth_box .img img{
    border: 1px solid #ddd;
}
.pvc_cloth_box .img p{
    text-align: center;
    padding: 10px;
}
.squre .link a:hover{
    color: var(--main-color);
}

/* top 버튼 */
.btn_move_top{
    position: fixed;
    bottom: 20px;
    right: 2%;
    z-index: 999;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    display: none;
    border-radius: 30px;
    font-weight: 500;
}
