@charset "utf-8";

#splash {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background:#000;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.splashbg1,
.splashbg2{
    display: none;
}

body.appear .splashbg1,
body.appear .splashbg2{
	display:block;
}

body.appear .splashbg1{
	animation-name:PageAnime;
	animation-duration:1.4s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    bottom:50%;
	left:0;
    transform: scaleY(1);
    background-color:#000;
}

@keyframes PageAnime{
	0% {
		transform-origin:top;
		transform:scaleY(1);
	}

	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

body.appear .splashbg2{
    animation-name:PageAnime2;
	animation-duration:1.4s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 50%;
	left:0;
    transform: scaleY(1);
    background-color:#000;
}

@keyframes PageAnime2{
	0% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

#wrapper{
	opacity: 0;
}

body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


.mainblur{
	filter: blur(8px);
}



#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background:#000;
	transition: all 0.3s;
}

#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

.openbtn{
	position:fixed;
    z-index: 9999;
	top:30px;
	right: 30px;
	cursor: pointer;
    width: 40px;
    height:40px;
	background-color: #000;
      border: 1px solid #00FF1D;
}
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10px;
    height: 1px;
	background-color: #00FF1D;
  }


.openbtn span:nth-of-type(1) {
	top:9px;	
  	width: 50%;
}

.openbtn span:nth-of-type(2) {
	top:18px;
  	width:50%;
}

.openbtn span:nth-of-type(3) {
	top:28px;
  	width:50%;
}


.openbtn.active span:nth-of-type(1) {
    top: 12px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 25px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}


.scrolldown2{
	position:fixed;
	bottom:10px;
	left:50%;
    z-index: 2;
}

.scrolldown2 span{
	position: absolute;
	left:10px;
	bottom:10px;
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.scrolldown2:before {
    content: "";
    position: absolute;
    bottom:0;
    left:-4px;
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

.scrolldown2:after{
	content:"";
	position: absolute;
	bottom:0;
	left:0;
	width:2px;
	height: 50px;
	background:#eee;
}

.btn04 {
	position: relative;
	display:inline-block;
    padding:10px 30px;
	color:#fff;
	border:2px solid #ccc;
  border-radius: 5px;
    text-decoration: none;
    outline: none;
 	overflow: hidden;
}

.btn04:hover {
	color:#fff;
	border-color: transparent;
	transition-delay: .6s;
}

.btn04 span{
    display: block;
    z-index: 2;
}

.bordertop span::before,
.bordertop span::after {
    content: '';
    position: absolute;
    width:1px;
    height: 0;
    background: rgba(75, 184, 254, 1);
	transition: all .3s;
}

.bordertop span::before {
    left:0;
    top:0;
}

.bordertop span::after {
    right:0;
    top:0;
}

.bordertop:hover span::before,
.bordertop:hover span::after {
    height: 100%;
}

.bordertop::before{
	content: '';
	position: absolute;
	left: 0;
    top:0;
	z-index: -1;
	width: 100%;
	height: 0;
	background:rgba(75, 184, 254, 1);
	transition: all .3s;
}

.bordertop:hover::before{
	height: 100%;
	transition-delay: .4s;
}


#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#0b0a67;
	width: 60px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #999;
	height: 55px;
}

#page-top {
	position: fixed;
	right: 0;
	bottom:0;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}


#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}


#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.slider {
   width:94%;
    margin:0 auto;
}

.slider img {
    width:100%;
    height:auto;
}


.slider .slick-slide {
    margin:0 10px;
}

.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}


.fadeIn{
animation-name: fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.zoomOut{
	animation-name: zoomOutAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
	transform: scale(1.2);
	opacity: 0;
  }

  to {
    transform:scale(1);
	opacity: 1;
  }
}

 
.zoomOutTrigger{
    opacity: 0;
}

.slide-in {
	overflow: hidden;
    display: inline-block;
    padding: 0 10px;
}

.slide-in_inner {
	display: inline-block;

}

.leftAnime,
.rightAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name: slideText-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideText-100 {
  from {
	transform: translateX(-100%); 
        opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name: slideText100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideText100 {
  from {
	transform: translateX(100%);
    opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}


.blur{
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}




.glowAnime span{opacity: 0;}
.glowAnime.glow span{ animation:glow_anime_on 1s ease-out forwards; }
@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}



span.mask{
	display: block;
	overflow: hidden;
}


.circle span.mask{
	position: relative;
}

.circle span.mask::before {
	position: absolute;
	content: '';
	transform: scale(0);
	opacity: 0;
	width:100%;
	height:100%;
	border-radius:50%;
	background: rgba(255,255,255,0.2);
}

.circle span.mask:hover::before {
	animation: circle 0.75s;
}

@keyframes circle {
  0% {
  transform: scale(0);
  opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
  transform: scale(2);
  }
}


.bgDU,
.bgDU .mask{
    display: block;
	position:relative;
    overflow: hidden;

}

.bgDU .mask::before{
    display: none;
	content:'';
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;
    transform: translateY(100%);
	background:#fff;
	width:100%;
	height: 100%;	
}

.bgDU:hover .mask::before{
	opacity:1;
	transform: translateY(0);
}

.bgDU .cap{
	position: absolute;
	opacity:0;
	transition: .5s ease-in-out;
	z-index:3;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
}

.bgDU:hover .cap{
	opacity:1;
}

#header{
	position: relative;
    width: 100%;
	height:60vh;
    overflow: hidden;
}

#header-img{
	position: fixed;
	z-index: 1;
    top: 0;
    width: 100%;
	height:100vh;
	background: url("../img/top_main.jpg") no-repeat top center;
	background-size:cover;
	transform-origin:center;
    border-top: 60px solid #000;
}

#header-img::before {
  content: "";
  position: absolute;
  top: 0;  bottom: 0;
  left: 0;  right: 0;
  background: black;
  opacity:0.5;
}

#container{
	position: relative;
	z-index: 3;
      background:#000;
}


#footer{
	position: relative;
	z-index: 3;
    background:#454545;

}
