@charset "utf-8";

* {
    font-family: "Noto Sans KR", sans-serif;
}
.d-none {
    display: none;
}

.container-wrap {
    padding-top: 170px;
    min-height: 600px;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    max-height: 170px;
}

.nav_wrap {
    position: relative;
    z-index: 99;
    display: flex;
    max-height: 269px;
    flex-direction: column;
    background-color: #fff;
    border-bottom: 1px solid #f3f3f3;
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}

/*
상단 나라별 배너
*/
.topNation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    height: 70px;
}
.logo {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}
.logo a {
    text-transform: uppercase;
    color: #ffc800;
    font-weight: 900;
    letter-spacing: 0.0625rem;
}

.topNation .nation_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.topNation .nation_list li {
    display: flex;
    align-items: center;
    padding: 10px;
}

.flag_img {
    overflow: hidden;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    border: 1px solid #ffc800;
}
.flag_img img {
    width: 100%;
}

.topNation .nation_list li dl {
    margin-left: 10px;
}
.topNation .nation_list li dl dt {
    font-weight: 700;
    font-family: "Noto Sans KR", sans-serif;
}
/*
menu
*/

.menu_list {
}

.menu_list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_list ul li {
    position: relative;
    padding: 0 20px;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.menu_list > ul > li:before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #ccc;
    position: absolute;
    top: 38%;
    right: 0;
}
.menu_list > ul > li:last-child:before {
    content: "";
    width: 0px;
}
.top-menus {
    display: inline-block;
}
.top-menus:before,
.top-menus:after {
    display: table;
    content: "";
    line-height: 0;
}
.top-menus:after {
    clear: both;
}

.top-menus li {
    position: relative;
}
.top-menus li > a {
    display: block;
    padding: 1rem;
}
.top-menus li > a:hover {
    color: #000;
}
.top-menus li > a:hover span:before {
    color: #fafafa;
}
.top-menus li > a:hover:after {
    -moz-transform: translate3d(101%, -50%, 0);
    -ms-transform: translate3d(101%, -50%, 0);
    -o-transform: translate3d(101%, -50%, 0);
    -webkit-transform: translate3d(101%, -50%, 0);
    transform: translate3d(101%, -50%, 0);
}
.top-menus li > a:hover:before {
    width: 100%;
}

/* 메뉴 활성화 효과  시작*/
.top-menus li.nav-sub > a:after,
.top-menus li > a.active:after {
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.top-menus li.nav-sub > a:before,
.top-menus li > a.active:before {
    width: 100%;
}
.top-menus li.nav-sub > a,
.top-menus li > a.active {
    color: #000;
}
.top-menus li > a.active:hover:after {
    -moz-transform: translate3d(-101%, -50%, 0);
    -ms-transform: translate3d(-101%, -50%, 0);
    -o-transform: translate3d(-101%, -50%, 0);
    -webkit-transform: translate3d(-101%, -50%, 0);
    transform: translate3d(-101%, -50%, 0);
}
/* 메뉴 활성화 효과 끝 */

.top-menus > li > a {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    color: #999;
    -moz-transition: 1s color;
    -o-transition: 1s color;
    -webkit-transition: 1s color;
    transition: 1s color;
}
.top-menus > li > a:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 90%;
    right: 0;
    background: #ffc800;
    -moz-transform: translate3d(-101%, -50%, 0);
    -ms-transform: translate3d(-101%, -50%, 0);
    -o-transform: translate3d(-101%, -50%, 0);
    -webkit-transform: translate3d(-101%, -50%, 0);
    transform: translate3d(-101%, -50%, 0);
    -moz-transition: transform 0.4s;
    -o-transition: transform 0.4s;
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 0.7);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 0.7);
}
.top-menus > li > a:before {
    content: "";
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: #000;
    white-space: nowrap;
    width: 0%;
    -moz-transition: width 0.4s 0.3s;
    -o-transition: width 0.4s 0.3s;
    -webkit-transition: width 0.4s 0.3s;
    transition: width 0.4s 0.3s;
}

