@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);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
	z-index: 21;
}
#header .inner {
	height: 84px;
}
#header .logo a {
	align-items: end;
	font-size: 36px;
	font-weight: 400;
	font-family: "ArtBrush";
	gap: 6px;
	box-sizing: border-box;
}
#header .logo span {
	line-height: 26px;
}
#header .gnb ul {
	gap: 36px
}
#header .gnb ul li a {
	font-size: 20px;
	transition: all .3s;
}
#header .gnb ul li a:hover {
	color: var(--key-color);
}
#header .h_qna a {
	display: block;
	height: 84px;
	line-height: 84px;
	font-size: 24px;
	font-weight: 700;
	padding: 0 30px;
	box-sizing: border-box;
}
#header .h_qna + div {
	display: none;
}
#header .lang {
	position: relative;
}
#header .lang > button {
	width: 35px;
	height: 35px;
	background: url("../images/ic_global.svg")no-repeat 50% 50%;
	border-radius: 5px;
	border: 1px solid var(--black);
	box-sizing: border-box;
}
#header .lang > .gtranslate_wrapper {
	opacity: 0;
	z-index: -1;
    position: absolute;
	left: 50%;
    transform: translateX(-50%);
    width: 72px;
	margin-top: 10px;
    text-align: center;
    background: var(--white);
    padding: 10px 10px;
	border-radius: 5px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}
#header .lang > .gtranslate_wrapper > a {
	display: block;
	width: 100%;
	font-size: 14px;
	margin: 7px 0;
}
#header .lang > .gtranslate_wrapper > a.glink.gt-current-lang {
	color: var(--key-color);
}
#header .lang > button:hover + .gtranslate_wrapper {
	opacity: 1;
	z-index: 15;
}


#header .menu {
	display: none;
	position: relative;
	width: 35px;
    height: 35px;
}
#header .menu:before {
	content: '';
	position: absolute;
	top: 13px;
	left: 5px;
	display: block;
	width: 26px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}
#header .menu:after {
	content: '';
	position: absolute;
	top: 21px;
	left: 5px;
	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;
}
#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 {
	gap: 10px;
}
#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%;
	padding: 180px 0 80px;
	box-sizing: border-box;
}



.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 {
	display: none!important;
	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: 0;
	z-index: 15;
	gap: 10px;
}
#float_btn > a {
	position: relative;
	width: 245px;
	min-height: 66px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	justify-content: center;
	background: var(--black);
	color: var(--white);
	padding: 10px 0;
	transition: all .3s;
	box-sizing: border-box;
	z-index: 1;
}
#float_btn > a:hover {
	background: var(--key-color);
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#float_btn > a.tel_btn {
	padding: 32px 0;
}
#float_btn > a.tel_btn p {
	animation: opacity 1.1s infinite linear;
}

.wrapper {
	min-height: 66px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	background: var(--black);
	color: var(--white);
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px 20px;
	gap: 10px;
	cursor: pointer;
	box-sizing: border-box;
}
.wrapper .video {
	position: absolute;
    width: 34px;
    height: 34px;
	border-radius: 50%;
	overflow: hidden;
	transition: all .3s;
	transform-origin: 70% 70%;
}
.wrapper .video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wrapper:hover .video {
	transform: scale(4.14);
}
.wrapper .text {
	position: relative;
	flex: 1;
	width: 100%;
	text-transform: uppercase;
	opacity: var(--opacity, 1);
	transition: opacity 0.3s var(--timing-function) 0.2s;
	margin-left: 40px;
}
.wrapper .text > span::before,
.wrapper .text > span::after {
	width: 100%;
	box-sizing: border-box;
}
.wrapper .text > span::before {
	content: attr(data-text);
}
.wrapper .text > span::after {
	display: none;
	content: attr(data-text2);
}
.wrapper:hover {
	background: var(--key-color);
}
.wrapper:hover .text {
	margin-left: 45px;
}
.wrapper:hover .text > span::before {
	display: none;
}
.wrapper:hover .text > span::after {
	display: block;
}
 



.agree_modal .cont {
	white-space: pre-line;
	font-size: 16px;
	line-height: 1.4;
}




.tit_box {
	gap: 30px;
}
.tit_box h3 {
	font-family: "ArtBrush";
	font-size: 64px;
	font-weight: 400;
	text-transform: capitalize;
}
.tit_box p {
	font-size: 36px;
	font-weight: 500;
}

h3.tit {
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -1.28px;
	text-transform: uppercase;
}


.sec {
	padding: 160px 0;
}
.sec .inner {
    gap: 60px;
}

.btn_group a {
	width: max-content;
	font-size: 32px;
	background: var(--black);
	color: var(--white);
	justify-content: center;
	border-radius: 100px;
	padding: 20px 36px;
	gap: 16px;
	margin: 0 auto;
	transition: all .3s;
	box-sizing: border-box;
}
.btn_group a:after {
	content: '';
	width: 24px;
	height: 15px;
	background: url("../images/arrow-right-white.svg")no-repeat 50% 50% / 100%;
}
.btn_group a:hover {
	background: var(--key-color);
	gap: 24px;
}


.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 .gnb,
	#header .h_qna {
		display: none;
	}
	#header .h_qna + div {
		display: flex;
	}
	#header .menu {
		display: block;
	}


	#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;
	}

	#container {
		padding: 150px 0 60px;
	}

	#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 {
		display: none;
	}

	.sec {
		padding: 70px 0;
	}
	.sec .inner {
		gap: 30px;
	}

	.tit_box {
		gap: 15px;
	}
	.tit_box h3 {
		font-size: 48px;
	}
	.tit_box p {
    	font-size: 24px;
	}


	h3.tit {
		font-size: 48px;
	}

	.btn_group a {
		font-size: 20px;
	}

	.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 select {
        max-width: 100%;
        background-size: 17px;
        font-size: 16px;
    }
	#side .util .link {
		width: 100%;
	}
	#side .util .link a {
		width: 100%;
        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;
	}

	.sec .inner {
        gap: 20px;
    }

	.tit_box h3 {
        font-size: 32px;
    }
	.tit_box p {
        font-size: 16px;
    }


	h3.tit {
		font-size: 32px;
	}

	.btn_group a {
        font-size: 16px;
        padding: 16px 24px;
		gap: 8px;
    }
	.btn_group a:hover {
		gap: 12px;
	}
	.btn_group a:after {
		width: 18px;
		height: 13px;
	}
}
@media screen and (max-width: 480px) {
	.sec {
        padding: 40px 0;
    }
}
@media screen and (max-width: 380px) {
	
}