@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: var(--white);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
	transition: all .5s;
}
#header .inner {
	height: 97px;
	align-items: center;
	justify-content: space-between;
}
#header h1 img {
	height: 57px;
}
#header .download {
	gap: 24px;
}
#header .download a {
	font-weight: 500;
	border-radius: 8px;
	border: 1px solid #CDCDCD;
	padding: 10px 20px;
	box-sizing: border-box;
}
#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 {
	position: relative;
	width: 100%;
	padding-top: 97px;
	box-sizing: border-box;
}



.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: var(--white);
	padding: 80px 0;
	font-family: 'SUIT';
	font-weight: 400;
	border-top: 1px solid #CDCDCD;
}
#footer .inner {
	gap: 20px;
}
#footer h1 {
	margin-bottom: 10px;
}
#footer h1 img {
	height: 50px;
}
#footer .util {
	gap: 20px;
}
#footer .util a {
	font-size: 20px;
	letter-spacing: -1px;
}
#footer .addr {
	color: #919191;
	letter-spacing: -0.8px;
}
#footer .addr span {
	position: relative;
	padding: 0 20px;
}
#footer .addr span:first-child {
	padding-left: 0;
}
#footer .addr span:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	display: block;
	width: 1px;
	height: 10px;
	background: #919191;
}
#footer .addr span.last {
	padding-right: 0;
}
#footer .addr span.last:after {
	display: none;
}
#footer .addr span a {
	color: #919191;
}
#footer .info {
	gap: 20px;
}
#footer .info > div {
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	color: #919191;
	box-sizing: border-box;
}
#footer .info > div a {
	color: #919191;
	letter-spacing: -0.8px;
}
#footer .info > div.tel {
	background-image: url("../images/ic_tel.svg");
}
#footer .info > div.mail {
	background-image: url("../images/ic_mail.svg");
}
#footer .info > div.adr {
	background-image: url("../images/ic_addr.svg");
}
#footer .copy {
	color: #919191;
	font-size: 14px;
	letter-spacing: 0.28px;
}





.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: 150px 0 100px;
	z-index: 1;
	box-sizing: border-box;
}
.sec .inner {
	gap: 50px;
}
.sec .txt h3 {
	font-size: 50px;
	line-height: 1.3;
	word-break: keep-all;
}
.sec .txt h3 span {
	display: block;
	color: var(--key-color);
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 10px;
}
.sec .txt p {
	font-size: 24px;
	color: #919191;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'Pretendard';
	word-break: keep-all;
}
.sec .thumb {
	position: relative;
	flex: 1;
	width: 50%;
	gap: 50px;
}
.sec .thumb > div {
	position: relative;
	border-radius: 30px;
	box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.15);
}
.sec .thumb > div img {
	width: 100%;
}



.agree_modal .box {
	white-space: pre-line;
}




@media screen and (max-width: 1560px) {
	.sec .txt h3 {
		font-size: 38px;
	}
	.sec .txt p {
		font-size: 20px;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 62px;
	}
	#header h1 img {
		vertical-align: middle;
		height: 32px;
	}
	#header .download a {
        font-size: 14px;
		padding: 10px 20px;
    }


	#container {
		padding-top: 62px;
	}
	

	#footer {
		padding: 50px 0;
	}
	#footer .inner {
		gap: 15px;
	}
	#footer h1 img {
		height: 35px;
	}
	#footer .util a {
		font-size: 16px;
	}
	#footer .addr {
		font-size: 14px;
	}
	#footer .info {
		font-size: 14px;
	}
	
	
	.title_area {
		font-size: 24px;
		margin-bottom: 40px;
	}
	
	.sec {
		padding: 100px 0 80px;
	}
	.sec .inner {
		gap: 20px;
	}
	.sec .txt h3 {
        font-size: 28px;
    }
	.sec .txt h3 span {
		font-size: 20px;
	}
	.sec .txt p {
        font-size: 16px;
    }
	.sec .thumb {
		gap: 20px;
	}
}
@media screen and (max-width: 768px) {
	#header .download {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: var(--white);
		padding: 15px;
		z-index: 5;
		border-top: 1px solid #FAFAFA;
		box-sizing: border-box;
	}
	#header .download {
		gap: 12px;
    }
	#header .download a {
		flex: 1;
		text-align: center;
		padding: 10px 0;
    }
	#header .download a img {
		margin-right: 5px;
		height: 20px;
	}



	#footer {
        padding: 35px 0 100px;
    }
	#footer .addr span {
		padding: 0 15px;
	}
	#footer .info > div {
		background-size: 16px;
		padding-left: 20px;
	}
	#footer .copy {
		text-align: left!important;
	}




	.sec {
		padding: 60px 0;
	}
	.sec .inner {
        gap: 30px;
    }
	.sec .txt {
		order: 0;
		text-align: center;
	}
	.sec .txt h3 {
        font-size: 22px;
    }
	.sec .txt h3 span {
		font-size: 16px;
	}
	.sec .txt p {
        font-size: 14px;
    }
	.sec .thumb {
		order: 1;
		flex: none;
		width: 100%;
	}

	
	
	
	
	.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 span {
		padding: 0 10px;
	}
	#footer .addr span.last {
		width: 100%;
		padding-left: 0;
	}
	#footer .info {
		gap: 10px 20px;
	}
}
@media screen and (max-width: 380px) {
	.pagenavi {
		margin-left: -20px;
		width: 100vw;
	}
	.pagenavi ol li a {
		width: 18px;
		height: 18px;
		line-height: 19px;
		font-size: 12px;
	}
}