@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1360px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(15px);
	transition: all .2s ease;
	padding: 26px 0;
	z-index: 23;
}
#header > .inner {
	max-width: 1860px;
	gap: 120px;
}
#header .logo a {
	display: block;
	width: 206px;
	height: 45px;
	background: url("../images/logo.svg")no-repeat 50% 50% / 100%;
	transition: all .2s ease;
}
#header .gnb {
	flex: 1;
}
#header .gnb ul {
	gap: 50px;
}
#header .gnb ul li a {
	display: block;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--text);
	transition: all .2s ease;
}
#header .gnb ul li a:hover {
	color: var(--black)!important;
}
#header .gnb ul li a.on {
	font-weight: 700;
	color: var(--key-color)!important;
}
#header .gnb ul li a.yw {
	font-size: 32px;
}
#header .h_util {
	gap: 10px;
}
#header .h_util > a {
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	border-radius: 10px;
	box-sizing: border-box;
}
#header .h_util .lang {
	position: relative;
	width: 155px;
}
#header .h_util .lang > button {
	width: 100%;
	height: 50px;
	background: var(--black) url("../images/arrow-down-white.svg")no-repeat calc(100% - 20px) 50%;
	color: var(--white);
	border-radius: 10px;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 900;
	text-align: left;
	transition: all .2s ease;
	box-sizing: border-box;
}
#header .h_util .lang > div {
	position: absolute;
	width: 100%;
	padding-top: 10px;
	display: none;
}
#header .h_util .lang:hover > div {
	display: block;
}
#header .h_util .lang .gtranslate_wrapper {
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--white);
	background: rgba(255, 255, 255, 0.50);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(5px);
	padding: 20px 10px;
	text-align: center;
	gap: 14px;
	box-sizing: border-box;
}
#header .h_util .lang .gtranslate_wrapper a {
	display: block;
	font-weight: 700;
}
#header .h_util .lang .gtranslate_wrapper a.gt-current-lang {
	border-radius: 10px;
	background: var(--key-color);
	color: var(--white);
	padding: 4px 0;
}
/*
#header .h_util .lang {
	position: relative;
	width: 93px;
}
#header .h_util .lang > button {
	width: 100%;
	height: 50px;
	background: var(--black) url("../images/arrow-down-white.svg")no-repeat calc(100% - 20px) 50%;
	color: var(--white);
	border-radius: 10px;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 900;
	text-align: left;
	transition: all .2s ease;
	box-sizing: border-box;
}
#header .h_util .lang > div {
	position: absolute;
	width: 100%;
	padding-top: 10px;
	display: none;
}
#header .h_util .lang:hover > div {
	display: block;
}
#header .h_util .lang > div ul {
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--white);
	background: rgba(255, 255, 255, 0.50);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(5px);
	padding: 20px 16px;
	text-align: center;
	gap: 14px;
	box-sizing: border-box;
}
#header .h_util .lang > div ul li a {
	display: block;
	font-weight: 700;
}
#header .h_util .lang > div ul li a.active {
	border-radius: 10px;
	background: var(--key-color);
	color: var(--white);
	padding: 4px 0;
}
*/
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu a:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 1px;
	background: var(--black);
	transition: all .3s;
}
#header .menu.on a:before {
	top: 15px;
	transform: translateX(-50%) rotate(45deg);
}
#header .menu.on a:after {
	top: 15px;
	transform: translateX(-50%) rotate(-45deg);
}
#header.fixed {
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(15px);
}
#header.fixed .logo a {
	background-image: url("../images/logo.svg");
}
#header.fixed .gnb ul li a {
	color: var(--text);
}
#header.fixed .h_util .lang > button {
	background: var(--black) url("../images/arrow-down-white.svg")no-repeat calc(100% - 20px) 50%;
	color: var(--white);
}
#header.fixed .menu a:before,
#header.fixed .menu a:after {
	background: var(--black);
}


.side_wrap {
	position: fixed; 
	top: -100%;
	width: 100%;
	transition: all .3s;
	z-index: 22;
	backdrop-filter: blur(15px);
}
.side_wrap.on {
	top: 60px;
}
.side_wrap .depth {
	overflow-y: auto;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 30px;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50%;
	box-sizing: border-box;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.no_child > a.yw {
	font-size: 32px;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.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: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}
.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
	padding-top: 180px;
	box-sizing: border-box;
}


