@charset "UTF-8";
/* コンテンツ */

#topimg {
	position: relative;
    max-width: 1400px;
    min-width: 1000px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    transition: all 0.3s;
    margin:0 auto 5em;
    padding: 0 100px;
}

.swiper-container1 {
	position:relative;
	z-index: 1;
	width: 100%;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.swiper-container1 .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.swiper-container1 .swiper-slide span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

@keyframes sl_zoom_ani {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);

  }
}

.swiper-slide-active span,
.swiper-slide-duplicate-active span,
.swiper-slide-prev span {
  animation: sl_zoom_ani 8s linear 0s normal both;
}

.sd1 span {
    background-image: url("../slide/01.webp");
}
.sd2 span {
    background-image: url("../slide/02.webp");
}
.sd3 span {
    background-image: url("../slide/03.webp");
}

@media screen and (max-width: 1200px) {
#topimg {
    aspect-ratio: 1.618 / 1;
}
}

@media screen and (max-width: 560px) {
#topimg {
    min-width: auto;
    aspect-ratio: 1;
    margin:0 auto 4em;
    padding: 20px 20px 0;
}
.swiper-container1 {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
}
