@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%;
	background: var(--white);
	padding: 20px 0;
	box-sizing: border-box;
	z-index: 25;
}
#header .inner {
	max-width: 1640px;
	gap: 20px 10px;
}
#header .logo span {
	display: block;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.72px;
	text-indent: 40px;
	margin-top: 6px;
}
#header .gnb {
	flex: 1;
	width: 100%;
	justify-content: center;
}
#header .gnb .swiper {
	width: max-content;
}
#header .gnb .swiper-slide {
	width: auto;
	margin-right: 30px;
}
#header .gnb .swiper-slide:last-child {
	margin-right: 0!important;
}
#header .gnb .swiper-slide a {
	font-size: 18px;
	letter-spacing: -0.36px;
}
#header .h_util {
	gap: 6px;
}
#header .h_util a {
	font-size: 20px;
	font-weight: 700;
	padding: 16px 24px;
	border-radius: 50px;
	box-sizing: border-box;
}
#header .h_util a .m {
	display: none;
}

.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
}


#footer {
	position: relative;
	padding: 100px 0 40px;
	background: var(--black);
	color: var(--white);
	box-sizing: border-box;
}
#footer .inner {
	gap: 60px;
	max-width: 1640px;
}
#footer .top .logo {
	width: 400px;
}
#footer .top .sns {
	gap: 20px;
}
#footer .ft_info {
	gap: 40px;
	font-size: 20px;
	line-height: 1.2;
}
#footer .bottom {
	font-size: 20px;
}
#footer .bottom .ft_util button {
	color: var(--white);
}


.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	padding: 30px;
	border-radius: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	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;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	background: var(--key-color);
	color: var(--white);
	padding: 16px 30px;
	border-radius: 50px;
	gap: 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.modal .bar .close {
	width: 15px;
	height: 15px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 40px;
	justify-content: center;
}
.modal .btn_area > * {
	padding: 16px 60px;
	border-radius: 50px;
	font-size: 20px;
	text-align: center;
	box-sizing: border-box;
}



.tit_box {
	gap: 20px;
	line-height: 1.2;
}
.tit_box .badge span {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 26px;
	border-radius: 50px;
	text-transform: capitalize;
	box-sizing: border-box;
}
.tit_box h4 {
	font-size: 48px;
	font-weight: 500;
}
.tit_box p {
	color: var(--text);
	font-size: 20px;
}




#agree_pop .modal_cont {
	background-color: #f5f5f5;
}
#agree_pop .box {
	border-radius: 30px;
	padding: 20px 30px;
	background: var(--white);
	box-sizing: border-box;
}
#agree_pop .box:last-child {
	margin-top: 20px;
}
#agree_pop .box h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 14px;
}
#agree_pop .box .cont {
    line-height: 1.2;
    overflow-y: auto;
    max-height: calc(50vh - 176px);
}



@media screen and (max-width: 1440px) {
	#header .gnb .swiper-slide {
		margin-right: 20px;
	}
}
@media screen and (max-width: 1280px) {
	#header {
		padding: 10px 0;
	}
	#header .logo img {
		height: 40px;
	}
	#header .logo span {
		font-size: 14px;
		text-indent: 30px;
	}
	#header .gnb .swiper-slide {
        margin-right: 12px;
    }
	#header .gnb .swiper-slide a {
		font-size: 16px;
	}
	#header .h_util a {
		font-size: 16px;
		padding: 12px 20px;
	}



	#footer .top .logo {
		width: 300px;
	}
	#footer .ft_info {
		gap: 20px;
		font-size: 16px;
	}
	#footer .bottom {
		font-size: 16px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		gap: 10px;
	}
	#header .logo span {
        display: inline-block;
        text-indent: 0;
        width: auto;
        margin-left: 10px;
        vertical-align: middle;
    }
	#header .gnb {
		order: 2;
		flex: none;
		padding: 5px 0;
	}
	#header .gnb .swiper {
		margin: 0;
	}
	#header .gnb .swiper-slide a {
        font-size: 15px;
    }
	#header .h_util {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 10px 16px;
		box-sizing: border-box;
		z-index: 23;
	}
	#header .h_util a {
		flex: 1;
		text-align: center;
	}
	#header .h_util a .pc {
		display: none;
	}
	#header .h_util a .m {
		display: block;
	}


	#footer {
		padding: 50px 0 80px;
	}
	#footer .inner {
		gap: 30px;
	}
	#footer .top .logo {
		width: 240px;
	}
	#footer .top .sns svg {
		width: 30px;
	}
	#footer .ft_info {
        gap: 15px;
        font-size: 14px;
    }
	#footer .bottom {
        font-size: 14px;
    }


	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
		margin-bottom: 20px;
	}
	.modal .bar h3 {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	#footer .top .logo {
		margin: 0 auto 20px;
	}
	#footer .top .sns {
		width: 100%;
		justify-content: center;
		gap: 15px;
	}
	#footer .ft_info {
		justify-content: center;
		gap: 10px;
	}
	#footer .ft_info span {
		width: 100%;
		text-align: center;
	}
	#footer .bottom {
		text-align: center;
	}
	#footer .bottom .copy {
		width: 100%;
	}
	#footer .bottom .ft_util {
		width: 100%;
		justify-content: center;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}