.sub-menus-wrap {
    visibility: hidden;
    position: absolute;
    opacity: 0;
    z-index: 4;
    left: -30px;
    width: 220px;
    top: 100%;
    transform: translateY(50px);
    background: #222;
    padding: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.4s all;
}
.sub-menu-list {
    position: relative;
    list-style-type: none;
    font-size: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sub-menu-list li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.sub-menu-list li > a {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    color: #a9a9a9;
    padding: 0;
    font-weight: normal;
    transition: 0.2s all;
}

.sub-menu-list li > a:hover {
    color: #fff;
}
.top-menus li:hover .sub-menus-wrap {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.top-menus li:hover > a:after {
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.sub-menu-list > li > a:hover {
    padding-left: 5px;
}

/*
네비 스크롤
*/
.nav_wrap .container {
    position: relative;
    margin: 0 auto;
    width: 1200px;
}

.nav_menu_wrap {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/*
네비 유틸
*/
.nav_util {
    position: relative;
    display: block;
    float: right;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav_util ul {
    display: flex;
    align-items: center;
}
.nav_util ul li {
    padding: 0 10px;
}
.nav_util ul li:last-child {
    padding-right: 0;
}

.nav_logo {
    position: relative;
    width: 0;
    transition: all 0.3s;
}
.nav_logo > div {
    /*display: none;*/
}
/*
스크롤 고정 이벤트
*/
/*.scroll_fixed */
.nav_wrap {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0px 2px 4px 0px rgb(33, 32, 32, 0.38);
    box-shadow: 0px 2px 4px 0px rgba(33, 32, 32, 0.38);
    transition: all 0.5s ease 0s;
}

.nation-wrap {
    opacity: 1;
    transition: all 0.3s;
}

/*.scroll_fixed */
.nation-wrap {
    height: 0;
    opacity: 0;

    visibility: hidden;
}

/*.scroll_fixed */
.nav_logo {
    display: block !important;
    width: 180px;
    height: 50px;
    transition: all 0.3s;
}
/*.scroll_fixed */
.nav_logo > div {
    display: flex;
}

#main_visual {
    padding-top: 0;
}

.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/*
간략 설명 배너
*/
.info-boxs {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-boxs .box {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
    width: calc(100% / 4);
    height: 250px;
    background-color: #eeeeee;
}
.infox-boxs > div + div {
    margin-left: -1px !important;
}

.info-boxs .box .box-title {
    position: relative;
    text-align: center;
    padding: 15px;
    width: 100%;
}
.info-boxs .box div span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.05rem;
    width: 100%;
    height: 100%;
}

.box-title-bg-1 {
    background-color: coral;
    color: #fff;
}
.box-title-bg-1::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: coral;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    bottom: -28px;
}
.box-title-bg-2 {
    background-color: #d7c851;
    color: #fff;
}
.box-title-bg-2::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    rotate: -180deg;
    color: #d7c851;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    top: -28px;
}
.box-title-bg-3 {
    background-color: #e89e6d;
    color: #fff;
}
.box-title-bg-3::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e89e6d;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    bottom: -28px;
}
.box-title-bg-4 {
    background-color: #e8816e;
    color: #fff;
}
.box-title-bg-4::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    rotate: -180deg;
    color: #e8816e;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    top: -28px;
}

.box-title-bg-5 {
    background-color: #e8816e;
    color: #fff;
}
.box-title-bg-5::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e8816e;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    bottom: -28px;
}
.box-title-bg-6 {
    background-color: #e89e6d;
    color: #fff;
}
.box-title-bg-6::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    rotate: -180deg;
    color: #e89e6d;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    top: -28px;
}
.box-title-bg-7 {
    background-color: #d7c851;
    color: #fff;
}
.box-title-bg-7::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #d7c851;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    bottom: -28px;
}
.box-title-bg-8 {
    background-color: coral;
    color: #fff;
}
.box-title-bg-8::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    rotate: -180deg;
    color: coral;
    font-size: 3rem;
    position: absolute;
    left: 45%;
    top: -25px;
}

/*
하단설정
*/
footer {
    position: relative;
    min-width: 1200px;
    background: #212020;
    margin: 0 auto;
    text-align: center;
}

