@charset "UTF-8";
/* CSS Document */
	
.topbox{
  opacity: 0;
}
.topcenter {
  position: absolute;
  top: 10%;
  left: 0%;
}

.topfadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
	

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

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

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time00{
animation-delay: 0.0s;
z-index: 10;
}

.delay-time02{
animation-delay: 0.2s;
z-index: 9;
}

.delay-time04{
animation-delay: 0.4s;
z-index: 8;
}
	
.delay-time06{
animation-delay: 0.6s;
z-index: 7;
}

.delay-time08{
animation-delay: 0.8s;
z-index: 6;
}

.delay-time10{
animation-delay: 1.0s;
z-index: 11;
}

.delay-time15{
animation-delay: 1.5s;
z-index: 12;
position: absolute;
top: 65%;
left: 50%;
}