/*
Theme Name: fuchusports Child
Theme URI: 
Template: fuchusports
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/*スライドショー*/
/*スライドショー*/
.img-frame {
  position: relative;
  /* width: 100%; */
  height: 80vh;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .img-frame {
    height: 60vh;
  }
}

.img-00 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .img-00 {
    height: 100%;
  }
}

.img-00.active {
  opacity: 1;
  z-index: 1;
}
