@charset "utf-8";


/* スライダー本体 */
.swiper {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  text-align: center;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  margin: auto;
}

.caption {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

/* サムネイル */
.thumb-container {
  display: flex;
  flex-wrap: wrap; /* スマホ対応：折り返し */
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.thumb-media {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.thumb-media:hover {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.thumb-media-active {
  border: 2px solid #007bff;
}

@media (max-width: 767px) {
  .caption {
    font-size: 12px;
  }
  .swiper-slide {
    min-height: 75vh; /* スマホの画面の75%を最低高さにする（これ重要！） */
  }
}

