@import url("sp.css") screen and (max-width:820px);
@import url("pc.css") screen and (min-width:821px), print;

/* 横スクロール */
.member {
  touch-action: pan-y;
  cursor: grab;
}

.member.is-dragging {
  cursor: grabbing;
}

.track,
.second {
  touch-action: pan-y;
}

.track.is-dragging,
.second.is-dragging {
  cursor: grabbing;
}

.is-stop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 3s ease;
}

/* JS完了後 */
.is-ready {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}