@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1260px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#container {
	width: 100%;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 95%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 59px);
	background: var(--white);
    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: 20px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	justify-content: space-between;
	padding: 20px;
	gap: 10px;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
}
.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_black.svg")no-repeat 50% 50% / 100%;
}
.modal .txt {
	font-size: 16px;
	color: #000;
	line-height: 1.6;
}
.modal .btn_area {
	gap: 10px;
}
.modal .btn_area button {
	flex: 1;
	height: 44px;
	border-radius: 10px;
	font-size: 16px;
}



.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #2B2B2B;
	padding: 100px 0;
	color: #919191;
	font-family: 'SUIT';
	box-sizing: border-box;
}
#footer .inner {
	max-width: 1720px;
}
#footer .logo {
	width: 200px;
	margin-bottom: 40px;
}
#footer .logo img {
	width: 100%;
	vertical-align: middle;
}
#footer .info {
	flex: 1;
}
#footer .info .top {
	margin-bottom: 20px;
}
#footer .info .top a {
	color: #919191;
	font-size: 20px;
	margin-right: 20px;
}
#footer .info .addr {
	margin-bottom: 20px;
	font-size: 0;
	gap: 10px 0;
}
#footer .info .addr span {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 16px;
}
#footer .info .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: #919191;
	position: absolute;
	top: 4px;
	right: 0;
}
#footer .info .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .info .addr span:last-child:after {
	display: none;
}
#footer .info .addr span a {
	color: #919191;
}
#footer .info .icon {
	margin-bottom: 20px;
}
#footer .info .icon span {
	margin-right: 20px;
	font-size: 16px;
	padding: 3px 0 3px 30px;
}
#footer .info .icon span a {
	color: #919191;
}
#footer .info .icon span.tel {
	background: url("../images/ic_tel.svg")no-repeat 0 50%;
}
#footer .info .icon span.adr {
	background: url("../images/ic_addr.svg")no-repeat 0 50%;
}
#footer .info .copy {
	font-size: 14px;
}

#float_btn {
	position: fixed;
	bottom: 40px;
	right: 20px;
	z-index: 15;
}


.agree_modal .cont {
	white-space: pre-line;
	font-size: 16px;
	line-height: 1.4;
}


.title {
	gap: 20px;
}
.title h3 {
	font-size: 50px;
	font-weight: 400;
}
.title p {
	font-family: 'Pretendard';
	font-size: 30px;
	line-height: 1.4;
	font-weight: 500;
}


@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1024px) {
	.title h3 {
		font-size: 38px;
	}
	.title p {
		font-size: 24px;
	}


	#footer {
		padding: 60px 0;
	}
	#footer .logo {
		width: 150px;
		margin-bottom: 25px;
	}
	#footer .info .top {
		margin-bottom: 10px;
	}
	#footer .info .top a {
		font-size: 16px;
		margin-right: 10px;
	}
	#footer .info .addr {
		margin-bottom: 10px;
	}
	#footer .info .addr span {
		margin-right: 10px;
		padding-right: 10px;
		font-size: 14px;
	}
	#footer .info .icon {
		margin-bottom: 10px;
	}
	#footer .info .icon span {
		margin-right: 15px;
		font-size: 14px;
		padding-left: 20px;
		background-size: 15px!important;
		margin-bottom: 5px;
	}
	#footer .info .copy {
		font-size: 12px;
	}
	#float_btn img {
		width: 70px;
	}
}
@media screen and (max-width: 768px) {
	.title {
		gap: 10px;
	}
	.title h3 {
        font-size: 28px;
    }
	.title p {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
	.title h3 {
		font-size: 20px;
		line-height: 1.2;
	}
	.title h3 span {
		display: block;
	}
}
@media screen and (max-width: 380px) {
}