@charset "UTF-8";
.mv_wrap {
  -webkit-animation: start-anime 0.2s ease;
          animation: start-anime 0.2s ease;
}

.gametitle-scene {
  -webkit-animation: 0.25s start-anime 0.2s ease;
          animation: 0.25s start-anime 0.2s ease;
}

.item:nth-child(1) {
  -webkit-animation: 0.5s start-anime 0.2s ease;
          animation: 0.5s start-anime 0.2s ease;
}

.item:nth-child(2) {
  -webkit-animation: 0.75s start-anime 0.2s ease;
          animation: 0.75s start-anime 0.2s ease;
}

.item:nth-child(3) {
  -webkit-animation: 1s start-anime 0.2s ease;
          animation: 1s start-anime 0.2s ease;
}

.item:nth-child(4) {
  -webkit-animation: 1.25s start-anime 0.2s ease;
          animation: 1.25s start-anime 0.2s ease;
}

.item:nth-child(5) {
  -webkit-animation: 1.5s start-anime 0.2s ease;
          animation: 1.5s start-anime 0.2s ease;
}

@-webkit-keyframes start-anime {
  0% {
    -webkit-transform: translatey(50px);
            transform: translatey(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatey(0);
            transform: translatey(0);
    opacity: 1;
  }
}

@keyframes start-anime {
  0% {
    -webkit-transform: translatey(50px);
            transform: translatey(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translatey(0);
            transform: translatey(0);
    opacity: 1;
  }
}

footer {
  -webkit-animation: start-anime-foot 0.2s ease;
          animation: start-anime-foot 0.2s ease;
}

@-webkit-keyframes start-anime-foot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes start-anime-foot {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ローディング画面 */
#loading {
  /* 画面いっぱいになる箇所 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* 中のローディングアニメ */
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading .loader,
#loading .loader:before,
#loading .loader:after {
  background: #ffffff;
  -webkit-animation: loading 1s infinite ease-in-out;
          animation: loading 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

#loading .loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

#loading .loader::before, #loading .loader::after {
  position: absolute;
  top: 0;
  content: '';
}

#loading .loader::before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

#loading .loader::after {
  left: 1.5em;
}

@-webkit-keyframes loading {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes loading {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}
/*# sourceMappingURL=start-anime.css.map */