/* ===== ヒーローセクション ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

.slide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -20px;
  position: relative;
}

/* ===== スライド画像（既存コード - 変更なし） ===== */
.slide-img {
  opacity: 0;
  transform: scale(1.08) translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.slide-img--visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.slide-img--fadeout {
  opacity: 0;
  transform: scale(0.96) translateY(-60px);
}

.slide-img--top {
  max-height: 50vh;
  max-width: 80vw;
  z-index: 60;
  align-self: flex-start;
  margin-left: 5%;
}

.slide-img--bottom {
  max-height: 40vh;
  max-width: 70vw;
  z-index: 55;
  align-self: flex-end;
  margin-right: 5%;
  margin-top: -50px;
}

@media (max-width: 768px) {
  .slide-img--top {
    margin-left: 2%;
  }

  .slide-img--bottom {
    margin-right: 2%;
  }
}

@media (max-width: 480px) {
  .slide-img--top,
  .slide-img--bottom {
    max-width: 90vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
