@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(4px);
	padding: 30px 0;
	z-index: 23;
}
#header .logo a {
	color: var(--key-color);
	font-size: 20px;
	font-family: 'RiaSans';
	font-weight: 800;
	text-transform: uppercase;
}
#header .inner {
	max-width: 1840px;
	gap: 20px;
}
#header .gnb ul {
	gap: 16px;
}
#header .gnb ul li a {
	display: block;
	color: var(--key-color);
	font-size: 18px;
	opacity: .6;
	padding: 10px 0;
	border-radius: 100px;
	transition: all .3s;
	text-transform: capitalize;
	box-sizing: border-box;
}
#header .gnb ul li:hover a {
	opacity: 1;
	padding: 10px 20px;
	background: var(--white);
	color: var(--key-color);
}
#header .gnb ul li.active a {
	opacity: 1;
	padding: 10px 20px;
	background: var(--key-color);
	color: var(--white);
}
#header .gnb ul li.alarm_btn a {
	position: relative;
	opacity: .6!important;
	padding: 0;
	backdrop-filter: none;
	box-shadow: none;
	background: none!important;
}
#header .gnb ul li.alarm_btn.on a:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 1px;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}
#header .gnb ul li.alarm_btn a svg {
	height: 26px;
}
#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: 2px;
	background: var(--black);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 2px;
	background: var(--black);
	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);
}


.side_wrap {
	position: fixed; 
	top: -100%;
	width: 100%;
	transition: all .2s;
	z-index: 22;
	background: var(--white);
}
.side_wrap.on {
	top: 73px;
}
.side_wrap .depth {
	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;
	padding-top: 200px;
}


#footer {
	position: relative;
	margin: 80px 20px 20px;
	padding-bottom: 20px;
}
#footer .inner {
	max-width: 1880px;
	gap: 40px;
	padding: 60px;
	border-radius: 40px;
	background: var(--white);
	box-sizing: border-box;
}
#footer .top {
	gap: 10px;
}
#footer .top h1 {
	font-size: 40px;
	font-family: "RiaSans";
	font-weight: 800;
}
#footer .info {
	gap: 10px 40px;
	font-size: 18px;
}
#footer .bottom {
	gap: 10px;
	border-top: 1px solid #D8D8D8;
	padding-top: 30px;
	box-sizing: border-box;
}
#footer .bottom .util {
	gap: 20px;
}


#footer_fix {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	border-radius: 20px 20px 0 0;
	padding: 16px 10px;
	box-shadow: -1px -4px 10px rgba(0,0,0,0.1);
	box-sizing: border-box;
	z-index: 99;
}
#footer_fix ul li {
	flex: 1;
	text-align: center;
}
#footer_fix ul li a {
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 0;
	font-size: 14px;
	padding-top: 30px;
	opacity: .7;
	box-sizing: border-box;
}
#footer_fix ul li.ft01 a {
	background-image: url("../images/side_icon6.svg");
}
#footer_fix ul li.ft02 a {
	background-image: url("../images/side_icon8.svg");
}
#footer_fix ul li.ft03 a {
	background-image: url("../images/side_icon5.svg");
}
#footer_fix ul li.active a {
	opacity: 1;
	font-weight: 600;
}
#footer_fix ul li.ft01.active a {
	background-image: url("../images/side_icon6_on.svg");
}
#footer_fix ul li.ft02.active a {
	background-image: url("../images/side_icon8_on.svg");
}
#footer_fix ul li.ft03.active a {
	background-image: url("../images/side_icon5_on.svg");
}


#quick {
	position: fixed;
	bottom: 150px;
	right: 70px;
	gap: 20px;
	z-index: 35;
}
#quick > div {
	gap: 10px;
	align-items: end;
}
#quick > div > a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--white) url("../images/arrow-up.svg")no-repeat 50% 50%;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
#quick > div > a.down {
	transform: rotate(180deg);
}
#quick > a {
	border-radius: 50px;
	background: var(--point);
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	padding: 16px 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
}
#quick > a.kakao_btn {
	background: #FFDE00;
	color: var(--key-color);
}



.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;
}



h3.tit {
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -1.28px;
	text-transform: uppercase;
}

@keyframes big {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}


.agreement .inner {
	gap: 30px;
}
.agreement .tit {
	margin-bottom: 30px;
}
.agreement .box {
	gap: 12px;
	line-height: 1.2;
}
.agreement .box ul li {
	margin: 5px 0;
}



@media screen and (max-width: 1560px) {
	#footer .info {
    	gap: 10px 20px;
	}

	#quick {
		bottom: 35px;
		right: 30px;
	}
}
@media screen and (max-width: 1440px) {
	
}
@media screen and (max-width: 1240px) {
	
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 20px 0;
	}
	#header.on {
		background: var(--white);
	}
	#header .inner {
		gap: 5px;
	}
	#header h1 {
		flex: 1;
	}
	#header .gnb li {
		display: none;
	}
	#header .gnb li.alarm_btn {
		display: block;
	}
	#header .gnb ul li.alarm_btn a {
		top: 2px;
	}
	#header .menu {
		display: block;
	}


	#container {
		padding-top: 100px;
	}

	#footer {
		margin-top: 40px;
		padding-bottom: 100px;
	}
	#footer .inner {
		gap: 20px;
		padding: 30px;
		border-radius: 20px;
	}
	#footer .top h1 {
    	font-size: 24px;
	}
	#footer .top img {
		width: 25px;
	}
	#footer .info {
		font-size: 14px;
	}
	#footer .bottom {
		padding-top: 20px;
		font-size: 14px;
	}
	#footer .bottom .util {
		gap: 10px;
	}

	#footer_fix {
		display: block;
	}

	#quick {
		bottom: 90px;
		right: 10px;
		gap: 15px;
	}
	#quick > div > a {
		width: 35px;
		height: 35px;
	}
	#quick > a {
        font-size: 14px;
        padding: 12px 14px;
    }

	.pagenavi ol {
		gap: 5px;
	}
	

	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
		margin-bottom: 20px;
	}
	.modal .bar h3 {
		font-size: 20px;
	}


	h3.tit {
    	font-size: 40px;
	}


	.agreement .tit {
		margin-bottom: 10px;
	}
	.agreement .box h2 {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	#footer .info {
        gap: 7px 20px;
    }
	#footer .info span {
		width: 100%;
	}


	.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) {
	.pagenavi ol {
        gap: 0px;
		margin: 0 -20px;
    }
}
@media screen and (max-width: 380px) {
	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
	}
}