@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
@import url(//cdn.jsdelivr.net/font-nanum/1.0/nanumbarungothic/nanumbarungothic.css);

/**********************************************************
                           common
***********************************************************/
html,
body {
    position: relative;
    width: 100%;
}

body {
    min-width: 320px;
    margin: 0 auto;
    font-size: 14px;
    font-family: "Nanum Barun Gothic", "Lato", sans-serif;
    font-weight: normal;
    letter-spacing: normal;
    color: #000;
    background-color: #fff;
    line-height: 1.2;
}

select,
input {
    font-family: "Lato";
}

header,
nav,
section,
footer {
    width: 100%;
}

.hd_logo img { width: 250px; }

.hs {
    position: relative;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.hs_full {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
}

.hs_pd {
    position: relative;
    width: 100%;
    padding: 0 60px;
    text-align: center;
}

.subtitle {
    margin: 95px auto;
    text-align: center;
    font-size: 40px;
    line-height: 32px;
    font-weight: bold;
}

.subtitle span {
    font-size: 12px;
    color: #bebebe;
    font-weight: normal;
    display: block;
}

.subtitle p {
    display: block;
    margin-top: 17px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
}

/**********************************************************
                        common_class
***********************************************************/
.bg_black {
    background-color: #000;
}

.bg_white {
    background-color: #fff;
}

.bg_darkyellow {
    background-color: #c5a14e;
}

.bg_orange {
    background-color: #ee5308;
}

.col_black {
    color: #000;
}

.col_white {
    color: #fff;
}

.col_darkyellow {
    color: #c5a14e;
}

.col_orange {
    color: #ee5308;
}

a.col_graytype1,
.col_graytype1 {
    color: #aaaaaa;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_underline,
a.text_underline {
    text-decoration: underline;
}

.fw_b {
    font-weight: bold;
}

.fw_n {
    font-weight: normal;
}

.hs_btn {
    display: block;
    width: 150px;
    border: 1px solid #707070;
    line-height: 40px;
    font-size: 14px;
}

/**********************************************************
                         header
***********************************************************/
.header {
    position: relative;
    padding: 35px 0 15px;
}

.hd_search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hd_search>form>input[type="text"] {
    display: inline-block;
    width: 323px;
    height: 30px;
    padding: 9px 13px;
    font-size: 14px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
}

.hd_search>form>input[type="submit"] {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/search.png) no-repeat center center;
    background-size: cover;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none;
}

/**********************************************************
                          nav
***********************************************************/
.nav_hs_full {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.mainnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 60px;
}

.nav_btn {
    display: none;
    position: absolute;
    top: 50%;
    width: 25px;
    height: 21px;
    background: url(../images/nav_btn.png) no-repeat center center;
    background-size: cover;
    transform: translateY(-50%);
    cursor: pointer;
}

.nav_con {
    width: 82%;
}

.nav_con>.nc_wrap {
    display: flex;
    justify-content: space-between;
    margin-left: -20px;
}

.nav_con .nc_list {
    flex: auto;
}
.nav_con .nc_list>a:hover{ font-weight:bold;  }

.nav_con .nc_list>a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #000000;
}

.nc_user {
    display: flex;
}

.nc_user .nc_login {
    position: relative;
    margin-right: 20px;
}

.nc_user .nc_login:hover .nc_member {
    display: block;
}

.nc_user .nc_login>a {
    padding: 9px 40px 9px 20px;
    border-radius: 19px;
    font-size: 14px;
    color: #fff;
}

.nc_user .nc_login>a:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 18px;
    margin-right: 9px;
    background: url(../images/user.png) no-repeat center center;
    vertical-align: text-bottom;
}

.nc_user .nc_member {
    display: none;
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #dddddd;
    background: #fff;
    padding: 10px 0 10px 10px;
    text-align: left;
}

.nc_user .nc_member .nc_mem_list {
    display: block;
    line-height: 34px;
    font-size: 13px;
}

