@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1560px;	
	padding:0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	box-sizing: border-box;
	background-color: transparent;
	transition: all .5s;
}
#header.nav_down {
	top: 0;
	background: #FFF;
	box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.05);
}
#header.nav_up {
	top: -30%;
}
#header .inner {
	height: 100px;
	align-items: center;
	justify-content: space-between;
}
#header h1 img {
	height: 50px;
	vertical-align: 0px;
}
#header .download {
	gap: 24px;
}
#header .download a img {
	vertical-align: middle;
	margin-right: 10px;
}
#header .menu {
	display: none;
    position: absolute;
    top: 25px;
    right: 20px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 26px;
	height: 26px;
}
#header .menu a span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 5px;
	background: var(--black);
}
#header .menu a span:nth-child(1) {
	top: 5px;
}
#header .menu a span:nth-child(2) {
	top: 12px;
}
#header .menu a span:nth-child(3) {
	top: 19px;
}





.side-wrap {
	width: 280px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: #fff;
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side-wrap.on {
	right: 0;
}
.side-wrap .top {
	position: relative;
	padding: 11px 20px;
}
.side-wrap .top .side-close {
	position: absolute;
	top: 20px;
    right: 20px;
	display: block;
	width: 25px;
	height: 25px;
	background: linear-gradient(270deg, #4B3B94 0%, #7E1F87 100%);
	border-radius: 50%;
}
.side-wrap .top .side-close span {
	position: absolute;
	top: 11px;
    left: 4px;
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
}
.side-wrap .top .side-close span:nth-child(1) {
	transform: rotate(45deg);
}
.side-wrap .top .side-close span:nth-child(2) {
	transform: rotate(-45deg);
}
.side-wrap .depth {
    padding: 0px 20px;
    overflow-y: auto;
    height: calc(100vh - 60px);
}
.side-wrap .depth01 {
	margin: 30px 0;
}
.side-wrap .depth01 button {
	text-transform: capitalize;
	font-weight: 600;
}
.side-wrap .depth02 {
	max-height: 0;
	overflow: hidden;
}
.side-wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
	margin: 40px 0;
}
.black-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
	display: none;
}




#container {
	width: 100%;
}



.title {
	position: relative;
	margin-bottom: 60px;
	text-transform: uppercase;
	text-align: center;
}
.title div {
	font-size: 40px;
	text-align: center;
	font-weight: 500;
}
.title div strong {
	font-weight: 700;
}
.title p {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin-top: 20px;
}
.title_area {
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 60px;
	text-transform: capitalize;
}





.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.50);
	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: calc(95vh - 60px);
    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 .close {
	position:absolute;
	top: 15px;
    right: 20px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ico-close-white.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	background: #1E1E1E;
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	padding: 12px 50px 12px 20px;
}
.modal .btn_blue {
	display: block;
	margin: 30px auto 0;
}


.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #1A132D;
	padding: 70px 0;
	color: var(--white);
	font-family: 'Pretendard';
	font-weight: 400;
}
#footer .flex {
	align-items: center;
}
#footer .flex + .flex {
	align-items: end;
	padding-top: 40px;
	padding-bottom: 0;
}
#footer .inner {
	padding-left: 290px;
}
#footer .inner > div {
	justify-content: space-between;
	padding: 0 0 10px;
}
#footer h1 {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
#footer .util a {
	position: relative;
	color: #fff;
	font-size: 16px;
	margin-right: 40px;
}
#footer .util a:last-child {
	margin-right: 0;
}
#footer .util a:after {
	content: '';
	position: absolute;
	top: 4px;
	right: -20px;
	display: block;
	width: 1px;
	height: 10px;
	background: #fff;
}
#footer .util a:last-child:after {
	display: none;
}
#footer .logo {
    font-size: 25px;
	font-weight: 700;
}
#footer .logo img {
	vertical-align: middle;
	margin-right: 20px;
}
#footer .addr p {
	font-size: 14px;
	margin-bottom: 10px;
}
#footer .addr p:last-child {
	margin-bottom: 0;
}
#footer .addr p span:first-child {
	margin-right: 10px;
}
#footer .copy {
	font-size: 14px;
}
#footer .copy br {
	display: none;
}


#quick {
	position: fixed;
	bottom: 50px;
	right: -100%;
	z-index: 5;
	transition: all 1s;
}
#quick.on {
	right: 20px;
}
#quick .txt {
	display: none;
	position: absolute;
    top: -54px;
    right: 0;
    width: 260px;
	border-radius: 100px;
	background: #1A132D;
	text-align: center;
	padding: 18px 20px;
	color: var(--white);
	box-sizing: border-box;
}
#quick .box:hover .txt {
	display: block;
}
#quick a {
	display: block;
	margin: 0 auto;
}
#quick a.qr_box {
	width: 140px;
	background: var(--gradient);
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.30);
	margin-top: 40px;
}
#quick a.qr_box p {
	font-size: 12px;
	margin-top: 11px;
}
#quick a.qr_box p img {
	width: 14px;
	vertical-align: middle;
	margin-right: 4px;
}
#quick a.top_sc {
	border-radius: 50%;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	background: #fff url("../images/top_sc.svg")no-repeat 50% 50%;
	margin-top: 10px;
}



