/* Loading　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background:#fff;
  text-align:center;
  color:#fff;
  transition: all 1s;
  opacity: 1;
  visibility: visible;
}

#splash.is-active{
  opacity: 0;
  visibility: hidden;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
  opacity: 0;
  visibility: hidden;
}

#splash_logo.is-active{
  opacity: 1;
  visibility: visible;
}

#splash_logo img {
  width:200px;
}

#progress-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;   
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

#progress-wrapper.is-active{
  opacity: 1;
  visibility: visible;
}

#progress_bar{
    position: relative;
    z-index: 999;
    margin: 250px auto 0;
	width:200px;
	height:5px;
	border-radius:5px;
	overflow: hidden;
}

#progress_bar .bar{
	height:100%;
	position:absolute;
	animation: progress 1.0s normal;
	animation-fill-mode: forwards;
}
@keyframes progress {
	0% {width: 0}
	100% {width: 100%}
}

/* scrollが回る　*/

.circle-animation {
  stroke-dasharray: 700;
  stroke-dashoffset: 50;
  animation: rotating 9s linear infinite;
  transform-origin: 50% 50%;
}
    @keyframes rotating {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

/* スクロールアニメーション */
.slideIn{
    animation-name: slideIn;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity: 0; 
}
@keyframes slideIn{
from {
    opacity: 0;
    transform: translateX(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.fadeIn{
    animation-name: fadeIn;
    animation-duration:2.0s;
    animation-fill-mode:forwards;
    opacity: 0; 
}
@keyframes fadeIn{
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
.eachTextAnime span{
    display: inline-block;
    opacity: 0;
    
}
.eachTextAnime.appeartext span{
    animation-name: text_anime_on;
    animation-duration:0.6s;
    animation-fill-mode:forwards;
}
@keyframes text_anime_on {
	0% {
        opacity:0;
        transform: translateY(-30px);
    }
	100% {
        opacity:1;
        transform: translateY(0);
    }
}