/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.scroll {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.scroll__wrap {
  display: flex;
  overflow: hidden;
}

.scroll__list {
  display: flex;
  list-style: none;
}

.scroll__list--left{
  animation :infinity-scroll-left 30s infinite linear 0.5s both;
  padding: 0;
}

.scroll__item {
  width: calc(100vw / 6);
}
@media screen and (max-width:768px) {
  .scroll__item {
    width: calc(100vw / 4);
  }
}
.scroll__item > img{
  width: 100%;
}