.nc_user .nc_member .nc_mem_list>a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.nc_user .nc_member .nc_mem_list.nc_mem_mypage>a:before {
    background: url(../images/member_mypage.png) no-repeat center center;
}

.nc_user .nc_member .nc_mem_list.nc_mem_order>a:before {
    background: url(../images/member_order.png) no-repeat center center;
}

.nc_user .nc_member .nc_mem_list.nc_mem_cs>a:before {
    background: url(../images/member_cs.png) no-repeat center center;
}

.nc_user .nc_member .nc_mem_list.nc_mem_myinfo>a:before {
    background: url(../images/member_myinfo.png) no-repeat center center;
}

.nc_user .nc_member .nc_mem_list.nc_mem_logout>a:before {
    background: url(../images/member_logout.png) no-repeat center center;
}
.nc_user .nc_member .nc_mem_list i{ font-size:18px;  }

.nc_support>a {
    line-height: 35px;
    font-size: 15px;
    font-weight: bold;
}

.nc_support_search {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.nc_support_search a {
    display: inline-block;
    color: #aaa;
    font-size: 14px;
    text-decoration: underline;
    padding-top: 62px;
}

.nc_support_search a:hover {
    color: #555;
    text-decoration: none;
}

.nc_support_search>form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nc_support_search>form>input[type="text"] {
    display: inline-block;
    width: 323px;
    height: 30px;
    padding: 9px 13px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
}

.nc_support_search>form>input[type="submit"] {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/search.png) no-repeat center center;
    background-size: cover;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none;
}

.nc_support_fixed {
    text-align: center;
}

.nc_support_fixed h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.nc_support_fixed p {
    margin-bottom: 50px;
}

.nc_support_fixed_boxwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 110px;
}

.nc_support_fixed_box {
    width: 100%;
    height: 118px;
    border: solid 1px #ddd;
    border-radius: 5px;
    padding: 20px;
}

.nc_support_fixed_box:hover {
    border: solid 1px #c5a14e;
    background: #fcfcfc;
}

.nc_support_fixed_box h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.nc_support_fixed_box p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.nc_support_fixed_box span {
    color: #aaa;
    font-size: 12px;
}

.nc_support_fixed_box .color_gold {
    font-size: 24px;
    color: #c5a14e;
}

.nc_support_fixed_boxwrap a:nth-child(2) {
    margin: 0 30px;
}

.nc_support_map {
    text-align: center;
}

.nc_support_map h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.nav_wrap .nav_hover { position:relative;  }

.nav_wrap .nav_hover:hover .nav_hover_wrap {
    transform: scaleY(1);
}

.nav_wrap .nav_hover_wrap {
    transition: 0.3s;
    transform-origin: top;
    transform: scaleY(0);
    z-index: 10;
    position: absolute;
    padding: 0px;
    width: 130px;
    top: 62px;
    left: -10px;
    background-color: #fff;
    border: 1px solid #eee;
}

.nav_wrap li:nth-child(4) .nav_hover_wrap { left: -20px;  }
.nav_wrap li:nth-child(5) .nav_hover_wrap { left: -20px;  }
.nav_wrap li:nth-child(6) .nav_hover_wrap { left: 0px;  }
.nav_wrap li:nth-child(7) .nav_hover_wrap { left: -15px;  }

.nav_wrap .nav_hover_wrap a {
    padding: 0px 0;
    font-size: 15px;
    color: #000;
}

.nav_wrap .nav_hover_wrap li {
    border-bottom: 1px solid #ddd;
    height: auto;
    line-height: 45px;
}
.nav_wrap .nav_hover_wrap li:hover{ font-weight:bold;  }

.nc_support_map p {
    margin-bottom: 30px;
}

