@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1460px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}
#header .top_area {
	height: 100px;
	max-width: 1720px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}
#header .top_area h1 img {
	height: 38px;
}
#header .gnb {
}
#header .gnb > ul {
	justify-content: center;
	gap: 20px;
}
#header .gnb > ul > li {
	position: relative;
}
#header .gnb > ul > li > button {
	display: block;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 15px;
	border-bottom: 4px solid var(--white);
	transition: border .3s;
	box-sizing: border-box;
}
#header .gnb > ul > li.active > button {
	border-bottom: 4px solid var(--key-color);
}
#header .gnb > ul > li:hover button {
	border-bottom: 4px solid var(--key-color);
}
#header .gnb > ul > li:hover > ul {
	opacity: 1;
	z-index: 1;
}
#header .gnb > ul > li > ul {
	opacity: 0;
	z-index: -1;
	position: absolute;
	left: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0px 0 4px 0px rgba(0, 0, 0, 0.15);
	border-radius: 7px;
}
#header .gnb > ul > li > ul > li > a {
	display: block;
	font-size: 18px;
	text-align: center;
	margin: 10px 0;
}
#header .menu {
	display: none;
    position: absolute;
    top: 14px;
    right: 20px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}
#header .menu a span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--base-txt);
	transition: all .3s;
}
#header .menu a span:nth-child(1) {
	top: 13px;
}
#header .menu a span:nth-child(2) {
	top: 19px;
}
#header .menu a span:nth-child(3) {
	top: 25px;
}
#header.on .menu a span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}
#header.on .menu a span:nth-child(2) {
	display: none;
}
#header.on .menu a span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}



.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	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 .side_close {
    display: block;
    position: absolute;
    top: 15px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: url("../images/ico-close.svg")no-repeat 50% 50% / 20px;
    z-index: 1;
}
.side_wrap .depth {
    padding: 60px 0 30px;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 button {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	border-bottom: 1px solid #ddd;
	font-size: 18px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01.active button {
	background: var(--key-color);
	border-bottom: 1px solid var(--key-color);
}
.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: 16px;
    font-weight: 300;
	background: var(--base2);
	padding: 10px 20px;
	box-sizing: border-box;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}



#container {
	width: 100%;
	padding-top: 245px;
}




.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	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: 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;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 43px;
    right: 40px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	padding: 12px 0px 12px;
	margin-bottom: 30px;
}
.agree_modal .scroll {
	white-space: pre-line;
}


.not_scroll {
	overflow: hidden;
}


h3.tit {
	color: var(--black);
	font-size: 70px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
h4.tit {
	color: var(--black);
	font-size: 50px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}


.sec {
	padding: 150px 0;
}


.title .box h4 {
	position: relative;
	font-size: 38px;
	font-weight: 700;
	margin-right: 40px;
	padding-right: 40px;
}
.title .box h4:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 4px;
	height: 53px;
	background: var(--black);
}
.title .box > div {
	flex: 1;
}
.title .box strong {
	position: relative;
	display: block;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	word-break: keep-all;
}
.title .box strong span {
	display: block;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}
.title .box p {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 20px;
}
.title .sub_bg {
	width: 100%;
	height: 200px;
	margin-top: 50px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	text-align: center;
	border-radius: 20px;
}




#footer {
	margin-top: 130px;
	background: var(--base-txt);
	color: var(--white);
	padding: 80px 0;
}
#footer .logo {
	margin-bottom: 30px;
}
#footer .ft_wrap {
	gap: 50px;
}
#footer .flex_col {
	gap: 20px;
}
#footer .util {
	gap: 20px;
}
#footer .util a {
	color: var(--white);
	font-size: 20px;
	letter-spacing: -1px;
}
#footer .addr span {
	position: relative;
	color: rgba(255, 255, 255, 0.70);
	padding: 0 20px;
}
#footer .addr span:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.70);
}
#footer .addr span a {
	color: rgba(255, 255, 255, 0.70);
}
#footer .addr span:first-child {
	padding-left: 0;
}
#footer .addr span:last-child {
	padding-right: 0;
}
#footer .addr span:last-child:after {
	display: none;
}
#footer .info {
	gap: 20px;
}
#footer .info p {
	gap: 10px;
	color: rgba(255, 255, 255, 0.70);
}
#footer .info p a {
	color: rgba(255, 255, 255, 0.70);
}
#footer .copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.30);
	letter-spacing: 0.28px;
}





@media screen and (max-width: 1460px) {
	.sec {
		padding: 120px 0;
	}
	
	h3.tit {
		font-size: 60px;
	}
	h4.tit {
		font-size: 40px;
	}
	
	
	.title .box strong br {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
	#header .top_area {
		height: 70px;
	}
	#header .gnb {
		display: none;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-top: 120px;
	}
	
	
	#footer {
		padding: 40px 0;
	}
	#footer .ft_wrap {
		gap: 0;
	}
	#footer .util a {
		font-size: 16px;
	}
	#footer .addr span {
		font-size: 14px;
		padding: 0 10px;
	}
	#footer .info p {
		font-size: 14px;
	}
	
	
	h3.tit {
		font-size: 50px;
	}
	h4.tit {
		font-size: 30px;
	}
	
	.sec {
		padding: 100px 0;
	}
	
	
	.title .box h4 {
		font-size: 30px;
		margin-right: 30px;
		padding-right: 30px;
	}
	.title .box h4:after {
		width: 3px;
		height: 38px;
	}
	.title .box strong {
		font-size: 24px;
	}
	.title .box strong span {
		font-size: 18px;
	}
	.title .box p {
		font-size: 18px;
	}
}
@media screen and (max-width: 768px) {
	#footer .addr span:last-child {
		width: 100%;
		padding: 5px 0;
	}
	#footer .addr span:nth-child(2):after {
		display: none;
	}
	
	h3.tit {
		font-size: 40px;
	}
	h4.tit {
		font-size: 25px;
	}
	
	.sec {
		padding: 80px 0;
	}
	
	.title .box h4 {
		width: 100%;
		margin: 0;
		padding: 0;
		font-size: 26px;
	}
	.title .box h4:after {
		position: static;
		width: 53px;
		height: 3px;
		margin: 20px 0;
	}
	.title .box > div {
		flex: none;
		width: 100%;
	}
	.title .box strong {
		font-size: 20px;
	}
	.title .box strong span {
		font-size: 16px;
	}
	.title .box p {
		font-size: 16px;
	}
	.title .sub_bg {
		height: 100px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}