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

.scroll-container {
  width: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.scroll-item {
  display: inline-block;
  width: 60%;
  margin-right: 2%;
}

.scroll-item img {
  width: 100%; /* scroll-item の幅いっぱいにバナーを表示 */
  display: block; /* バナーをブロック要素にする */
}

.scroll-item p {
  text-align: left;
  margin: 5px auto 0 5px;
}