#footer {
	position: relative;
	padding: 120px 0 0;
	background: #F2F2F2;
}
#footer .inner {
	max-width: 1440px;
	gap: 40px;
}
#footer .ft_menu {
	gap: 20px;
	padding-bottom: 125px;
}
#footer .ft_menu > div {
	gap: 40px;
}#footer .ft_menu > div > p {
	color: var(--text);
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
}
#footer .ft_menu > div strong {
	font-size: 24px;
	font-weight: 700;
}
#footer .ft_menu > div .yw strong {
	font-size: 32px;
}
#footer .ft_menu > div ul {
	gap: 20px;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
}
#footer .ft_menu > div:first-child ul {
	gap: 10px;
}
#footer .copy {
	gap: 10px 20px;
	line-height: 1.4;
	padding-bottom: 20px;
}




.cursorItem {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 23;
	pointer-events: none;
	background: var(--key-color);
	opacity: .5;
}
.cursorItem .circle {
	position: fixed;
	display: block;
	width: 17px;
	height: 17px;
	margin: 15px 0 0 15px;
	background: var(--key-color);
	border-radius: 50%;
	transition: all .2s ease-in-out;
}


#quick {
	position: fixed;
	bottom: 25px;
	right: 50px;
	gap: 20px;
	z-index: 15;
}
#quick > div {
	gap: 10px;
	align-items: end;
}
#quick > div > a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--white);
	background: var(--black) url("../images/arrow-up.svg")no-repeat 50% 50%;
}
#quick > div > a.down {
	transform: rotate(180deg);
}
#quick .kakao_btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #FAE300;
	border: 0;
	margin-top: 10px;
	justify-content: center;
	align-items: center;
}
#quick .kakao_btn img {
	width: auto;
}
#quick .cs_btn {
	border-radius: 10px;
	background: var(--key-color);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding: 16px 20px;
	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.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	font-family: 'SUIT';
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	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: 20px 40px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	padding: 40px 40px 0;
	gap: 10px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 24px;
	letter-spacing: 0.6px;
}
.modal .bar .close {
	width: 26px;
	height: 26px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
	opacity: 1;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
}
.modal .btn_area > * {
	height: 32px;
	line-height: 32px;
	border-radius: 50px;
	font-size: 16px;
	text-align: center;
	padding: 0 20px;
	box-sizing: border-box;
}


.pagenavi ol {
	text-align: center;
	justify-content: center;
	gap: 10px;
}
.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: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--text);
}
.pagenavi ol li.this a {
	font-size: 20px;
	color: var(--key-color);
	font-weight: 700;
}



h2.tit {
	font-size: 96px;
	font-weight: 900;
	text-transform: capitalize;
}
h3.tit {
	font-size: 64px;
	font-weight: 800;
}



.title {
	gap: 10px;
}
.title span {
	font-size: 32px;
	font-weight: 700;
}
.title p {
	color: var(--text);
	font-size: 20px;
	line-height: 1.4;
}
.title .left {
	gap: 16px;
}


.title_bg {
	padding-bottom: 120px;
}
.title_bg .inner {
	max-width: 1440px;
	gap: 60px;
}
.title_bg .box {
	gap: 16px;
}
.title_bg .box h2 {
	line-height: 1;
}
.title_bg .video {
	position: relative;
	height: 0;
	padding-bottom: 31%;
	overflow: hidden;
}
.title_bg .video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.tit_box h2 {
	line-height: 1.2;
}
.tit_box p  {
	color: var(--text);
	font-size: 32px;
	line-height: 1.2;
}


.more_btn a {
	gap: 10px;
	width: max-content;
}
.more_btn a span {
	color: var(--text);
	font-size: 20px;
	line-height: 1.4;
	transition: all .1s;
}
.more_btn .arrow {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--text);
	overflow: hidden;
	box-sizing: border-box;
}
.more_btn .arrow .btn {
    width: 39px;
    height: 52px;
    position: absolute;
    bottom: -24px;
    left: -10px;
    overflow: visible;
    transition: transform .4s ease-in-out;
    transform-origin: 50% 50% 0px;
}
.more_btn .arrow svg {
    position: absolute;
	width: 20px;
}
.more_btn .arrow svg:first-child {
	top: 0;
	right: 0;
}
.more_btn .arrow svg:last-child {
    left: -5px;
	bottom: 0;
}
.more_btn a:hover span {
	color: var(--key-color);
	font-weight: 700;
}
.more_btn a:hover .arrow {
	background: var(--key-color);
	border: 1px solid var(--key-color);
}
.more_btn a:hover .arrow .btn {
	transform: translate(24px, -35px); 
}


.tabs {
    gap: 40px;
}
.tabs button {
    color: var(--text);
    font-size: 24px;
}
.tabs button.active {
    color: var(--key-color);
    font-weight: 700;
}




