@charset "utf-8";

#load {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	z-index: 999;
}
#load > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;

}
#load > div span {
	border: 0;
	margin: 0;
	width: 40%;
	height: 40%;
	position: absolute;
	border-radius: 50%;
	animation: spin 2s ease infinite;
	background-color: var(--key-color);
}
#load > div span:first-child {
	animation-delay:-1.5s;
}
#load > div span:nth-child(2) {
	animation-delay:-1s;
}
#load > div span:nth-child(3) {
	animation-delay:-0.5s;
}

@keyframes spin{
0%,100%{transform:translate(0)}
25%{transform:translate(160%)}
50%{transform:translate(160%, 160%)}
75%{transform:translate(0, 160%)}
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1480px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

.cursorItem {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	background: var(--green);
	opacity: .5;
}
.cursorItem .circle {
	position: fixed;
	display: block;
	width: 30px;
	height: 30px;
	margin: -10px 0 0 -10px;
	background: var(--green);
	border-radius: 50%;
	transition: all .2s ease-in-out;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 30;
	transition: all .8s;
	box-sizing: border-box;
}
#header.nav-down {
	top: -100%;
}
#header .logo {
    position: absolute;
    top: 35px;
    left: 50px;
}
#header .logo.white svg path {
	fill: var(--white);
}
#header .logo.black svg path {
	fill: var(--black);
}
#header .menu {
    position: absolute;
    top: 45px;
    right: 50px;
	z-index: 11;
}
#header .menu a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
}
#header .menu a span {
	position: absolute;
	left: 6px;
	display: block;
	height: 3px;
	background: var(--white);
	border-radius: 50px;
	transition: all .3s cubic-bezier(0.52, -0.8, 0.52, 0.52);
}
#header .menu a span:nth-child(1) {
	top: 10px;
	width: 20px;
}
#header .menu a span:nth-child(2) {
	top: 19px;
	width: 38px;
}
#header .menu a span:nth-child(3) {
	top: 28px;
	width: 20px;
	left: auto;
	right: 6px;
}
#header .menu a:hover span:nth-child(1) {
	width: 40px;
}
#header .menu a:hover span:nth-child(3) {
	width: 40px;
}
#header.on .menu a span {
	background: var(--white)!important;
}
#header.on .menu a span:nth-child(1) {
	top: 22px;
	width: 40px;
	transform: rotate(45deg);
}
#header.on .menu a span:nth-child(2) {
	display: none;
}
#header.on .menu a span:nth-child(3) {
	top: 22px;
	width: 40px;
	transform: rotate(-45deg);
	right: auto;
	left: 6px;
}
#header .menu.black a span {
	background: var(--black);
}
#header .menu.white a span {
	background: var(--white);
}


#gnb {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	transition: all .2s ease-in-out;
	transform: scale(0.8);
	z-index: -1;
}
#header.on #gnb {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	transform: scale(1);
}
#gnb ul {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	padding-top: 35px;
}
#gnb ul li {
	padding: 15px 0;
	overflow: hidden;
}
#gnb ul li.first {
	padding-top: 25px;
}
#gnb ul li a {
	position: relative;
	display: inline-block;
	font-size: 80px;
	color: var(--white);
	font-weight: 700;
	letter-spacing: -0.5px;
	transition: all 0.35s ease;
}
#gnb ul li a:hover {
	transform: translateY(-120%);
}
#gnb ul li a:before {
	content: attr(data-hover);
	position: absolute;
    top: 100%;
    left: 50%;
	width: 100%;
    font-size: inherit;
    font-weight: 800;
    color: var(--green);
    text-align: center;
	padding-top: 3%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
#gnb ul span {
    position: absolute;
    top: 60px;
    left: calc(50% - -130px);
	min-width: 130px;
    font-size: 40px;
    border-radius: 50px;
    background: rgba(6, 221, 92, 0.80);
	font-weight: 700;
    letter-spacing: -0.2px;
    padding: 6px 0;
	text-align: center;
}
#gnb ul .story span {
	top: 300px;
    left: calc(50% - -200px);
}



#container {
	width: 100%;
}




#fix {
	display: none;
	position: fixed;
    bottom: 80px;
    right: 3%;
	z-index: 31;
}
#fix .chat_btn {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
	margin: 0 auto 40px;
	transition: background-color .3s;
}
#fix .chat_btn .dot {
    -webkit-animation: dot_rotate 1s cubic-bezier(0.445, 0.05, 0.55, 1) infinite;
            animation: dot_rotate 1s cubic-bezier(0.445, 0.05, 0.55, 1) infinite;
    float: left;
    height: 0.313rem;
    width: 0.313rem;
    transform: translateY(-80%);
    background-color: var(--black);
    border-radius: 100%;
	transition: background-color .3s;
}
#fix .chat_btn .dot:not(:last-child) {
    margin-right: 0.875rem;
}
#fix .chat_btn .dot:nth-child(1) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}
#fix .chat_btn .dot:nth-child(2) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}
#fix .chat_btn .dot:nth-child(3) {
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
}
@-webkit-keyframes dot_rotate {
    0% {
        transform: translateY(-80%);
    }
    50% {
        transform: translateY(80%);
    }
    100% {
        transform: translateY(-80%);
    }
}
@keyframes dot_rotate {
    0% {
        transform: translateY(-80%);
    }
    50% {
        transform: translateY(80%);
    }
    100% {
        transform: translateY(-80%);
    }
}
#fix.black .chat_btn {
	background-color: var(--black);
}
#fix.black .chat_btn .dot {
	background-color: var(--white);
}

