* {
  margin: 2px;
  padding: 2px;
}
html {
  font-size: 80%;
}
.slider-x {
  /* 以下の設定は必須 */
  scroll-snap-type: x mandatory;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* スマホ対応のため必須 */
  overflow-scrolling: touch; /* スマホ対応のため必須 *
    
    /* 以下デモ用のデザイン */
  height: 500px;
}
.slider-x > div {
  /* 以下の設定は必須 */
  scroll-snap-align: center;
  height: 100%;
  width: 100%;
  flex: none;

  /* 以下デモ用のデザイン */
  color: #fff;
  font-size: 150%;
  font-weight: bold;
  /* 文字の上下左右中央寄せのための記述 */
  display: flex;
  align-items: center;
  justify-content: center;
}
video {
  width: 350px;
}
