
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: 999;
  background: rgb(92,92,100);
background-color: #000000;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
.splash_logo {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  margin: 50vh auto 0;
  transform: translateY(-50%);
  text-align: center;
}

/* Loading アイコンの大きさ設定　*/
.splash_logo img {
  width:200px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

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

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

/* ローディング中のスクロール禁止 */

/*.loaded {
  opacity: 0;
  visibility: hidden;
}*/

/*.loaded {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}*/