@media (max-width: 980px) {
.slideshow-container {
    position: relative;
    width: 90vw;
    /* height: 60vw; */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
@media (min-width: 980px) {
.slideshow-container {
    position: relative;
    width: 900px;
    /* height: 450px; */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
  }
}
  .slides {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 1s ease;
  }
  .slide {
    min-width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  /* ナビゲーション用のドット */
 /* ドットを下に配置 */
.dots {
  text-align: center;
  margin-top: 15px;   /* スライドとの余白 */
  position: static;   /* ← absolute を解除して通常のフローに */
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #d4d4d4;;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.active {
  background-color: #9a9a9a;;
}



  /* 矢印ボタン */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 2.0rem;
    font-weight: bold;
    color: white;
    padding: 10px;
    border-radius: 3px;
    user-select: none;
    transition: 0.3s;
  }
  
  .prev {
    left: 5px;
  }
  
  .next {
    right: 5px;
  }
  
  