.sliding_wrap {
  overflow: hidden;
	position:relative;
}

.sliding {
  background: url(/img/top/staff_bg.jpg) repeat-x;
  height: 360px;
  width: 3000px; /* 画像サイズの3倍以上、画面で端が見えないサイズに */
  animation: slide 60s linear infinite; /* スピードを速くするには秒数を短く */
	margin:20px 0 0 0;
	position: absolute;
}

@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-1000px, 0, 0); /* 画像のサイズを記載 */
  }
}