@charset 'utf-8';

:root {
  --ld-bg-color: #fff;
  --ld-font-color: #232323;
  --ld-point-color: #16336F;
  --ld-logo-width: 247px;
  --ld-logo-height: 270px;
}

#spinnerwrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--ld-bg-color);
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
#spinnerwrap .logo {
  text-align: center;
  width: var(--ld-logo-width);
  height: var(--ld-logo-height);
  background: no-repeat center / 100% auto;
}
#spinnerwrap .spinner {
  margin: 30px auto 0;
  width: 80px;
  text-align: center;
}
#spinnerwrap .logo svg {
  transform: scale(0.9);
}
#spinnerwrap .spinner > div {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  background-color: var(--ld-point-color);
  border-radius: 100%;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#spinnerwrap .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

#spinnerwrap .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

#spinnerwrap .txt {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ld-font-color);
  text-align: center;
  line-height: 1.4em;
}
#spinnerwrap .txt .point {
  color: var(--ld-point-color);
}
#spinnerwrap .txt.btm_txt {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 900;
}

.dot_ani_txt span {
  top: 0;
  position: relative;
  display: inline-block;
  animation: bounceTxt 0.3s ease infinite alternate;
  font-size: 24px;
  color: var(--ld-point-color);
  text-emphasis-style: dot;
  text-emphasis-position: over left;
  -webkit-text-emphasis-style: dot;
  -webkit-text-emphasis-position: over;
}
.dot_ani_txt span:nth-child(1) {
  animation-delay: 0.1s;
}
.dot_ani_txt span:nth-child(2) {
  animation-delay: 0.2s;
}
.dot_ani_txt span:nth-child(4) {
  animation-delay: 0.3s;
}
.dot_ani_txt span:nth-child(5) {
  animation-delay: 0.4s;
}
.dot_ani_txt span:nth-child(6) {
  animation-delay: 0.5s;
}
.dot_ani_txt span:nth-child(7) {
  animation-delay: 0.6s;
}
.dot_ani_txt span:nth-child(8) {
  animation-delay: 0.7s;
}
.dot_ani_txt span:nth-child(9) {
  animation-delay: 0.8s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -webkit-filter: opacity(0);
  }
  40% {
    -webkit-transform: scale(1);
    -webkit-filter: opacity(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-filter: opacity(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: opacity(1);
    opacity: 1;
  }
}
@keyframes bounceTxt {
  100% {
    top: -10px;
  }
}
body.loading {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

@media screen and (max-width: 768px) {
  #spinnerwrap .logo {
    width: 229px;
    height: 217px;
    margin-top: -35px;
  }
  #spinnerwrap .logo svg {
    transform: scale(0.65);
  }
  #spinnerwrap .txt {
    font-size: 1.2rem;
  }
  #spinnerwrap .txt.btm_txt {
    font-size: 1.2rem;
  }
}
