.menu-slideshow {

  position: relative;
  top: 35px;
  width: 80%;
  height: 85vh;
  overflow: hidden;
  margin: 0 auto; /* ← これで中央寄せ */
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
