Template:流れる文字/styles.css

@keyframes flowing {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}