@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1360px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}


#header {
	position: sticky;
	top:0;
	left:0;
	width: 100%;
	z-index: 33;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	background: var(--white);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-sizing: border-box;
	transition:all .3s;
}
#header .inner {
	height: 80px;
	align-items: center;
}
#header .qna_btn a {
	display: block;
	font-size: 24px;
	font-weight: 700;
	padding: 25px 40px;
	box-sizing: border-box;
}




#container {
	width: 100%;
}




.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 38;
	background: #fff;
	border-radius: 5px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	justify-content: space-between;
	padding: 16px 30px;
	gap: 10px;
	background: var(--black);
	color: var(--white);
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 24px;
	letter-spacing: 0.6px;
}
.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}
.modal .form {
	background: #F5F5F5;
	padding: 20px 30px;
	margin-top: 20px;
	box-sizing: border-box;
}
.modal .form h4 {
	font-size: 20px;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}
.modal .form .cont {
	font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.4px;
	white-space: pre-line;
}


.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: var(--black);
	color: var(--white);
}
#footer .top {
	padding: 60px 0;
	gap: 40px;
	box-sizing: border-box;
}
#footer .top h4 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}
#footer .top .info {
	gap: 16px;
}
#footer .top .info .tel {
	font-size: 48px;
}
#footer .top .info p {
	font-size: 20px;
}
#footer .bottom {
	padding: 40px 0;
	gap: 10px;
	font-size: 16px;
	line-height: 1.5;
	box-sizing: border-box;
}
#footer .bottom a {
	color: var(--white);
}


.top_btn {
	position: fixed;
	bottom: 70px;
	right: 50px;
	z-index: 32;
	gap: 20px;
	width: 75px;
}
.top_btn .arrow_box {
	width: 46px;
	gap: 10px;
}
.top_btn .arrow_box a {
	width: 100%;
	height: 46px;
	border-radius: 100px;
	border: 1px solid var(--white);
	background-color: var(--black);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	box-sizing: border-box;
}
.top_btn .arrow_box a.arrow_up {
	background-image: url("../images/arrow-up.svg");
}
.top_btn .arrow_box a.arrow_down {
	background-image: url("../images/arrow-down.svg");
}
.top_btn .contact_btn a {
	display: block;
	width: 75px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	background: #FEE500;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
	border-radius: 50%;
	box-sizing: border-box;
}




@media screen and (max-width: 1360px) {
	#footer .top .info .tel {
		font-size: 38px;
	}
}
@media screen and (max-width: 1024px) {
	#header h1 img {
		height: 20px;
		vertical-align: middle;
	}
	#header .inner {
    	height: 60px;
	}
	#header .qna_btn a {
		font-size: 16px;
		padding: 20px 25px;
	}


	#footer .top {
		padding: 40px 0;
		gap: 20px;
	}
	#footer .top h4 {
    	font-size: 18px;
	}
	#footer .top .info {
		gap: 8px;
	}
	#footer .top .info .tel {
        font-size: 24px;
    }
	#footer .top .info p {
		font-size: 16px;
	}
	#footer .bottom {
		padding: 20px 0;
		font-size: 14px;
	}

	.top_btn {
		right: 20px;
	}
	.top_btn .arrow_box {
    	width: 33px;
	}
	.top_btn .arrow_box a {
		height: 33px;
	}
	.top_btn .contact_btn a {
		width: 65px;
		height: 65px;
		line-height: 65px;
        font-size: 16px;
    }

	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
		gap: 16px;
	}
	.modal .bar h3 {
		font-size: 18px;
	}
	.modal .form {
		padding: 15px 20px;
	}
	.modal .form h4 {
    	font-size: 18px;
	}
	.modal .form .cont {
		font-size: 14px;
		letter-spacing: 0;
	}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}