@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1640px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 25;
}
#header .inner {
	height: 117px;
	max-width: 1840px;
	gap: 40px;
}
#header .h_info {
	gap: 10px;
	line-height: 1.1;
}
#header .h_info > div {
	gap: 10px;
}
#header .gnb {
	flex: 1;
}
#header .gnb ul {
	gap: 16px;
}
#header .gnb ul li a {
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	border-radius: 50px;
	text-transform: capitalize;
	padding: 12px 24px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: inset -1px 1px 1px 0px rgb(255 255 255 / 60%), inset 1px -2px 1px -1px rgb(255 255 255 / 60%);
	transition: all .3s;
}
#header .gnb ul li:hover a,
#header .gnb ul li.active a {
	opacity: 1;
	background: var(--key-color);
	color: var(--white);
}
#header .h_util {
	gap: 10px;
}
#header .h_util a {
	height: 36px;
	line-height: 36px;
	color: #2D2882;
	padding: 0 20px;
	background: var(--white);
	border-radius: 50px;
	box-sizing: border-box;
}
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu a:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--white);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--white);
	transition: all .3s;
}
#header .menu.on a:before {
	top: 15px;
	transform: translateX(-50%) rotate(45deg);
}
#header .menu.on a:after {
	top: 15px;
	transform: translateX(-50%) rotate(-45deg);
}
#header.fixed {
	background: var(--bg);
}


.side_wrap {
	position: fixed; 
	top: -100%;
	width: 100%;
	transition: all .2s;
	z-index: 22;
	background: var(--bg);
}
.side_wrap.on {
	top: 76px;
}
.side_wrap .top {
    gap: 10px;
    padding: 15px 20px 0;
    box-sizing: border-box;
}
.side_wrap .top a {
	flex: 1;
	height: 36px;
	line-height: 36px;
	color: #2D2882;
	padding: 0 20px;
	background: var(--white);
	border-radius: 50px;
	text-align: center;
	box-sizing: border-box;
}
.side_wrap .depth {
	padding: 20px 0;
	overflow-y: auto;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 30px;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50%;
	box-sizing: border-box;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.no_child > a.yw {
	font-size: 32px;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}
.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
}


#footer {
	position: relative;
	padding: 120px 0;
	box-sizing: border-box;
}
#footer .inner {
	gap: 60px;
}
#footer .ft_box {
	background: var(--dark);
	border-radius: 30px;
	padding: 60px;
	gap: 40px;
	box-sizing: border-box;
}
#footer .ft_box h2 {
	font-size: 40px;
	font-family: 'Paperlogy';
}
#footer .ft_box .info_box {
	gap: 20px;
	font-size: 18px;
}
#footer .ft_box .utils {
	border-top: 1px solid #d8d8d8;
	padding-top: 30px;
	gap: 20px;
	box-sizing: border-box;
}
#footer .ft_help {
	gap: 60px;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}


.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);
	font-family: 'SUIT';
	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;
	padding: 30px;
	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: 40px;
	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;
}


.pagenavi ol {
	text-align: center;
	justify-content: center;
	gap: 10px;
}
.pagenavi .first a {
	background: url("../images/navi-first.svg")no-repeat 50% 50%;
}
.pagenavi .prev a {
	background: url("../images/navi-prev.svg")no-repeat 50% 50%;
}
.pagenavi .next a {
	background: url("../images/navi-next.svg")no-repeat 50% 50%;
}
.pagenavi .last  a {
	background: url("../images/navi-last.svg")no-repeat 50% 50%;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #7B7B7B;
	border-radius: 10px;
}
.pagenavi ol li.this a {
	font-size: 20px;
	background: var(--key-color);
	color: var(--white);
	font-weight: 700;
}


#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: 1750px) {
	#header .inner {
		gap: 20px;
	}
	#header .gnb {
		margin-bottom: 40px;
	}
	#header .h_util {
		position: absolute;
		bottom: 10px;
		right: 20px;
	}
}
@media screen and (max-width: 1490px) {
	#header .gnb ul {
		gap: 8px;
	}
	#header .gnb ul li a {
		font-size: 16px;
		padding: 10px 16px;
	}
	#header .h_info {
		font-size: 14px;
	}
}
@media screen and (max-width: 1280px) {
	#header {
		padding: 10px 0;
	}
	#header .inner {
    	height: auto;
	}
	#header .logo img {
		width: 110px;
	}
	#header.on {
		background: var(--bg);
	}
	#header .gnb,
	#header .h_util {
		display: none;
	}
	#header .h_info {
		flex: 1;
	}
	#header .menu {
		display: block;
	}


	#footer {
		padding: 120px 0;
	}
	#footer .ft_box {
		padding: 40px;
	}
	#footer .ft_help {
		font-size: 30px;
	}
}
@media screen and (max-width: 1024px) {



	#footer {
		padding: 80px 0;
	}
	#footer .inner {
		gap: 40px;
	}
	#footer .ft_box {
        padding: 30px;
    }
	#footer .ft_box h2 {
    	font-size: 30px;
	}
	#footer .ft_box .info_box {
		gap: 12px;
		font-size: 16px;
	}
	#footer .ft_box .utils {
		gap: 12px;
	}
	#footer .ft_help {
        font-size: 22px;
		gap: 30px;
    }

	.pagenavi ol {
		gap: 5px;
	}
	

	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
		margin-bottom: 20px;
	}
	.modal .bar h3 {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	#header {
        padding: 10px 0 35px;
    }
	#header .h_info {
		font-size: 13px;
	}
	#header .h_info > div {
		position: absolute;
		bottom: -25px;
		left: 15px;
		width: calc(100% - 30px);
		gap: 3px 7px;
	}


	#footer .ft_box {
		gap: 25px;
	}
	#footer .ft_box h2 {
        font-size: 24px;
    }
	#footer .ft_box .info_box {
		font-size: 14px;
	}
	#footer .ft_box .info_box p {
		width: 100%;
	}
	#footer .ft_box .info_box strong {
		display: none;
	}
	#footer .ft_box .utils {
		font-size: 14px;
		gap: 8px;
	}
	#footer .ft_help {
        font-size: 18px;
    }


	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 14px;
		background-size: 17px!important;
	}
	.pagenavi ol li.this a {
    	font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	#header {
        padding: 10px 0 45px;
    }
	#header .inner {
        gap: 10px;
    }
	#header .h_info > div {
		bottom: -40px;
	}
	#header .h_info > div strong {
		width: 100%;
		font-size: 14px;
	}
	#header .h_info > div strong.col {
		display: none;
	}

	.side_wrap .top {
		padding: 30px 20px 0;
	}


	.pagenavi ol {
        gap: 0px;
		margin: 0 -20px;
    }
}
@media screen and (max-width: 380px) {
	#header .h_info > div {
		font-size: 12px;
	}


	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
	}
}