@charset "UTF-8";
/*  ローディング中のテキスト点滅 */
@keyframes loading_text {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.loading_text {
  text-align: center;
  color: #bbb;
  animation: 1s loading_text 0s infinite alternate;
}
