/* loop-text
================================================ */
.loop-text-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.loop-text-wrapper {
  display: flex;
  animation: loop-text 40s linear infinite;
}

.loop-text {
  display: inline-block;
  font-size: 60px;
  white-space: nowrap;
  line-height: 1;
  color: #152a6d;
  font-weight: 700;
  padding: 0 0 0.2em 0.5em;
}

/* SP
================================================ */
@media screen and (width <= 750px) {
  .loop-text {
    font-size: calc(24 / 375 * 100vw);
  }
}

@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