#fix .fix_contact {
    position: relative;
	display: block;
    width: 110px;
    height: 114px;
}
#fix .fix_contact .circle {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}
#fix .fix_contact .circle > svg {
    width: 110px;
    height: 110px;
}
#fix .fix_contact .circle > svg path {
	transition: all .3s;
	fill: #fff;
}
#fix .fix_contact .circle_tit {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 14px;
	transition: all .3s;
}
#fix .fix_contact:hover .circle {
    animation-play-state: paused;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
#fix.black .circle > svg path {
	fill: var(--black)!important;
}
#fix.black .fix_contact .circle_tit {
	color: var(--black);
}

h3.tit {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.192px;
	margin-bottom: 100px;
}

.sec {
	padding: 120px 0;
}




.modal {
	display: none;
}
.modal .black_bg {
	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: #0F0F0F;
	border-radius: 5px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #0F0F0F;
	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;
}


.not_scroll {
	overflow: hidden;
}


#footer {
	background: var(--black);
}
.footer {
	color: var(--white);
	padding: 100px 0;
}
.footer .left .f_menu a {
	display: inline-block;
	padding: 13px 0;
	font-size: 43px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.215px;
	text-transform: uppercase;
}
.footer .left .info {
	margin-top: 103px;
	color: #888;
	font-size: 16px;
	letter-spacing: -0.08px;
	line-height: 1.5;
}
.footer .right > div {
	line-height: 1.5;
	font-size: 24px;
	letter-spacing: -0.12px;
	margin-bottom: 30px;
}
.footer .right > div span {
	display: block;
	color: #888;
}
.footer .right > div a {
	color: var(--white);
}
.footer .right > div.sns {
	gap: 45px;
}
.footer .right > div.sns a img {
	width: 40px;
}
.footer .right > div.sns .tel {
	display: none;
}












@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1480px) {
	#header .logo {
		left: 20px;
	}
	#header .menu {
		right: 20px;
	}
}
@media screen and (max-width: 1280px) {
	.footer .left .f_menu a {
		font-size: 38px;
	}
	.footer .right > div {
		font-size: 22px;
	}
}
@media screen and (max-width: 1024px) {	
	#header .menu {
		display: block;
	}
	#gnb ul li a {
		font-size: 45px;
	}
	#gnb ul li.first {
		padding-top: 0px;
	}
	#gnb ul li a:before {
		padding-top: 10%;
	}
	#gnb ul li a:hover {
		transform: translateY(-130%);
	}
	#gnb ul span {
		top: 30px;
		left: calc(50% - -75px);
		font-size: 20px;
		min-width: 70px;
	}
	#gnb ul .story span {
		top: 195px;
        left: calc(50% - -115px);
	}
	
	
	.cursorItem {
		display: none!important;
	}
	#fix .fix_contact {
		width: 90px;
		height: 94px;
	}
	#fix .fix_contact .circle > svg {
		width: 100%;
		height: 100%;
	}
	
	
	h3.tit {
		font-size: 36px;
		margin-bottom: 80px;
	}
	
	.sec {
		padding: 80px 0;
	}

	.footer {
		padding: 50px 0;
	}
	.footer .left .f_menu a {
		font-size: 32px;
	}
	.footer .left .info {
		margin-top: 45px;
	}
	.footer .right > div {
		font-size: 18px;
		margin: 35px 0 0;
	}
}
@media screen and (max-width: 768px) {
	#header .logo {
		top: 20px;
	}
	#header .logo svg {
		width: 70px;
		height: 36px;
	}
	#header .menu {
		top: 15px;
	}
	#header .menu a {
		width: 45px;
		height: 40px;
	}
	#header .menu a span {
		height: 2px;
	}
	#header .menu a span:nth-child(1) {
		width: 15px;
	}
	#header .menu a span:nth-child(2) {
		width: 33px;
	}
	#header .menu a span:nth-child(3) {
		width: 15px;
	}
	
	#fix {
		bottom: 7%;
		right: 5%;
	}
	
	h3.tit {
		font-size: 22px;
		margin-bottom: 40px;
	}
	
	.sec {
		padding: 60px 0;
	}


	.footer .left .f_menu a {
		font-size: 26px;
		padding: 10px 0;
	}
	.footer .left .info {
		margin-top: 10%;
		font-size: 12px;
	}
	.footer .right > div {
		font-size: 12px;
		margin: 8% 0 0px;
	}
	.footer .right > div p > a:hover {
		text-decoration: underline;
	}
	.footer .right > div.sns {
		gap: 25px;
	}
	.footer .right > div.sns a img {
		width: 20px;
	}
	.footer .right > div.sns .tel {
		display: block;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	#gnb ul li a {
        font-size: 30px;
    }
	#gnb ul span {
        top: 28px;
        left: calc(50% - -49px);
        font-size: 16px;
        min-width: 55px;
    }
	#gnb ul .story span {
        top: 160px;
        left: calc(50% - -77px);
    }
}