.pagenavi {
	margin-top: 40px;
}
.pagenavi ol {
	font-size: 0;
	text-align: center;
	justify-content: center;
}
.pagenavi ol li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 7.5px;
}
.pagenavi ol li.first,
.pagenavi ol li.prev,
.pagenavi ol li.next,
.pagenavi ol li.last {
	margin: 0;
}
.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: 25px;
	height: 25px;
	line-height: 24px;
	font-size: 15px;
	border-radius: 5px;
}
.pagenavi ol li.this a {
	background: #7E1F88;
	color: #fff;
}

.sec {
	position: relative;
	padding: 120px 0;
	z-index: 1;
}



.agree_modal .box {
	white-space: pre-line;
}




@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
	.sec {
		padding: 100px 0;
	}
	
	#footer .inner {
		padding-left: 230px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 80px;
	}
	#header h1 img {
		vertical-align: middle;
		height: 40px;
	}
	#header .menu {
		display: block;
	}
	#header .download {
		display: none;
	}
	
	
	
	#footer {
		padding: 60px 0;
	}
	#footer .inner {
		padding-left: 20px;
		padding-bottom: 40px;
	}
	#footer h1 {
		position: static;
		top: 0;
		transform: none;
		width: 100px;
		margin-bottom: 20px;
	}
	#footer h1 img {
		width: 100%;
	}
	#quick {
		bottom: -100%;
		left: 0;
		width: 100%;
		right: auto;
		background: #1A132D;
	}
	#quick.on {
		bottom: 0;
	}
	#quick .box {
		display: flex;
		flex-wrap: wrap;
		padding: 20px;
		box-sizing: border-box;
		gap: 24px;
	}
	#quick .txt {
		display: none!important;
	}
	#quick a.qr_box {
		flex: 1;
		margin-top: 0;
		height: 44px;
		line-height: 44px;
		padding: 0;
		border-radius: 8px;
		border: 0.5px solid var(--white);
		background: transparent;
	}
	#quick a.qr_box p {
		font-size: 16px;
		margin-top: 0;
	}
	#quick a.qr_box p img {
		width: 21px;
		margin-right: 8px;
	}
	#quick a.qr_box .qr_img {
		display: none;
	}
	#quick a.top_sc {
		display: none;
	}
	
	.title_area {
		font-size: 24px;
		margin-bottom: 40px;
	}
	
	.sec {
		padding: 80px 0;
	}
}
@media screen and (max-width: 768px) {
	.sec {
		padding: 60px 0;
	}

	#footer {
		padding: 60px 0px 95px;
	}
	#footer .inner {
		padding-bottom: 60px;
	}
	#footer .inner > div {
		justify-content: center;
	}
	#footer h1 {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		align-items: center;
		gap: 16px;
		margin-bottom: 40px;
	}
	#footer h1 img {
		display: none;
	}
	#footer h1:before {
		content: '';
		width: 40px;
		height: 40px;
		background: url(../images/symbol.svg)no-repeat -18px 0px / auto 60px;
	}
	#footer h1:after {
		content: '';
		width: 100px;
		height: 35px;
		background: url(../images/symbol.svg)no-repeat 1px -52px / auto 77px;
	}
	#footer .logo {
		width: 100%;
		font-size: 16px;
		margin-bottom: 20px;
	}
	#footer .flex + .flex {
		padding-top: 0;
		padding-bottom: 60px;
	}
	#footer .util {
		position: absolute;
		bottom: 60px;
		left: 20px;
	}
	#footer .util a {
		font-size: 14px;
		margin-right: 20px;
	}
	#footer .util a:after {
		top: 3px;
		right: -10px;
	}
	#footer .addr {
		width: 100%;
	}
	#footer .addr p {
		font-size: 14px;
	}
	#footer .addr p span {
		position: relative;
		display: inline-block;
	}
	#footer .addr p span:after {
		content: '';
		position: absolute;
		top: 3px;
		right: -8px;
		display: block;
		width: 1px;
		height: 10px;
		background: var(--white);
	}
	#footer .addr p span:last-child:after {
		display: none;
	}
	#footer .copy {
		font-size: 14px;
		position: absolute;
		bottom: 10px;
		left: 20px;
	}
	
	
	
	.pagenavi {
		margin-top: 20px;
	}
	.pagenavi ol li {
		margin: 0 1px;
	}
	.pagenavi ol li a {
		width: 22px;
		height: 22px;
		line-height: 22px;
		font-size: 13px;
	}
	.pagenavi ol li img {
		height: 10px;
	}
}
@media screen and (max-width: 480px) {
	#footer .addr p:last-child span {
		display: block;
		padding-bottom: 10px;
	}
	#footer .addr p:last-child span:after {
		display: none;
	}
}
@media screen and (max-width: 380px) {
	#quick .box {
		gap: 12px;
	}
	#quick a.qr_box p {
		font-size: 14px;
	}
	#quick a.qr_box p img {
		width: 17px;
		margin-right: 6px;
	}
	
	
	#footer .addr p {
		margin-bottom: 0;
	}
	#footer .addr p span {
		display: block;
		padding-top: 10px;
		word-break: keep-all;
	}
	#footer .addr p span:after {
		display: none;
	}
	#footer .copy br {
		display: block;
	}
	
	
	.pagenavi {
		margin-left: -20px;
		width: 100vw;
	}
	.pagenavi ol li a {
		width: 18px;
		height: 18px;
		line-height: 19px;
		font-size: 12px;
	}
}