@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes zoomout {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(50, 1) rotate(60deg);
  }
}

@keyframes jumpout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: -400px;
    transform: scale(4);
  }
}

@keyframes katakata {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1.1, 1) rotate(10deg);
  }
  50% {
    transform: scale(1, 1) rotate(0deg);
  }
  75% {
    transform: scale(1.1, 1) rotate(-10deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}

.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #000000;
  overflow: hidden;
}

.loading .loadingText {
  background-image: url(../../images/common/nowloading_bg.jpg);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.loaderText {
  width: 254px;
  height: 138px;
  position: absolute;
  background-image: url("../../images/common/nowloading_text.png");
  background-repeat: no-repeat;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loaderText.anime {
  animation: flash 2.0s linear infinite;
}

body {
  line-height: 1;
  background-color: #000000;
  color: black;
  margin: 0;
  padding: 0;
}

#wrapper {
  position: relative;
}

#contents {
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  color: black;
  margin: 0;
  padding: 0;
}

#contents_inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  min-width: 1100px;
  background-color: transparent;
  position: relative;
}

.container {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.container .nondisp {
  position: absolute;
  top: 3000px;
}

