*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    font-family: Noto Sans KR;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color : inherit;
}
img{
    display: block;
    max-width: 100%;
}
/**/
.header{
    position : fixed;
    width : 100%;
    left : 0;
    top : 0;
    z-index: 1000;
	transition : all .5s;
}
.header.sub{
    position : absolute;
}
.header-inner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width : 100%;
    height : 80px;
    max-width : 100%;
    margin : 0 auto;
    position : relative;
}
.header-open{
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.06em;
    color : #E8DAC4;
    transition : color .5s;
}
.header-open > span{
    font-family: futura-pt;
}
.main-logo{
    position : absolute;
    left : 0px;
    width : 146px;
    height : 70px;
    background : url(/assets/images/common/main-logo.png)no-repeat center;
    background-size: 80%;
    transition : background .5s;
}
.main-logo > a{
    display: block;
    width : 100%;
    height : 100%;
    color : transparent;
    font-size: 0;
    line-height: 0;
}
.header-right{
    display: flex;
    align-items: center;
    gap : 6px;
	width: 80px;
	margin-right: 10px;
}
.header-customer{
    display: flex;
    align-items: center;
    gap : 8px;
    font-size: 15px;
    letter-spacing: -0.06em;
    color : #FFFFFF;
    transition :color .5s;
    font-weight: 700;
}
.header-customer-icon{
    width : 30px;
    height :30px;
    background : url(/assets/images/common/header-customer-icon.png)no-repeat center;
    background-size: contain;
}
.hamburger {
	width: 40px;
}
.header-tel{
    display: flex;
    align-items: center;
    gap : 8px;
    font-size: 28px;
    font-family: futura-pt;
    font-weight: 500;
    color : #fff;
    transition : color .5s;
}
.header-tel-icon{
    width: 40px;
    height : 40px;
    background : url(/m/assets/images/common/header-tel-icon.png) no-repeat center;
    background-size: 100%;
    transition : background .5s;
}
.header-nav{
    display: flex;
    justify-content: center;
    width : 100%;
    height : 50px;
    border-top : 1px solid #E8E8E8;
    border-bottom : 1px solid #E8E8E8;
}
.header-nav > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav > ul > li > a{
    display: flex;
	align-items : center;
	justify-content : center;
    padding : 0 30px;
	height : 100%;
    font-size: 17px;
    letter-spacing: -0.04em;
    font-weight: 500;
    color : #fff;
    transition : color .3s;
	position : relative;
}
.header-nav > ul > li > a::after{
	position : absolute;
	content : '';
	width : 0;
	height : 3px;
	bottom : -12px;
	left : 50%;
	background : #CDA187;
	transition : left .5s, width .5s;
}
.header-nav > ul > li > a:hover{
    color : #CDA187;
}
.header-nav > ul > li > a:hover::after{
	width : 100%;
	left : 0;
}

.header.on {
    background: #fff;
	transition : all .5s;
}
.on .header-nav > ul > li > a {
    color: #101010;
	transition : all .5s;
}
.on .header-open {
    color: #101010;
	transition : all .5s;
}
.on .header-customer {
    color: #101010;
	transition : all .5s;
}
.on .main-logo{
    background : url(/assets/images/common/main-logo-color.png) no-repeat center;
    background-size: 80%;
	transition : all .5s;
}
.on .header-tel {
    color: #101010;
	transition : all .5s;
}
.on .header-tel-icon{
    background : url(/m/assets/images/common/header-tel-icon.png) no-repeat center;
    background-size: 100%;
	transition : all .5s;
}

.header.white {
    background: #fff;
	transition : all .2s;
}
.white .header-nav > ul > li > a {
    color: #101010;
	transition : all .5s;
}
.white .header-open {
    color: #101010;
	transition : all .5s;
}
.white .header-customer {
    color: #101010;
	transition : all .5s;
}
.white .main-logo{
    background : url(/assets/images/common/main-logo-color.png)no-repeat center;
    background-size: 80%;
	transition : all .5s;
}
.white .header-tel {
    color: #101010;
	transition : all .5s;
}
.white .header-tel-icon{
    background : url(/m/assets/images/common/header-tel-icon.png)no-repeat center;
    background-size: 100%;
	transition : all .5s;
}



.hamburger-x{
    position : absolute;
    right : 10px;
    top : 20px;
    opacity: 0;
    transition : opacity .5s;
	width: 40px;
}
.header.on .hamburger-x{
    opacity: 1;
}
.hamburger-nav{
	display : flex;
	align-items : center;
    width : 100%;
    max-width: 750px;
    height : 100vh;
    background : #fff;
    z-index: 999;
    position : fixed;
    left : 50%;
    transform: translateX(-50%);
    padding : 50px 43px 0;
    overflow: hidden;
    transform: translateX(50%);
    transition : transform .7s;
}
.header.on + .hamburger-nav{
    transform: translateX(-50%);
}
.hamburger-nav > ul {
	width : 100%;
	max-height : 70vh;
	height : 100%;
    transform: translateX(-100px);
    opacity: 0;
    transition : transform 1.2s, opacity 1.2s;
	overflow-y : scroll;
}
.header.on + .hamburger-nav > ul{
    transform: translateX(0);
    opacity: 1;
    transition-delay: .5s;
}
.hamburger-nav > ul > li:not(:last-child){
    border-bottom : 1px solid rgba(10,44,89,0.2);
}
.hamburger-nav > ul > li > a{
    display: block;
    font-size: 22px;
	padding : 10px 0;
    letter-spacing: -0.06em;
    font-weight: 500;
    color : #101010;
}
.hamburger-nav > ul > li > ul{
	display : none;
	font-size : 14px;
	padding : 20px 0;
}
.hamburger-nav > ul > li > ul > li{
	display : inline-block;
	margin-top: 3px;
}
.hamburger-nav > ul > li > ul > li + li{
	margin-left: 15px;
}

/**/
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background : #1F1F1F;
    padding : 30px 0 30px;
    font-size: 13px;
    letter-spacing: -0.025em;
}
.footer-inner{
    width : 100%;
    max-width : 100%;
    position : relative;
	padding: 0 10px;
}
.footer-logo{
    margin-bottom : 16px;
	display: flex;
    align-items: center;
	gap: 10px;
	color: #666666;
}
.footer address{
    font-style: normal;
    color : #fff;
    line-height: 18px;
    font-size: 12px;
	padding-bottom: 10px;
}
.footer-info{
    color : #666666;
    line-height: 17px;
	font-size: 11px;
}
.footer-copy{
    color : #666666;
    margin-top : 19px;
	font-size: 11px;
}
.footer-img1{
	padding-top: 20px;
}
.footer-btn{
	position : absolute;
	color : #fff;
	background : #020039;
	padding : 4px 11px;
	border-radius : 5px;
	font-size : 16px;
	letter-spacing : -0.06em;
	font-weight : 500;
	position : absolute;
	right : 0;
	bottom : 120px;
}
.footer-logo01 {
	width: 130px
}
.footer-logo02 {
	width: 60px
}