@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ローディング
---------------------------------------------------------------------------------------------------------------------
*/
.loading-bg {
  width: 100%;
  height: 100vh;
  background: linear-gradient(127deg, #A631C9, #193665);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; }

.loading-animation-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15.5em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.2;
  z-index: 6;
  color: white;
  border-right: 2px solid white;
  animation: typewriter 2s steps(40) 1s 1 normal both, blinkTextCursor 100ms steps(40) infinite normal; }

@keyframes typewriter {
  from {
    width: 0; }
  to {
    width: 15.5em; } }
@keyframes blinkTextCursor {
  from {
    border-right-color: white; }
  to {
    border-right-color: transparent; } }