#ft_wr {
    width: 1200px;
}
#ft_wr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.ft_util {
    padding: 15px 0;
}
.tail_infos {
    padding-top: 15px;
    display: flex;
    align-items: center;
}
.tail_infos li {
    padding: 0 10px;
}
.tail_infos li a {
    color: #fff;
}

.ft_infos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ft_logo {
    text-transform: uppercase;
    color: #ffc800;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.0625rem;
    margin-right: 20px;
}

.ft_infos P {
    text-align: left;
    color: #ccc;
}
.ft_infos span.tit {
    color: #999;
}
.ft_infos span.gap {
    padding: 0 10px;
    font-weight: 900;
}

/*
센터안내
*/
.center-info {
    flex: 8;
}
.center-info h1 {
    font-weight: 600;
    font-size: 1.5rem;
    font-family: "Noto Sans KR", sans-serif;
}
.warehouse-infos li {
    padding: 10px;
    text-align: center;
}
.warehouse-infos li .imgBox {
    position: relative;
    overflow: hidden;
    width: 130px;
    height: 130px;
}
.warehouse-infos li .imgBox > img {
    width: 100%;
    height: 100%;
}
.warehouse-infos li span {
    font-weight: 600;
    font-size: 1rem;
    font-family: "Noto Sans KR", sans-serif;
}

.costomer-info {
    width: 300px;
}
.costomer-info h1 {
    font-weight: 600;
    font-size: 1.5rem;
    font-family: "Noto Sans KR", sans-serif;
}

.costomer-info .tel-info {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Noto Sans KR", sans-serif;
}
.costomer-info i {
    margin-right: 20px;
    color: #e8816e;
}
.costomer-info li > span {
    display: inline-block;
    width: 80px;
}
.costomer-info button {
    border: none;
    background-color: #222;
    color: #fff;
    padding: 5px 15px;
    width: 45%;
}

.box_banner {
    width: 100%;
    margin: 0 -10px;
    width: calc(100% + 20px);
}
.box_banner:after {
    content: "";
    clear: both;
    display: table;
}

.box_banner .box_banner__item {
    float: left;
    width: 25%;
    padding: 0 10px;
}
.box_banner-list-5-col .box_banner__item {
    width: 20%;
}
.box_banner-list-3-col .box_banner__item {
    width: 33.333%;
}

.box_banner-list-2-col .box_banner__item {
    width: 50%;
}

.box_banner__item-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    font-size: 1.2rem;
}

.more_btn {
    position: absolute;
    right: 0;
    top: 2px;
}

.box_banner__item-link {
    color: #00101d;
    font-family: "Noto Sans KR", sans-serif;
}

.box_banner__item-title-underline {
    position: relative;
    display: inline-block;
}
.box_banner__item-title-underline span {
    /*position:relative;*/
    box-shadow: inset 0 -3px 0 0 #ffc800;
}

.box_banner__item-figure {
    margin-bottom: 1rem;
    width: 100%;
    display: block;
}
.box_banner__item-figure {
    position: relative;
}
.box_banner__item-figure:after {
    -webkit-box-shadow: inset 0 0 0 0px #ffc800;
    box-shadow: inset 0 0 0 0px #ffc800;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.box_banner__item-link:hover .box_banner__item-figure:after {
    -webkit-box-shadow: inset 0 0 0 12px #ffc800;
    box-shadow: inset 0 0 0 12px #ffc800;
}
.box_banner__item-img {
    width: 100%;
    display: block;
}

.box_banner__item-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: -0.5px;
    max-height: 5.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: center;
}

.bg-fixed {
    margin-bottom: 30px;
    position: relative;
    background: url("../assets/img/main_slider03.jpg");
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 300px;
}
.bg-fixed:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(46, 46, 46, 0.5), rgba(46, 46, 46, 0.5));
}

.bg-fixed h1,
.bg-fixed h2 {
    padding-top: 15px;
    color: #fff;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    font-weight: 800;
}
.bg-fixed h1 span,
.bg-fixed h2 span {
    color: #ffc800;
}

