/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fcfbdf;
  text-align:center;
  color:#333;
}

/* Loading画像中央配置　
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
translate から flexboxに変更したので削除*/

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

@media screen and (max-width: 750px) {

#splash_logo img {
  width:80vw;
}

}

/* fadeUpをするアイコンの動き */
.fadeUp{
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);
  }
}
