@charset "utf-8";

/* =========================
  スライドショー改善版
========================= */

#slideshow {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

#slideshow div {
  width: 100%;
  aspect-ratio: 4 / 3; /* 高さを自動調整 */
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
}

#slideshow div div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* 画像 */
#slideshow img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← 切れないように */
  background: #fff;
}

/* サムネイル */
#slideshow ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
}

#slideshow ul li {
  width: calc(20% - 5px);
  list-style: none;
}

#slideshow ul li img {
  width: 100%;
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

#slideshow ul li img:hover {
  opacity: 1;
}

#slideshow .active {
  opacity: 1 !important;
}
/* ▼ 説明文 */
#slide-caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* =========================
  スマホ対応
========================= */
@media screen and (max-width: 600px) {

  #slideshow div {
    aspect-ratio: 1 / 1; /* スマホは正方形 */
  }

  #slideshow ul li {
    width: calc(25% - 5px); /* 4列 */
  }

}
