@charset "utf-8";
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#E698A3;
  text-align:center;
}
#splash_txt{
    font-family: "Holtwood One SC", serif;
    color: #FFFDF6;
    font-weight: 700;
    font-size: 3.0rem;
    position: absolute;
    top: 25%;
    left:50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.3rem;
}

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

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

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

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

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

@media screen and (max-width: 767px) {
    #splash_txt{
        font-size: 1.8rem;
        letter-spacing: 0.1rem;
    }
    #splash_logo img{
        max-width: 350px;
    }
}
