/* カルーセルの基本スタイル */
.embla {
  max-width: 600px;
  /* margin: 20px auto; */
  overflow: hidden;
  position: relative;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  text-align: center;
}
.embla__slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ナビゲーションボタン */
.embla__button {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}
.embla__button--prev {
  left: 10px;
}
.embla__button--next {
  right: 10px;
}

/* ドットナビゲーション */
.embla__dots {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  gap: 8px;
  position: absolute;
  top: 59%;
  left: 0;
  right: 0;
}
.embla__dot {
  width: 8px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: solid 0.5px white;
}
.embla__dot.is-selected {
  background: #333;
}

#auction-detail .embla__controls {
  position: relative;
  height: 50px;
}

#auction-detail .embla__button {
  /* top: 0;
  bottom: 0; */
}

#auction-detail .embla__dots {
  top: 18%;
}