.silde_area {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.mainbanner_slide {
    max-width: 630px;
    width: 60%;
}

.mainbanner_fix {
    display: flex;
    align-items: center;
    background: url(../images/main_fix.png) no-repeat center center;
    background-size: cover;
    max-width: 420px;
    width: 40%;
}

/* .mainbanner_fix>img {
  width: 101%;
  height: auto;
} */

.mainbanner_slide .mbs_bg {
    width: 100%;
    height: 645px;
}

.mainbanner_slide .mbs_bg01 {
    background: url(../images/main_slide01.png) no-repeat center center;
    background-size: cover;
}

.mainbanner_slide .mbs_bg02 {
    background: url(../images/main_slide02.png) no-repeat center center;
    background-size: cover;
}

.mainbanner_slide .mbs_bg03 {
    background: url(../images/main_slide03.png) no-repeat center center;
    background-size: cover;
}

.mainbanner_slide .swiper-pagination {
    position: absolute;
    left: 50%;
    margin-top: 20px;
    transform: translateX(-50%);
}

.maincontent.mdpick .swiper-pagination-bullet,
.mainbanner_slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border: 1px solid #aaaaaa;
    background: #fff;
    opacity: 1;
    outline: none;
}

.maincontent.mdpick .swiper-pagination-bullet-active,
.mainbanner_slide .swiper-pagination-bullet-active {
    background: #ee5308;
}

/**********************************************************
                        popup
***********************************************************/
#hd_pop {
    z-index: 99999;
    position: relative;
    margin: 0 auto;
    width: 970px;
    height: 0;
    max-width: 100%;
}

#hd_pop h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.hd_pops {
    position: absolute;
    border: 1px solid #e9e9e9;
    background: #fff;
}

.hd_pops_con {}

.hd_pops_con img {
    max-width: 100%;
}

.hd_pops_footer {
    font-size: 12px;
    padding: 10px 0;
    background: #000;
    color: #fff;
    text-align: right;
}

.hd_pops_footer button {
    margin-right: 5px;
    padding: 5px 10px;
    border: 0;
    background: #393939;
    color: #fff;
}

/**********************************************************
                        sub
***********************************************************/
.sub {
    width: 1050px;
    margin: 0 auto;
}

@media screen and (max-width: 1050px) {
    .sub {
        width: 100%;
        padding: 0 20px;
    }
}

/**********************************************************
                        section
***********************************************************/
.maincontent {
    padding: 80px 0 40px;
    text-align: left;
}

.maincontent .mc_title {
    position: relative;
    margin-bottom: 40px;
}

.maincontent .mc_title>h2 {
    font-size: 24px;
    font-weight: bold;
}

/* goods start */
.mc_goods {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mc_goods .mc_gd_list {
    position: relative;
    width: 23%;
    margin-bottom: 60px;
}

.mc_goods .mc_gd_img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 250px;
    border: 1px solid #eee;
}

.mc_goods .mc_gd_img>img {
    width: 100%;
}

.mc_goods .mc_gd_img>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.mc_goods .mc_gd_dcrate {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 3px 13px 8px;
    background: #deb34e;
    text-align: center;
}

.mc_goods .mc_gd_dcrate.dn {
    display: none;
}

.mc_goods .mc_gd_dcrate:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 22px;
    left: 50%;
    width: 34px;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
}

.mc_goods .mc_gd_dcrate>p {
    line-height: 19px;
    font-size: 16px;
    color: #fff;
}

.mc_goods .mc_gd_title {
    width: 100%;
    height: 40px;
    margin-top: 9px;
    line-height: 20px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mc_goods .mc_gd_price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 13px;
}

