@charset "utf-8";

/*========= ローディングアニメーション ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#fff;
  display: none;
}

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

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

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

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


}

/*========= ローディング画面
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #00c7c4;
  z-index: 9999999;
  text-align:center;
  color:#fff;
  display: none;
}

 ===============*/
