@charset 'utf-8';

.top_slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top_img {
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 10s ease;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.top_img.active {
  opacity: 1;
  transform: scale(1.15);
  z-index: 1;
}


/* ズームアニメーション */
@keyframes zoomInSlow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(3);
  }
}

.top_img_wrap {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
}