.bg-fixed h1 {
    font-size: 2rem;
}
.bg-fixed h2 {
    font-size: 1.5rem;
}

.box_quick_banner {
    background-color: #ccc;
    height: 270px;
}
.box_quick_banner:after {
    content: "";
    clear: both;
    display: table;
}
.box_quick_banner .box_quick_banner__item {
    float: left;
    width: 100%;
    display: block;
    height: 50%;
    padding-top: 15px;
    font-size: 15px;
    color: #f3f3f3;
    text-align: center;
}
.box_quick_banner .box_quick_banner__item:nth-child(1),
.box_quick_banner .box_quick_banner__item:nth-child(3) {
    border-right: 1px solid #fff;
}
.box_quick_banner .box_quick_banner__item:nth-child(1),
.box_quick_banner .box_quick_banner__item:nth-child(2) {
    border-bottom: 1px solid #fff;
}

.box_quick_banner .box_quick_banner__item:nth-child(1) {
    background-color: #e8816e;
}
.box_quick_banner .box_quick_banner__item:nth-child(2) {
    background-color: #d7c851;
}
.box_quick_banner .box_quick_banner__item:nth-child(3) {
    background-color: #e89e6d;
}
.box_quick_banner .box_quick_banner__item:nth-child(4) {
    background-color: coral;
}

.notice_list li {
    border-bottom: 1px solid #f3f3f3;
    padding: 10px 0;
    vertical-align: middle;
}
.notice_list li:last-child {
    border-bottom: none;
}
.notice_list li .tit {
    display: inline-block;
    font-size: 15px;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice_list li .date {
    float: right;
    font-size: 15px;
}

/*
탭메뉴
*/
.tap_menu {
    margin: 0 -10px;
    width: calc(100% + 20px);
}
.tap_menu:after {
    content: "";
    clear: both;
    display: table;
}

.tap_menu .tap_menu__item {
    float: left;
    width: 25%;
    padding: 0 10px;
}
.tap_menu-list-3-col .tap_menu__item {
    width: 33.333%;
}

.tap_menu-list-4-col .tap_menu__item {
    width: 25%;
}
.tap_menu-list-7-col .tap_menu__item {
    width: 14.285%;
}

.tap_menu__item-link {
    position: relative;
    display: inline-block;
    color: #00101d;
    font-family: "Noto Sans KR", sans-serif;
    border: 1px solid;
    padding: 5px 10px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.2rem;
}

.tap_menu__item-link.active {
    background-color: #045c9f;
    border: 1px solid #045c9f;
    color: #fff;
}

/*
상태별 폰트 색상
*/
/* 임시보관 */
.text_status_10 {
    color: #045c9f;
}
/* 정보부족 */
.text_status_11 {
    color: #045c9f;
}
/* 접수완료 */
.text_status_12 {
    color: #045c9f;
}
/* 진행요청 */
.text_status_15 {
    color: #045c9f;
}
/* 검수확인 */
.text_status_20 {
    color: #045c9f;
}
/* 오류입고 */
.text_status_25 {
    color: #045c9f;
}
/* 확인필요 */
.text_status_30 {
    color: #045c9f;
}
/* 출고요청 */
.text_status_35 {
    color: #045c9f;
}
/* 출고보류 */
.text_status_40 {
    color: #ff0000;
}
/* 입금대기*/
.text_status_42 {
    color: #045c9f;
}
/* 리턴접수 */
.text_status_43 {
    color: #045c9f;
}
/* 리턴대기 */
.text_status_44 {
    color: #ff0000;
}
/* 리턴취소 */
.text_status_45 {
    color: #045c9f;
}
/* 리턴요청 */
.text_status_46 {
    color: #045c9f;
}
/* 리턴불가 */
.text_status_47 {
    color: #ff0000;
}
/* 리턴환급 */
.text_status_48 {
    color: #045c9f;
}
/* 리턴환급 */
.text_status_49 {
    color: #045c9f;
}
/* 출고완료 */
.text_status_50 {
    color: #045c9f;
}
/* 주문취소 */
.text_status_55 {
    color: #045c9f;
}
