@charset "utf-8";
/* ===== 全体 ===== */
.slider {
  width: 100%;
  max-width: 600px;			/* PC最大幅 */
  aspect-ratio: 600 / 393;	/* 元画像比率を保ったまま小さくしたりできる */
  margin: 15px auto 15px auto;
  position: relative;
}
/* ===== 各画像 ===== */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ===== ボタン ===== */
.buttons {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 15px;
}

.buttons button {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.buttons button.active {
  background: #333;
}/* CSS Document */

