 /* 폰트 - Montserrat */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');


/* *** header *** */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	/* background-color: #fff; */
	z-index: 9999;
}
#header.show {
	transition: transform 0.16s ease;
	transform: translateY(0);
}
#header.hide {
	transition: transform 0.14s ease;
	transform: translateY(-100%);
}
#header.on {
	box-shadow: 0 1px 0.4rem rgb(0 0 0 / 10%);	
}

/* 헤더팝업 */
#header .h_popup{
    position: relative;
    display: flex;
    width: 100%; height: 48px;
    background: #060606;
    overflow: hidden;
}
#header .h_popup a{
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: flowLeft 40s linear infinite;
}
#header .h_popup span{
    margin-right: 100px;
}
#header .h_popup strong{
    display: inline-block;
    line-height: 48px;
    letter-spacing: -0.1em;
    color: #de2726;
    font-weight: 700;
}
#header .h_popup i{
    position: absolute; right: 10px;top: 16px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;

}
@keyframes flowLeft{
    0%{transform: translateX(0%);}
    100%{transform: translateX(-50%);}
}



/*  */
#header > .main-container {
    width: 94%;
    margin: 20px auto 0;
    /* height: 74px; */
    padding: 0 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #1c1c1c;
    border-radius: 500px;
}
#header > .main-container > .left{
    display: flex;
    align-items: center;
}
#logo {
    margin-right: 50px;
	height:48px;
}
.gnb_depth1 {
	display: flex;
}
.gnb_depth1 .depth1 {
	font-size: 16px;
	font-weight: 700;
    height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
    
}
.gnb_depth1 > li {
	position: relative;
}
.gnb_depth1 .depth1 span {
	/* position: relative; */
    transition: .3s;
}
.gnb_depth1 .depth1 span.en{
    font-family: 'Montserrat', sans-serif !important;
}
.gnb_depth1 > li:hover span{
    color: #de2726;
}
.gnb_depth2 {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translate(-50%, 100%);
	background-color: #060606;
	/* border-radius: 1rem; */
	padding: 1rem 0;
	min-width: 11rem;
	display: none;
}
.gnb_depth2 .dev_link {
    color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 2.4;
    padding: 10px 20px;
	white-space: nowrap;
    transition: .3s;
}
.gnb_depth2 .dev_link:hover {
	color: #de2726;
}
/* 장바구니,찜목록 */
#header .widget{
    display: flex;
    align-items: center;
}
#header .widget > span{
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 8px;
}
#header .widget > span:last-child{margin-right: 0;}
#header .widget > span svg{
    width: 30px; height: auto;
    transition: .3s;
}
#header .widget > span:hover svg{
    stroke: #ed1c24;
    color: #ed1c24;
}

#header .widget .txt{
    font-size: 12px;
    position: absolute;
    bottom: -32px;
    left: 50%;
    min-width: auto;
    white-space: nowrap;
    line-height: 1.6;
    transform: translateX(-50%);
    background: #1c1c1c;
    padding: 3px 9px;
    border-radius: 4px;
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
}
#header .widget .txt::before{
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 5px solid #1c1c1c;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
#header .widget > span:hover .txt{
    opacity: 1;
    bottom: -26px;
}


/* 모바일햄버거 */
#header .hamburger{
    display: none;/* PC에선 숨김 */
    width: 22px; height: 19px;
    justify-content: space-between;
    flex-direction: column;
    margin-top: -5px;
    margin-left: 6px;
    z-index: 1;
    cursor: pointer;
}
#header .hamburger .bar{
    flex-shrink: 0;
    background-color: #585858;
    height: 2px;
    position: relative;
    margin-left: auto;
}
#header .hamburger .bar1{
    width: 19px;
    transition: 0.1s ease;
}
#header .hamburger .bar2{
    width: 100%;
    transition: 0.2s ease;
    transition-delay: 0.1s;
}
#header .hamburger .bar3{
    width: 16px;
    transition: 0.3s cubic-bezier(0, 0.28, 0.5, 1.29);
    transition-delay: 0.1s;
    bottom: 0;
}
#header .hamburger.on .bar1 {
    width: 0;
}
#header .hamburger.on .bar2 {
    transform: rotate(45deg);
}
#header .hamburger.on .bar3 {
    width: 100%;
    bottom: 8px;
    transform: rotate(-225deg);
}



/* 모바일사이드메뉴 */
#sidenav {
	position: fixed;
	top: 116px;
	right: 0;
	width: 100%; height: 100vh;
	overflow-y: auto;
	background-color: #fff;
    /* padding: 20px 5%; */
    box-sizing: border-box;
	transform: translateX(100%);
	transition: transform 0.2s ease;
}
#sidenav.on {
	transform: translateX(0);
}
#sidenav .gnb_depth1_m > li{
    border-bottom: 1px solid #060606;
}
.depth1_m {
    display: block;
	font-size: 17px;
    font-weight: 700;
    line-height: 50px;
    padding: 0 20px;
}
.depth1_m.on{
    color: #de2726;
}
.depth1_m span {
	position: relative;
}
.gnb_depth2_m {
	display: none;
}
.depth2_m {
	line-height: 36px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    letter-spacing: -0.1rem;	
}
.depth2_m p{
    padding: 0 20px;
}


