@charset "utf-8";
.js-horizontal-swipe {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  /* 通常は掴めることを示す */
  -webkit-overflow-scrolling: touch;
}

.js-horizontal-swipe:active,
.js-horizontal-swipe.is-dragging {
  cursor: grabbing;
  user-select: none;
  /* ドラッグ中にテキスト選択されないように */
}