<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

.c-loading-box{
  background: #fff;
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.c-loading-box.is-fadeout{
  animation-duration: 0.1s;
  animation-name: fade-out;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fade-out;
  opacity: 0;
}
.c-loading-box.is-hidden{
  display: none;
}
/* fade out 100% */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.icon-loading {
  height: 86px;
  left: 50%;
  margin: -43px 0 0 -43px;
  position: fixed;
  top: 50%;
  width: 86px;
}
</pre></body></html>