@charset "utf-8";
/* CSS Document */

@keyframes infinity-scroll {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll__wrap {
  display: flex;
  overflow: hidden;
}
.scroll__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll__list--ani {
  animation: infinity-scroll 80s infinite linear 0.5s both;
}
.scroll__item {
  /*width: calc(100vw / 2);*/
    max-width: 2234px;
    /*width: 2234px;*/
    width: 100vw;
}
.scroll__item > img {
  width: 100%;
}