/* Scss Document */
body {
  opacity: 0;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading-wrapper {
  display: none;
}
.loading-wrapper .loading-logo {
  display: none;
}
.loading-wrapper.first {
  position: fixed;
  left: 0;
  top: 0;
  background: url(../img/index_new/bg_catch.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
@media only screen and (max-width: 1200px) {
  .loading-wrapper.first {
    height: 100dvh;
  }
}
.loading-wrapper.first .loading-logo {
  display: block;
  width: 72rem;
  animation: fadeIn 1s forwards;
}
@media only screen and (max-width: 640px) {
  .loading-wrapper.first .loading-logo {
    width: 10vw;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=loading.css.map */