@charset "UTF-8";
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: linear-gradient(135deg, #000000 0%, #004d45 50%, #000000 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#splash:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: radial-gradient(circle, rgba(0, 205, 183, 0.3) 1px, transparent 1px), radial-gradient(circle, rgba(255, 215, 0, 0.2) 1px, transparent 1px), radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  background-position: 0 0, 40px 60px, 130px 270px;
  -webkit-animation: sparkle 20s linear infinite;
          animation: sparkle 20s linear infinite;
}

#splash .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#splash .loading:after {
  content: "LEM";
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 205, 183, 0.8), 0 0 40px rgba(0, 205, 183, 0.6), 0 0 60px rgba(0, 205, 183, 0.4);
  -webkit-animation: glow 2s ease-in-out infinite;
          animation: glow 2s ease-in-out infinite;
}

#splash .loading .loading-bar {
  display: inline-block;
  width: 6px;
  height: 40px;
  margin: 0 3px;
  border-radius: 10px;
  -webkit-animation: loading 1.2s ease-in-out infinite;
          animation: loading 1.2s ease-in-out infinite;
  -webkit-box-shadow: 0 0 10px currentColor;
          box-shadow: 0 0 10px currentColor;
}

#splash .loading .loading-bar:nth-child(1) {
  background: -webkit-gradient(linear, left top, left bottom, from(#1AD9C5), to(#00CDB7));
  background: linear-gradient(180deg, #1AD9C5, #00CDB7);
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

#splash .loading .loading-bar:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#ffaa00));
  background: linear-gradient(180deg, #ffd700, #ffaa00);
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

#splash .loading .loading-bar:nth-child(3) {
  background: -webkit-gradient(linear, left top, left bottom, from(#1AD9C5), to(#00CDB7));
  background: linear-gradient(180deg, #1AD9C5, #00CDB7);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#splash .loading .loading-bar:nth-child(4) {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#ffaa00));
  background: linear-gradient(180deg, #ffd700, #ffaa00);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scaleY(2.5);
            transform: scaleY(2.5);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scaleY(2.5);
            transform: scaleY(2.5);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scaleY(2.5);
            transform: scaleY(2.5);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scaleY(2.5);
            transform: scaleY(2.5);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

@-webkit-keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 205, 183, 0.8), 0 0 40px rgba(0, 205, 183, 0.6), 0 0 60px rgba(0, 205, 183, 0.4);
  }
  50% {
    text-shadow: 0 0 30px #00cdb7, 0 0 60px rgba(0, 205, 183, 0.8), 0 0 90px rgba(0, 205, 183, 0.6), 0 0 120px rgba(255, 215, 0, 0.4);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 205, 183, 0.8), 0 0 40px rgba(0, 205, 183, 0.6), 0 0 60px rgba(0, 205, 183, 0.4);
  }
  50% {
    text-shadow: 0 0 30px #00cdb7, 0 0 60px rgba(0, 205, 183, 0.8), 0 0 90px rgba(0, 205, 183, 0.6), 0 0 120px rgba(255, 215, 0, 0.4);
  }
}

@-webkit-keyframes sparkle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sparkle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*# sourceMappingURL=loading.css.map */