.mc_goods .mc_gd_price .mc_gd_sale {
    margin-right: 8px;
    line-height: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.mc_goods .mc_gd_price .mc_gd_sale>span {
    font-size: 14px;
}

.mc_goods .mc_gd_price .mc_gd_original {
    line-height: 20px;
    font-size: 14px;
    color: #aaaaaa;
    text-decoration: line-through;
}

/* goods end */
/* md's pick start */
.maincontent.mdpick .mc_title {
    display: inline-block;
}

.maincontent.mdpick .swiper-pagination {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

.mdp_slcon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.mdp_slcon .mdp_slimg>img {
    width: 100%;
}

.mdp_slcon .mdp_sltext {
    width: 40%;
}

.mdp_slcon .mdp_slname {
    position: relative;
    margin-bottom: 28px;
    font-size: 35px;
    font-weight: bold;
}

.mdp_slcon .mdp_slname:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -200px;
    width: 200px;
    height: 2px;
    background: #aaaaaa;
}

.mdp_slcon .mdp_slname>span {
    margin-right: 30px;
    font-size: 53px;
    font-weight: 900;
    color: #c5a14e;
    vertical-align: sub;
}

.mdp_slcon .mdp_slexplan {
    max-width: 295px;
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 14px;
    color: #6b6b6b;
}

.mdp_slcon .mdp_slprice {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: bold;
}

.mdp_slcon .mdp_slbtn {
    text-align: center;
}

/* MD's PICK end */
/* middle Banner start */
.middlebanner {
    margin: 50px 0;
}

.mb_wrap {
    display: flex;
}

.mb_wrap .mb_img {
    display: block;
}

/* middle Banner end */
/* all products start */
.allproduct .mc_title {
    display: flex;
    align-items: center;
}

.allproduct .mc_title>h2 {
    flex-basis: 250px;
    flex-shrink: 0;
}

.allpd-container {
    width: 100%;
}

.allpd-container .swiper-slide {
    display: block;
    width: auto;
}

.allpd-container .swiper-button {
    display: none;
}

.mc_pdnav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mc_pdnav .mc_pdnav_list>a {
    display: block;
    border-bottom: 2px solid transparent;
    line-height: 27px;
    font-size: 20px;
    color: #dcdcdc;
    letter-spacing: -0.6px;
}

.mc_pdnav .mc_pdnav_list>a:hover {
    color: #ee5308;
    border-bottom: 2px solid #ee5308;
}

.mc_pdnav .mc_pdnav_list>a.active {
    color: #ee5308;
    border-bottom: 2px solid #ee5308;
}

.allpd-container .swiper-button-next,
.allpd-container .swiper-button-prev {
    color: #000;
}

.allpd-container .swiper-button-next:after,
.allpd-container .swiper-button-prev:after {
    font-size: 24px;
}

/* all products end */
/* patech story start */
.mc_story .mc_st_text {
    margin-top: 19px;
}

.mc_story .mc_st_text>p {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mc_story .mc_st_text>p.mc_st_tit {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.6px;
}

.mc_story .mc_st_text>p.mc_st_explan {
    font-size: 13px;
    color: #afafaf;
    letter-spacing: -0.5px;
}

/* patech story end */
/**********************************************************
                         login
***********************************************************/
.form2-box {
    margin: 0px 0px 50px;
    transition: 0.3s linear;
    overflow: hidden;
    position: relative;
    cursor: default;
    -webkit-transition: all 0.3s linear;
}

.form2-section {
    margin-bottom: 70px;
}

.form2_input {
    width: 100%;
    height: 60px;
    padding: 6px 20px;
    border: 2px solid #ddd;
    border-radius: 35px;
    display: block;
    margin-bottom: 10px;
}

.form2_input::placeholder {
    font-size: 14px;
    color: #ddd;
}

.form2_submit {
    width: 100%;
    height: 60px;
    background: #000;
    color: #fff;
    border: 0px;
    text-align: center;
    padding: 6px 20px;
    border-radius: 35px;
    display: block;
    margin-bottom: 10px;
}

.form2_submit:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.form2_button {
    width: 100%;
    height: 60px;
    padding: 20px 20px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 35px;
    display: block;
    margin-bottom: 10px;
}

#login_password_lost {
    text-decoration: underline;
    text-align: center;
    width: 100%;
    display: block;
}

.panel {
    border-radius: 20px !important;
}

.panel-footer {
    background: none !important;
}

/**********************************************************
                         footer
***********************************************************/
.footer {
    background: #333333;
    padding: 35px 0;
    letter-spacing: -0.4px;
}

.ft_con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.ft_con .ft_title,
.ft_con .ft_title>a {
    font-size: 18px;
    color: #fff;
}

.ft_con .ft_text {
    line-height: 20px;
    font-size: 14px;
    color: #fff;
}

.ft_contact .ft_ct_cs {
    margin: 30px 0 24px;
}

.ft_contact .ft_ct_cs .ft_ct_csname {
    margin-bottom: 5px;
    font-size: 15px;
    color: #999999;
}

.ft_contact .ft_ct_cs .ft_ct_tel {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
}

.ft_contact .ft_ct_add .ft_ct_addtit {
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff;
}

.ft_contact .ft_ct_add>p {
    line-height: 17px;
    font-size: 13px;
    color: #999999;
}

.ft_nav {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ft_navwrap {
    display: flex;
}

.ft_navwrap.no_sublist {
    display: block;
}

.ft_navwrap .ft_nav_list .ft_nav_sub {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
}

.ft_navwrap.no_sublist .ft_nav_list {
    margin-bottom: 40px;
}

.ft_navwrap .ft_nav_list .ft_title {
    margin-bottom: 33px;
}

.ft_navwrap .ft_nav_list .ft_nav_sublist {
    margin-bottom: 15px;
    margin-left: 40px;
}

.ft_navwrap .ft_nav_list .ft_nav_sublist:last-child {
    margin-bottom: 0;
}

.ft_navwrap .ft_nav_list .ft_nav_sublist .ft_text {
    line-height: 16px;
}

.copyright {
    padding: 18px 0;
    background: #000;
    justify-content: center;
}

.copyright>p {
    font-size: 12px;
    color: #db9f81;
    letter-spacing: -0.36px;
}

.send_box {
    width: 800px;
    margin: 0 auto 100px;
}

.send_box .send_tit {
    font-size: 22px;
    text-align: left;
}

.send_box input,
.send_box select,
.send_box textarea {
    padding: 10px;
    font-size: 14px;
    color: #888;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.send_box .send_name,
.send_box .send_subject {
    width: 100%;
}

.send_box .send_email,
.send_box .send_phone {
    width: 100%;
}

.send_box .send_message {
    width: 100%;
    height: 130px;
}

.send_box .send_btn {
    width: 100%;
    padding: 10px;
    background: #9b885d;
    color: #fff;
    border: none;
    margin-top: 10px;
}

.send_btn_zip {
    background: #9b885d;
    color: #fff !important;
    width: 100px;
    border: 0px;
    padding: 10px;
}

.input_left {
    width: 50%;
    padding: 0 5px;
    float: left;
    margin: 10px 0px;
}

.input_left2 {
    width: 50%;
    padding: 0 5px;
}

.input_center {
    width: 100%;
    padding: 0 5px;
}

.serial_chk {
    width: auto;
    padding: 0 20px;
    line-height: 38px;
    cursor: pointer;
}

.serial_mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.serial_modal {
    display: none;
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media screen and (max-width: 1023px) {
    .serial_modal {
        width: 90%;
    }

    .serial_modal>img {
        width: 100%;
        max-width: 860px;
    }
}

/**********************************************************
                      responsive
***********************************************************/
@media screen and (max-width: 1090px) {
    .hs {
        width: 100%;
        max-width: none;
        padding: 0 30px;
    }

    .nav_con>.nc_wrap {
        margin-left: 0;
    }

    .middlebanner {
        margin: 0;
        background: none;
    }

    .mb_wrap {
        flex-direction: column;
    }

    .mb_wrap .mb_img:first-child {
        margin-bottom: 20px;
    }

    .mb_wrap .mb_img>img {
        width: 100%;
        max-width: 525px;
    }

    .mc_goods .mc_gd_img {
        height: calc(250vw / 1090 * 100);
    }
}

@media screen and (max-width: 1024px) {
    .hd_search>form>input[type="text"] {
        width: 180px;
    }

    #header {
        position: fixed;
        z-index: 11;
        top: 0;
        left: 0;
        background: #fff;
    }

    #header.active {
        box-shadow: 0 2px 20px 5px rgba(0, 0, 0, 0.12);
    }

    #nav {
        position: fixed;
        z-index: 11;
        top: 97px;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #fff;
        transition: all 0.3s ease-in-out;
    }

    #nav.active {
        left: 0;
    }

    .nav_hs_full {
        border-bottom: none;
    }

    .nav_hs {
        padding: 0;
    }

    .nav_btn {
        display: block;
    }

    .mainnav {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: center;
        line-height: normal;
        text-align: left;
    }

    .nav_con {
        width: 100%;
        padding: 15px 0;
    }

    .nav_con>.nc_wrap {
        display: block;
        margin: 0 auto;
    }

    .nav_con .nc_list {
        padding: 0 30px;
    }

    .nav_con .nc_list>a {
        font-size: 18px;
        line-height: 50px;
    }

    .nc_user {
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nc_user .nc_login,
    .nc_user .nc_support {
        width: 50%;
        margin: 0 auto;
        text-align: center;
    }

    .nc_user .nc_login>a,
    .nc_user .nc_support>a {
        display: block;
        width: 100%;
        padding: 0;
        line-height: 50px;
        border-radius: 0;
    }

    .maincontent {
        padding: 80px 0 20px;
    }

    .mainbanner_slide {
        margin-top: 125px;
    }

    .mainbanner_fix {
        margin-top: 125px;
    }

    .mainbanner_slide .mbs_bg01 {
        background: url(../images/main_slide01.png) no-repeat center center;
        background-size: cover;
    }

    .mainbanner_slide .mbs_bg02 {
        background: url(../images/main_slide02.png) no-repeat center center;
        background-size: cover;
    }

    .mainbanner_slide .mbs_bg03 {
        background: url(../images/main_slide03.png) no-repeat center center;
        background-size: cover;
    }

    .mc_goods .mc_gd_list {
        width: 24%;
    }

    .mdp_slcon .mdp_slimg {
        width: 60%;
        padding-left: 20px;
    }

    .mdp_slcon .mdp_slname:after {
        display: none;
    }

    .allproduct .mc_title {
        flex-direction: column;
    }

    .allproduct .mc_title>h2 {
        flex-basis: auto;
        margin-bottom: 25px;
    }

    .ft_con {
        flex-direction: column;
    }

    .ft_nav {
        justify-content: flex-start;
        margin-top: 60px;
    }

    .ft_navwrap .ft_nav_list .ft_nav_sub {
        grid-template-columns: repeat(2, 2fr);
    }

    .ft_navwrap .ft_nav_list .ft_nav_sublist {
        margin-left: 0px;
    }

    .ft_navwrap .ft_nav_list .ft_nav_sublist .ft_text {
        font-size: 18px;
        line-height: 2;
    }

    .ft_con .ft_text {
        color: #ffffff;
    }
}

@media screen and (max-width: 850px) {
    .mainbanner_slide .mbs_bg {
        height: 450px;
    }
}

@media screen and (max-width: 800px) {
    .mc_goods {
        justify-content: space-around;
    }

    .mc_goods .mc_gd_list {
        width: 40%;
    }

    .mc_goods .mc_gd_img {
        height: calc(260vw / 800 * 100);
    }

    .mdp_slcon {
        flex-direction: column-reverse;
        max-width: 500px;
    }

    .mdp_slcon .mdp_sltext {
        width: 100%;
        margin-top: 22px;
        text-align: center;
    }

    .mdp_slcon .mdp_slexplan {
        max-width: none;
        padding: 0 15px;
        text-align: left;
    }

    .mdp_slcon .mdp_slbtn>.hs_btn {
        margin: 0 auto;
    }

    .mdp_slcon .mdp_slimg {
        width: 100%;
        padding-left: 0;
    }

    .allpd-container .swiper-slide {
        display: flex;
        width: 100%;
    }

    .allpd-container .swiper-button {
        display: flex;
        outline: none;
    }


    .ft_navwrap .ft_nav_list:first-child {
        margin-left: 0;
    }

    .ft_navwrap.no_sublist .ft_nav_list {
        margin-left: 40px;
    }

    .nc_support_fixed_boxwrap {
        flex-direction: column;
    }

    .nc_support_fixed_box {
        width: 350px;
    }

    .nc_support_fixed_boxwrap a:nth-child(2) {
        margin: 20px 0;
    }
}

@media screen and (max-width: 640px) {
    .hs {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .hd_search>form>input[type="text"] {
        width: 0;
        padding: 0px 20px 0 5px;
        border: none;
        transition: all 0.3s ease-in-out;
    }

    .hd_search>form>input[type="text"].active {
        width: 100px;
        border-bottom: 2px solid #000;
    }

    .hd_search>form>input[type="submit"] {
        right: 5px;
    }

    #nav {
        top: 77px;
    }

    .mainnav {
        top: 78px;
    }

    .nav_btn {
        width: 18px;
        height: 15px;
    }

    .mainbanner_slide {
        margin-top: 77px;
    }

    .mainbanner_fix {
        margin-top: 77px;
    }

    .mainbanner_slide .mbs_bg {
        height: 350px;
    }

    .maincontent .mc_title {
        text-align: center;
    }

    .mc_goods .mc_gd_price {
        align-items: flex-start;
        flex-direction: column;
    }

    .mc_goods .mc_gd_title {
        font-size: 13px;
    }

    .mdp_slcon .mdp_slname {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .mdp_slcon .mdp_slname>span {
        font-size: 29px;
    }
}

@media screen and (max-width: 500px) {

    .mainbanner_slide .mbs_bg01 {
        background: url(../images/main_silde01_mob.png) no-repeat center center;
        background-size: cover;
    }

    .mainbanner_slide .mbs_bg02 {
        background: url(../images/main_silde02_mob.png) no-repeat center center;
        background-size: cover;
    }

    .mainbanner_slide .mbs_bg03 {
        background: url(../images/main_silde03_mob.png) no-repeat center center;
        background-size: cover;
    }

    .mainbanner_fix {
        background: url(../images/main_fix_mob.png) no-repeat center center/cover;
    }

    .mc_goods {
        justify-content: space-between;
    }

    .mc_goods .mc_gd_list {
        width: 48%;
        margin-bottom: 20px;
    }

    .mc_goods .mc_gd_img {
        height: calc(220vw / 500 * 100);
        min-height: 140px;
    }

    .mc_story .mc_st_text {
        display: none;
    }

    .ft_nav {
        flex-direction: column;
    }

    .ft_navwrap.no_sublist {
        width: 100%;
        margin-top: 40px;
        font-size: 0;
    }

    .ft_navwrap.no_sublist .ft_nav_list {
        display: inline-block;
        width: 50%;
        margin-left: 0;
    }

    .maincontent.mdpick .mc_title {
        display: block;
    }

    .maincontent.mdpick .swiper-pagination {
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 360px) {
    .mainbanner_slide {
        width: 100%;
    }

    .mainbanner_slide .mbs_bg {
        height: 450px;
    }

    .mainbanner_fix {
        display: none;
    }
}

/**********************************************************
                    swiper(css 가장 아래)
***********************************************************/
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}