@charset "utf-8";


#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#333;
	text-align:center;
	color:#fff;
}


#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


#splash_logo svg{
	width:300px;
}



#mask .st0{
    fill:none;
    stroke:#fff;
    stroke-width:90;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500; 
    stroke-dashoffset:1500; 
}


.splashbg {
    display: none;
	position:fixed;
	transform: scale(100);
	background-color: #333;
	z-index: 999;
    
    top:calc(50% - 1rem);
    left:calc(50% - 1rem);
	width: 2rem;
	height: 2rem;
}
body.appear .splashbg{
    display: block;
    border-radius: 50%;	
	animation-name:PageAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform: scale(100);
	
	}
	100% {
		transform: scale(0);
		display: none;
	}
}


#container{
	
}




.gnavi{
	display: flex;
	justify-content: center;
	list-style: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

.gnavi a{
	display: block;
	padding:10px 30px;	
    color:rgba(255,255,255,0.7);
    text-decoration: none;
}

.nav01d li a{
   
	position: relative;
}

.nav01d li.current a,
.nav01d li a:hover{
	color:rgba(255,255,255,0.7);
}

.nav01d li a::after {
    content: '';
   
    position: absolute;
    top: 0;
    left: 10%;
    
    width: 80%;
    height: 2px;
    background:rgba(255,255,255,0.7);
    
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}


.nav01d li.current a::after {
    transform: scale(0.2, 1);
}


.nav01d li.current a:hover::after,
.nav01d li a:hover::after {
    transform: scale(1, 1);
}


.nav01d li:nth-of-type(1){
    animation-delay: .2s;
}

.nav01d li:nth-of-type(2){
    animation-delay: .3s;
}

.nav01d li:nth-of-type(3){
    animation-delay: .4s;
}

.nav01d li:nth-of-type(4){
    animation-delay: .5s;
}


@media screen and (max-width:768px) {
    

#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
    right: inherit;
	width:100%;
    height: 100vh;
    background: #333;
}


.circle-bg{
    position: fixed;
	z-index:3;
  
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #333;
	transform: scale(0);
	right:-15px;
    top:-15px;
    transition: all .6s;
}

.circle-bg.circleactive{
	transform: scale(50);
}

    

#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; 
}


#g-nav ul {
	opacity: 0;
        position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


#g-nav.panelactive ul {
    opacity:1;
    flex-wrap: wrap;
}


#g-nav.panelactive li{
	text-align: center; 
    width: 100%;
}

#g-nav.panelactive li a{
    padding:15px 0;
	display: block;
}
    
}


.openbtn{
    display: none;
}

@media screen and (max-width:768px) {


.openbtn{
	position:fixed;
    display: block;
	top:10px;
	right: 10px;
	z-index: 9999;
	cursor: pointer;
    width: 50px;
    height:50px;
    background: #d87514;
	border-radius: 5px;
}


.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  }


.openbtn span:nth-of-type(1) {
	top:15px;	
  	width: 45%;
}

.openbtn span:nth-of-type(2) {
	top:23px;
  	width: 35%;
}

.openbtn span:nth-of-type(3) {
	top:31px;
  	width: 20%;
}



.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}

}

.btnripple2{
    position:fixed;
    z-index: 2;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    border: 2px solid #fff;
    background:transparent;
    
	display:inline-block;
	width:70px;
	height:70px;
	border-radius: 50%;
   
    transition: all .3s;
    outline:none;
}


.btnripple2:hover{
	background:#d87514;	
    border-color: transparent;
}


.btnripple2::after,
.btnripple2::before {
    content: '';
    
    position: absolute;
    left: -25%;
    top: -25%;
    
    border: 1px solid #fff;
    width: 150%;
    height: 150%;
    border-radius: 50%;
   
    opacity: 1;
    
    animation:1s circleanime linear infinite;
}


.btnripple2::before {
    animation-delay:.5s; 
}


@keyframes circleanime{
	0%{
	  transform: scale(0.68);
	}
	100%{
		transform: scale(1.2);
		opacity: 0;
	}
}



.btnripple2 span::after {
    content: '';
    
    position: absolute;
    top: 38%;
    left: 45%;
    
    border: 14px solid transparent;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-color: #fff;
}


.hide-area{
	display: none;
}


.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}


.modaal-content-container{
 padding:10px;
}



#container{
    position: relative;
    height: 100vh;
} 

#video-area{
    position: fixed;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    width: 177.77777778vh; 
    height: 56.25vw; 
    min-height: 100%;
    min-width: 100%;
}

.modaal-content-container video{
    width:100%;
}




.fadeDown{
animation-name: fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeDownTrigger{
    opacity: 0;
}


.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}



.upAnime,
.downAnime{
    opacity: 0;

.slideAnimeDownUp {
	animation-name: slideTextY100;
	animation-duration:1s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
  from {
	transform: translateY(100%);
    opacity: 0;
  }

  to {
	transform: translateY(0);
    opacity: 1;
  }
}

.slideAnimeUpDown {
	animation-name: slideTextY-100;
	animation-duration:1s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
  from {
	transform: translateY(-100%);
    opacity: 0;
  }

  to {
	transform: translateY(0);
    opacity: 1;
  }
}