@media screen and (max-width: 1440px) {
	#header > .inner {
		gap: 65px;
	}
	#header .gnb ul {
		gap: 35px;
	}


	h3.tit {
		font-size: 58px;
	}
}
@media screen and (max-width: 1240px) {
	#header > .inner {
        gap: 30px;
    }
	#header .logo a {
		width: 162px;
		height: 36px;
	}
	#header .h_util > a {
		padding: 0 25px;
	}
	#header .gnb ul li a {
		font-size: 18px;
	}


	#footer .ft_menu {
		padding-bottom: 60px;
	}
	#footer .ft_menu > div strong {
    	font-size: 20px;
	}
	#footer .ft_menu > div > p {
		font-size: 20px;
	}
	#footer .ft_menu > div ul {
		font-size: 16px;
	}


	#quick {
		right: 10px;
		gap: 15px;
	}
	#quick > div > a {
		width: 35px;
		height: 35px;
	}
	#quick .kakao_btn {
		width: 45px;
		height: 45px;
	}
	#quick .kakao_btn img {
		width: 30px;
	}
	#quick .cs_btn {
        font-size: 16px;
        padding: 12px 10px;
    }


	h2.tit {
    	font-size: 72px;
	}
	h3.tit {
        font-size: 46px;
    }
	.title span {
    	font-size: 28px;
	}
	.title p {
		font-size: 18px;
	}
	.title_bg .box img {
        width: 265px;
    }

	.tabs button {
        font-size: 20px;
    }
}
@media screen and (max-width: 1024px) {
	#header > .inner {
        gap: 15px;
    }
	#header .gnb {
		display: none;
	}
	#header .h_util {
		flex: 1;
		justify-content: end;
	}
	#header .h_util > a {
		display: none;
	}
	#header .h_util .lang {
		width: 120px;
	}
	#header .h_util .lang > button {
		height: 36px;
		font-size: 14px;
		padding: 0 15px;
		background-position: calc(100% - 10px) 50%;
	}
	#header .menu {
		display: block;
	}


	#container {
		padding-top: 140px;
	}


	#footer {
    	padding: 80px 0 0;
	}
	#footer .logo img {
		width: 140px;
	}
	#footer .ft_menu > div strong {
        font-size: 16px;
    }
	#footer .ft_menu > div {
		gap: 20px;
	}
	#footer .ft_menu > div > p {
        font-size: 16px;
    }
	#footer .ft_menu > div ul {
        font-size: 14px;
    }
	#footer .copy {
		font-size: 14px;
	}


	.pagenavi ol {
		gap: 5px;
	}
	

	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
    	padding: 20px 20px 0;
	}
	.modal .bar .close {
		width: 18px;
		height: 18px;
		}
	.modal .bar h3 {
		font-size: 20px;
	}


	.cursorItem {
		display: none!important;
	}


	h2.tit {
        font-size: 54px;
    }
	h3.tit {
        font-size: 36px;
    }
	.title span {
        font-size: 20px;
    }
	.title p {
        font-size: 16px;
    }
	.title_bg {
		padding-bottom: 80px;
	}
	.title_bg .box img {
        width: 200px;
    }
	.tit_box p {
		font-size: 24px;
	}
}
@media screen and (max-width: 768px) {
	#header {
		padding: 15px 0;
	}
	#header > .inner {
        gap: 5px;
    }
	#header .logo a {
        width: 120px;
        height: 28px;
    }
	#header .h_util .lang {
        width: 110px;
    }
	#header .h_util .lang > button {
        height: 30px;
	}
	#header .h_util .lang .gtranslate_wrapper {
		gap: 7px;
		padding: 10px 5px;
	}
	#header .h_util .lang .gtranslate_wrapper a {
		font-size: 14px;
	}

	#container {
        padding-top: 90px;
    }

	#footer .ft_menu {
		gap: 40px 20px;
		padding-bottom: 30px;
	}
	#footer .ft_menu > div {
		width: calc(50% - 10px);
	}
	#footer .ft_menu > div:first-child {
		width: 100%;
	}

	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 14px;
		background-size: 17px!important;
	}
	.pagenavi ol li.this a {
    	font-size: 16px;
	}


	h2.tit {
        font-size: 40px;
    }
	h3.tit {
        font-size: 30px;
    }
	.title .left {
		gap: 8px;
	}
	.title span {
        font-size: 16px;
    }
	.title p {
        font-size: 14px;
    }
	.title_bg {
        padding-bottom: 40px;
    }
	.title_bg .inner {
		gap: 35px;
	}
	.title_bg .box {
		gap: 8px;
	}
	.title_bg .box img {
        width: 145px;
    }
	.tit_box p {
        font-size: 18px;
    }


	.tabs {
        gap: 20px;
    }
    .tabs button {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
	.pagenavi ol {
        gap: 0px;
		margin: 0 -20px;
    }

	.tabs {
        gap: 12px;
    }
}
@media screen and (max-width: 380px) {
	#header .h_util .lang {
        width: 100px;
    }
	#header .h_util .lang > button {
        padding-left: 7px;
    }

	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
	}
}