#progress .spinner {
  display: flex;
  justify-content: space-between;
  width: 70px;
}
#progress .spinner > div {
  display: inline-block;
  width: 18px; /* サイズ - 可変 - 大きくした場合、上の「.spinner」のサイズも変えないと縦長になる */
  height: 18px; /* サイズ - 可変 */
  border-radius: 100%;
  background-color: var(--loading_color_bar1);
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#progress .spinner .bounce1 {
  animation-delay: -0.32s;
}
#progress .spinner .bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  } 40% {
    transform: scale(1.0);
  }
}
