﻿@charset "utf-8";

body {
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.contents-x {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x;

  gap: 20px;
}
.contents-y {
  height: 500px;
  overflow-y: scroll;
  scroll-snap-type: y;
}
.item {
  scroll-snap-align: start;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.contents-x .item {
  flex-shrink: 0;

  width: 50%;
  height: 128px;
}
.contents-y .item {
  height: 300px;
}

.item:nth-child(1) {background-color: tomato;}
.item:nth-child(2) {background-color: skyblue;}
.item:nth-child(3) {background-color: gold;}
.item:nth-child(4) {background-color: purple;}
.item:nth-child(5) {background-color: lime;}