/* Loading背景画面設定　*/
#splash {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99000;
  text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
  width: 30%;
}


@media screen and (min-width:1000px) and (max-width:1166px) {
  #splash_logo {
    width: 350px;
  }
}

@media screen and (max-width:999px) {
  #splash_logo {
    width: 320px;
  }
}


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