@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1440px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0;
	z-index: 21;
}
#header .logo a {
	display: inline-block;
	font-size: 24px;
	font-weight: 900;
	padding: 10px 16px;
	box-sizing: border-box;
}
#header .menu {
	position: relative;
	padding-right: 35px;
	box-sizing: border-box;
}
#header .menu p {
	font-size: 20px;
	font-weight: 700;
}
#header .menu:before {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	display: block;
	width: 26px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}
#header .menu:after {
	content: '';
	position: absolute;
	top: 13px;
	right: 0;
	display: block;
	width: 26px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}
#header.on {
    background: var(--white);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
#header.on .menu {
	color: var(--black)!important;
	width: 35px;
    height: 35px;
}
#header.on .menu p {
	display: none;
}
#header.on .menu:before {
	top: 16px;
	right: 3px;
	background: var(--black)!important;
	transform: rotate(45deg);
}
#header.on .menu:after {
	top: 16px;
	right: 3px;
	background: var(--black)!important;
	transform: rotate(-45deg);
}

.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#side {
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	padding-top: 110px;
	transition: all .2s;
	box-sizing: border-box;
}
#side.open {
	opacity: 1;
	z-index: 18;
	visibility: visible;
}
#side .inner {
	height: 100%;
	justify-content: center;
}
#side .scrollFunc {
    position: relative;
    width: 100%;
    overflow-y: auto;
    padding: 20px 0;
    box-sizing: border-box;
}
#side .gnb {
	flex: 1;
	width: 100%;
	gap: 15px;
}
#side .gnb li a {
	font-size: 96px;
	text-transform: capitalize;
	transition: color .3s;
}
#side .gnb li a:hover {
	color: var(--key-color);
}
#side .util {
	min-width: 177px;
}
#side .util .gtranslate_wrapper select {
	max-width: 190px;
	height: 56px;
	border: 1px solid var(--black);
	font-size: 24px;
	padding-right: 40px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#side .util .link a {
	display: inline-block;
	width: 100%;
	height: 84px;
	line-height: 84px;
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
}


#container {
	width: 100%;
}



.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: 95%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 59px);
	background: var(--white);
    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: 20px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	justify-content: space-between;
	padding: 20px;
	gap: 10px;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
}
.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_black.svg")no-repeat 50% 50% / 100%;
}
.modal .txt {
	font-size: 16px;
	color: #000;
	line-height: 1.6;
}
.modal .btn_area {
	gap: 10px;
}
.modal .btn_area button {
	flex: 1;
	height: 44px;
	border-radius: 10px;
	font-size: 16px;
}



.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #001024;
	color: var(--white);
	box-sizing: border-box;
}
#footer .top {
	padding: 80px 0;
	gap: 80px;
}
#footer .top .logo span {
	display: inline-block;
	padding: 20px 40px;
	background: var(--key-color);
	font-size: 40px;
	font-weight: 900;
	text-align: center;
	box-sizing: border-box;
}
#footer .top .box {
	gap: 120px;
}
#footer .top .box ul {
	gap: 16px;
	font-weight: 500;
	line-height: 1.2;
}
#footer .top .box ul h4 {
	font-size: 24px;
	font-weight: 500;
	font-family: "SB Aggro";
	margin-bottom: 15px;
}
#footer .top .box .f_info li {
	padding-left: 27px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 20px;
	box-sizing: border-box;
}
#footer .top .box .f_info li.addr {
	background-image: url("../images/ic_location.svg");
}
#footer .top .box .f_info li.tel {
	background-image: url("../images/ic_tel.svg");
}
#footer .top .box .f_info li.mail {
	background-image: url("../images/ic_mail.svg");
}
#footer .util {
	gap: 10px;
	border-top: 0.5px solid rgba(255,255,255,0.5);
	padding: 16px 0;
}
#footer .util .copy strong {
	text-transform: uppercase;
}
#footer .util .flex {
	gap: 5px;
}
#footer .util button {
	color: var(--white);
	font-size: inherit;
}


#float_btn {
	position: fixed;
	bottom: 40px;
	right: 60px;
	z-index: 15;
	gap: 30px;
	justify-content: end;
}
#float_btn .arrow,
#float_btn .arrow > div {
	justify-content: end;
	gap: 10px;
}
#float_btn .arrow a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--white);
	background: var(--black);
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
}
#float_btn .arrow a img {
	width: 24px;
}
#float_btn > a {
	min-width: 124px;
	height: 84px;
	line-height: 84px;
	font-size: 24px;
	font-weight: 800;
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
}


.agree_modal .cont {
	white-space: pre-line;
	font-size: 16px;
	line-height: 1.4;
}




.tit {
	font-family: "ArtBrush";
	font-size: 64px;
	text-transform: capitalize;
}



.sec {
	padding: 120px 0;
}


.more_btn {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid var(--black);
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	transition: all .3s;
	box-sizing: border-box;
}
.more_btn:after {
	content: '→';
	margin-left: 5px;
}
.more_btn:hover {
	background: var(--key-color);
	border: 1px solid var(--key-color);
	color: var(--white);
}




@media screen and (max-width: 1440px) {
	#side .gnb li a {
		font-size: 80px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 12px 0;
	}
	#header .logo a {
		font-size: 18px;
	}
	#header .menu p {
		font-size: 16px;
	}
	#header .menu:before {
		top: 3px;
	}
	#header .menu:after {
		top: 11px;
	}


	#side .gnb li a {
		font-size: 54px;
	}
	#side .util {
		min-width: 160px;
	}
	#side .util .gtranslate_wrapper select {
		max-width: 170px;
		height: 50px;
		font-size: 20px;
	}
	#side .util .link a {
		height: 65px;
		line-height: 66px;
		font-size: 20px;
	}

	#footer .top {
		padding: 50px 0;
		gap: 50px;
	}
	#footer .top .logo span {
		padding: 10px 30px;
		font-size: 24px;
	}
	#footer .top .box {
		gap: 60px;
	}
	#footer .top .box ul {
		font-size: 14px;
	}
	#footer .top .box ul h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	#footer .util {
		font-size: 14px;
	}

	#float_btn {
		right: 20px;
		gap: 20px;
	}
	#float_btn .arrow a {
		width: 36px;
		height: 36px;
	}
	#float_btn > a {
		min-width: 82px;
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}

	.sec {
		padding: 70px 0;
	}

	.tit {
		font-size: 48px;
	}

	.more_btn {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	#side .scrollFunc {
		gap: 40px;
	}
	#side .gnb {
		flex: none;
	}
	#side .gnb li a {
        font-size: 40px;
    }
	#side .util {
		min-width: auto;
		width: 100%;
		flex-direction: row;
		gap: 20px;
	}
	#side .util .gtranslate_wrapper {
		flex: 1;
	}
	#side .util .link {
		width: auto;
	}
	#side .util .link a {
		width: auto;
        min-width: 170px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }

	#footer .util .copy {
		width: 100%;
		text-align: center;
	}
	#footer .util .flex {
		width: 100%;
		justify-content: center;
	}

	.tit {
        font-size: 32px;
    }
}
@media screen and (max-width: 480px) {
	#side .util .gtranslate_wrapper {
		flex: none;
	}
	#side .util .gtranslate_wrapper select {
        max-width: 100%;
        background-size: 17px;
        font-size: 16px;
    }
	#side .util .link {
		width: 100%;
	}
	#side .util .link a {
		width: 100%;
	}

	.sec {
        padding: 40px 0;
    }
}
@media screen and (max-width: 380px) {
	
}