@charset "UTF-8";

.c-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #fff;
}

.c-loading:before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition-duration: 1s;
}

.c-loading.-isLoaded:before {
  opacity: 0;
}

.cloud {
  position: absolute;
  inset: 0;
}

.cloud img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.plane {
  position: absolute;
  height: 6.8vw;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .plane {
    height: min(15vw, 110px);
    bottom: 25%;
  }
}

.plane img {
  width: auto;
  height: 100%;
}
.plane.-play {
  transform: translate(100vw, -100vh);
  transition: transform 4s linear;
}
@media only screen and (max-width: 767px) {
  .plane.-play {
    transform: translate(100vw, -50vh);
  }
}

.loading_logo {
  height: min(20vw, 145px);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
}

.loading_logo img {
  width: auto;
  height: 100%;
}
