.cmshtml .satou_car_stage {
  position: relative;
  width: 80%;
  height: 89px;
  bottom: 0px;
  display: block;
  margin: 0 auto;
}

.cmshtml .satou_car_wrap {
  position: absolute;
  top: 0;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: 1;
  margin-right: -25px;
}

.cmshtml .satou_car_item {
  width: 120px;
  height: 89px;
  border-radius: 0;
  background-image: url(../img/home/satou_car.png);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.cmshtml .satou_car_item.anime {
  animation-name: upDown;
  animation-iteration-count: infinite;
  animation-duration: 0.1s;
  animation-direction: alternate;
  animation-timing-function: steps(2);
  transition-duration: .3s;
  transition-property: transform;
}

.cmshtml .satou_car_wrap[data-order="left"] {
  animation-name: GoLeft;
}

.cmshtml .satou_car_wrap[data-order="right"] {
  animation-name: GoRight;
}

.cmshtml [data-order="right"] > .satou_car_item {
  transform: rotateY(180deg);
}

@keyframes GoLeft {
  0% {
    right: 10%;
  }
  100% {
    right: 90%;
  }
}

@keyframes GoRight {
  0% {
    right: 90%;
  }
  100% {
    right: 10%;
  }
}

@keyframes upDown {
  0% {
    top: 0;
  }
  100% {
    top: 3px;
  }
}