/* *** footer *** */
footer{
    position: relative;
    background:#060606;
    margin-top: 250px;
    color: #fff;
    padding-bottom: 90px;
}
footer::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 11vw;
    background: url(/design/img/footBg1.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
    z-index: 1;
}
footer::after{
    content: '';
    position: absolute;
    bottom: 100%;left: 0;width: 100%;
    height: 250px;
    z-index: -1;
}
footer .inner{
    max-width: 1100px;
}
footer .logoWrap{
    position: relative;
    width: 1100px;
    margin: 0 auto 50px;
}
footer .logo{}
footer .logo img{
    width: 100%;
}
footer .smile{
    position: absolute;
    left: -5%; top: -66px;
    width: 64px;
    z-index: 10;
}
footer .paper{
    position: absolute;
    right: -5%; bottom: -62px;
    width: 70px;
}

footer .intro{
    display: flex;
}
footer .left{
    width: 300px;
}
footer .left ul{
    border-top: 3px solid #b5b5b5;
    border-bottom: 3px solid #b5b5b5;
}
footer .left ul li{
    position: relative;
    border-bottom: 1px solid #b5b5b5;
    padding: 14px 0px;
    color: #b5b5b5;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}
footer .left ul li:last-child{
    border-bottom: 0;
}
footer .left ul li:hover{
    color: #fff;
}
footer .plus{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 1;
    cursor: pointer;
}
footer .plus .bar{
    position: absolute;
    left: 50%;top: 50%;
    transform: translate(-50%,-50%);
    flex-shrink: 0;
    background-color: #b5b5b5;
    height: 2px; width: 12px;
    position: relative;
    margin-left: auto;
    transition: 0.3s ease;
    
}
footer .plus .bar.bar2{
    transform: translateX(-50%) rotate(90deg);
    top: -45%;
}
footer .left ul li:hover .bar{
    background-color: #fff;
}


footer .right{
    width: calc(100% - 300px);
    padding-left: 30px;
}
footer .right > ul{}
footer .right > ul li{
    color: #b5b5b5;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: -0.01em;
}
footer .right .saupja{
    color: #b5b5b5 !important;
}
/* 패밀리사이트 */
footer .right .familySite{
    display: inline-block;
    cursor: pointer;
    position: relative;
    background: transparent;
    margin-top: 20px;
}
footer .right .familySite .btnset{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    /* padding-right: 34px; */
    font-size: 15px;
    color: #fff;
    height: 40px;
    border: 2px solid #b5b5b5;
    box-sizing: border-box;
}
/* footer .right .familySite .btnset::after{
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -3px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 10px solid #fff;
    transform: translateY(-50%) rotate(225deg);
    transition: transform .3s ease;
}
footer .right .familySite.active .btnset::after{
    transform: translateY(-50%) rotate(45deg);
    margin-top: 3px;
} */
footer .right .familySite ul{
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: 100%;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    /* background: #fff; */
    border: 2px solid #b5b5b5;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}
footer .right .familySite.active ul{
    visibility: visible;
    height: 250px;
}
footer .right .familySite ul li{
    border-bottom: 1px solid #b5b5b5;
    background: #060606;
}
footer .right .familySite button{
    display: block;
    border: 0;
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    background: transparent;
    cursor: pointer;
    width: 100%;
    transition: all .3s ease;
}
footer .right .familySite button:focus,
footer .right .familySite button:hover{
    color: #de2726;
}











/* *** 탑버튼 *** */
#top_btn{
    position: fixed;
    right: 2.5%;
    bottom: 8%;
    width: 70px; height: 70px;
    background: url(/design/img/ico_goUp.png) no-repeat;
    background-size: contain;
    /* background-color: rgba(0,0,0,0.5); */
    z-index: 2000;
    /* border-radius: 100%; */
    font-size: 0;
    line-height: 0;
    /* box-shadow: 0px 4px 20px 9px rgb(1 58 148 / 6%); */
    cursor: pointer;
}
/* #top_btn::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 49.6%;
    width: 10px;
    height: 10px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -4px;
    margin-left: -5px;
}
 */






























/* *************************************************
***********************반응형 ***********************
******************************************************/
@media(max-width:1220px){
    



    /* footer */
    footer .logoWrap{width: 100%;}
    footer .smile{
        left: 3%;
        top: -76px;
    }
    footer .paper{
        right: -2%;
        bottom: -73px;
    }
}


@media(max-width:1024px){
    
}



@media(max-width:960px){
    /* header */
    #header{
        background: #fff;
        border-bottom: 2px solid #060606;
    }
    #header .h_popup{
        margin-bottom: 0;
    }
    #header > .main-container{
        border: 0;
        border-radius: 0;
        padding: 0;
        height: 68px;
        margin-top: 0;
    }
    #gnb{display: none;}
    #header .hamburger{/* mb햄버거메뉴 */
        display: flex;
    }





}




@media(max-width:768px){
    /* header - 스크롤상관없이 무조건 보이도록 */
    #header.hide{
        transform: unset !important;
    }

    #top_btn{
        width: 60px;
        height: 60px;
    }
    





    /* footer */
    footer{margin-top: 160px;}
    footer .intro{
        display: block;
    }
    footer .left,
    footer .right{width: 100%;}
    footer .paper {
        right: 3%;
        bottom: 60px;
        z-index: 10;
    }
    footer .right{
        margin-top: 30px;
        padding: 0;
    }


}


@media(max-width:480px){
    /* header */

}
