*{
    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{
    display: flex;
    justify-content: center;
    position : fixed;
    left : 0;
    top : 0;
    z-index: 1000;
    width : 100%;
    padding : 40px 0 20px;
	transition : background .5s;
}
.header.on{
	background : #fff;
}
.header::after{
	position : absolute;
	content : '';
	width : 100%;
	height : 0;
	transition : height .5s;
	background : rgba(0,0,0,0.8);
	left : 0;
	top : 100%;
}
.header.on::after{
	height : 180px;
}
.header.sub{
	position : absolute;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width : 1600px;
	min-width : 1600px;
	position : relative;
}
.main-logo{
    width : 261px;
    height : 23px;
    background : url(/assets/images/common/main-logo.png)no-repeat;
    background-size: contain;
    background-position : center;
    transition : background .5s;
}
.header.dark .main-logo{
    background : url(/assets/images/common/main-logo-dark.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.header.on .main-logo{
	background : url(/assets/images/common/main-logo.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.main-logo > a{
    display: block;
    width : 100%;
    height : 100%;
    font-size: 0;
    color : transparent;
    line-height: 0;
}
.header-nav > ul{
    display: flex;
    gap : 45px;
}
.header-nav > ul > li{
	display : flex;
	justify-content : center;
}
.header-nav > ul > li > a{
    font-size: 18px;
	font-size : 16px;
    letter-spacing: -0.04em;   
    font-weight: 500;
    color : #414141;
    transition : color .5s;
}
.header-nav > ul > li > a:hover{
    color : #020039;
}
.header.dark .header-nav > ul > li > a{
    color : #8E8E8E;
}
.header.dark .header-nav > ul > li > a:hover{
	color : #C39F7D
}
.header.on .header-nav > ul > li > a{
	color : #414141;
}
.header-nav > ul > li > ul{
	font-size : 15px;
	color : #fff;	
	position : absolute;
	top : 100%;
	text-align : center;
	padding : 30px 0 0 0;
	opacity : 0;
	z-index : 1;
	pointer-events : none;
	transition : opacity .5s;
}
.header.on .header-nav > ul > li > ul{
	opacity : 1;
	pointer-events : all;
}
.header-nav > ul > li > ul > li > a{
	display : block;
	padding : 5px 0;
}
.header-nav > ul > li > ul > li > a:hover{
	font-weight : 500;
}
.header-tel{
    display: flex;
    align-items: center;
    gap : 6px;
    font-size: 21px;
    font-family: futura-pt;
    font-weight: 500;
    color : #0A0A0A;
    transition : color .5s;
}
.header.dark .header-tel{
    color : #C9C9C9;
}
.header.on .header-tel{
	color : #0A0A0A;
}
.header-tel-icon{
    width : 40px;
    height : 40px;
    background : url(/assets/images/common/header-tel-icon.png)no-repeat;
	transition : background .5s;
}
.header.dark .header-tel-icon{
	background : url(/assets/images/common/header-tel-icon-dark.png)no-repeat;
}
.header.on .header-tel-icon{
	 background : url(/assets/images/common/header-tel-icon.png)no-repeat;
}
.header-open{
	font-size : 16px;
	padding : 5px 15px;
	border-radius : 5px;
	background : #020039;
	color : #fff;
	letter-spacing : -0.04em;
	position : absolute;
	top : calc(100% + 20px);
	right : 0;
	z-index : 10;
	transition : background .5s;
}
.header-open > b{
	font-size : 24px;
	font-family : futura-pt;
	font-weight : 600;
}
.header.dark .header-open{
	background : #c39f7d;
} */
.header{
	width : 100%;
	border-bottom :1px solid rgba(255,255,255,0.1);
	z-index : 1000;
	position : fixed;
	top : 0;
	left : 0;
	transition : background .5s, border-color .5s;
}
.header.back{
	background : #fff;
	border-color : rgba(0,0,0,0.1);
}
.header.sub{
	position : absolute;
}
.header.on{
	background : #fff;
	border-color : rgba(0,0,0,0.1);
}
.header::after{
	position : absolute;
	content : '';
	background : #fff;
	width : 100%;
	height : 0;
	left : 0;
	top : calc(100% + 1px);
	transition : height .5s, opacity .5s;
	opacity : 0;
	z-index : -1;
}
.header.on::after{
	opacity : 1;
	height : 300px;
}
.header-top{
	display : flex;
	justify-content : center;
	align-items : center;
	height : 84px;
	border-bottom : 1px solid rgba(255,255,255,0.1);
	transition : border-color .5s;
}
.header.back .header-top{
	border-color : rgba(0,0,0,0.1);
}
.header.on .header-top{
	border-color : rgba(0,0,0,0.1);
}
.header-inner{
	display : flex;
	justify-content : space-between;
	align-items : center;
	width : 100%;
	min-width : 1600px;
	max-width : 1757px;
	height : 100%;
	position : relative;
}
.header-open{
	color : #fff;
	font-size : 21px;
	letter-spacing : -0.06em;
	transition : color .5s;
}
.header.dark .header-open{
	color : #53A7AF;
}
.header.back .header-open{
	color : #53A7AF;
}
.header.sub .header-open{
	color : #fff;
}
.header.on .header-open{
	color : #53A7AF;
}
.header-open > span{
	font-family : futura-pt;
}
.main-logo{
    width : 261px;
    height : 23px;
    background : url(../images/common/main-logo.png)no-repeat;
    background-size: contain;
    background-position : center;
    transition : background .5s;
	position : absolute;
	left : 50%;
	transform : translateX(-50%)
}
.header.dark .main-logo{
    background : url(../images/common/main-logo-dark.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.header.sub .main-logo{
    background : url(../images/common/main-logo.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.header.back .main-logo{
    background : url(../images/common/main-logo-dark.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.header.on .main-logo{
	background : url(../images/common/main-logo-dark.png)no-repeat;
    background-size: contain;
    background-position : center;
}
.main-logo > a{
    display: block;
    width : 100%;
    height : 100%;
    font-size: 0;
    color : transparent;
    line-height: 0;
}
.header-right{
	display : flex;
	align-items : center;
	gap : 21px;
}
.applyhome{
	box-shadow : 0 3px 6px rgba(0,0,0,0.16);
	border-radius : 100px;
}
.header-customer{
	display : flex;
	align-items : center;
	gap : 8px;
	color : #fff;
	transition : color .5s;
	font-size : 15px;
	font-weight : 700;
}
.header.back .header-customer{
	color : #020039;
}
.header.dark .header-customer{
	color : #020039;
}
.header.sub .header-customer{
	color : #fff;
}
.header.on .header-customer{
	color : #020039;
}
.header-customer-icon{
	width : 30px;
	height : 30px;
	background : url(../images/common/customer-icon.png)no-repeat center;
	background-size : contain;
	transition : background .5s;
}
.header.dark .header-customer-icon{
	background : url(../images/common/customer-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header.sub .header-customer-icon{
	background : url(../images/common/customer-icon.png)no-repeat center;
	background-size : contain;
}
.header.back .header-customer-icon{
	background : url(../images/common/customer-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header.on .header-customer-icon{
	background : url(../images/common/customer-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header-tel{
	display : flex;
	align-items : center;
	gap : 8px;
	font-size : 28px;
	font-weight : 500;
	font-family : futura-pt;
	color : #fff;
	transition : color .5s;
}
.header.back .header-tel{
	color : #3C3C3C;
}
.header.dark .header-tel{
	color : #3C3C3C;
}
.header.sub .header-tel{
	color : #fff;
}
.header.on .header-tel{
	color : #3C3C3C;
}
.header-tel-icon{
	width : 22px;
	height : 22px;
	background : url(../images/common/header-tel-icon.png)no-repeat center;
	background-size : contain;
	transition : background .5s;
}
.header.dark .header-tel-icon{
	background : url(../images/common/header-tel-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header.sub .header-tel-icon{
	background : url(../images/common/header-tel-icon.png)no-repeat center;
	background-size : contain;
}
.header.back .header-tel-icon{
	background : url(../images/common/header-tel-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header.on .header-tel-icon{
	background : url(../images/common/header-tel-icon-dark.png)no-repeat center;
	background-size : contain;
}
.header-nav{
	display : flex;
	justify-content : center;
	width : 100%;
	height : 50px;
	letter-spacing : -0.04em;
	white-space : nowrap;
}
.header-nav > ul{
	display : flex;
	margin : 0 auto;
	height : 100%;
	/* gap : 60px; */
	gap: 38px;
}
.header-nav > ul > li{
	display : flex;
	justify-content : center;
	height : 100%;
	position : relative;
}
.header-nav > ul > li > a{
	display: flex;
	align-items : center;
	height : 100%;
	font-size : 17px;
	color : #fff;
	transition : color .5s;
}
.header-nav > ul > li > a:hover{
	font-weight : 500;
	color : #020039;
}
.header.dark .header-nav > ul > li > a{
	color : #3C3C3C;
}
.header.sub .header-nav > ul > li > a{
	color : #fff;
}
.header.back .header-nav > ul > li > a{
	color : #3C3C3C;
}
.header.on .header-nav > ul > li > a{
	color : #3C3C3C;
}
.header-nav > ul > li > ul{
	position : absolute;
	top : 100%;
	padding : 10px 0 0 0;
	transform : translateY(50px);
	opacity : 0;
	pointer-events : none;
	transition : transform .5s, opacity .5s;
}
.header.on .header-nav > ul > li > ul{
	transform : translateY(0);
	opacity : 1;
	pointer-events : all;
}
.header-nav > ul > li > ul > li > a{
	display : block;
	color : #3C3C3C;
	padding : 5px 0;
	white-space : nowrap;
	text-align : center;
	font-size : 14px;
}
.header-nav > ul > li > ul > li > a:hover{
	font-weight : 500;
}
/**/
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background : #FAFAFA;
    padding : 57px 0 38px;
    font-size: 13px;
    letter-spacing: -0.025em;
}
.footer-inner{
    width : 100%;
    max-width : 1760px;
    position : relative;
}
.footer-logo{
    margin-bottom : 16px;
}
.footer address{
    font-style: normal;
    color : #666666;
    line-height: 24px;
}
.footer-info{
    color : #666666;
    line-height: 22px;
}
.footer-copy{
    color : #666666;
    margin-top : 19px;
}
.footer-img{
    position : absolute;
    right : 0;
    bottom : 0;
}
.footer-img2{
    position : absolute;
    right : 0;
    bottom : 55px;
}
.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;
}