@charset "UTF-8";
/* -------------------------------
	home
-------------------------------- */
#mainvisual .swiper-slide {
  height: calc(100vh - 181px); /* headr 59px + サムネイル 122px */
  min-height: 482px;
  background-color: #ccc;
  overflow: hidden;
}
#mainvisual .swiper-slide img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  object-position: 50% 50%;
  transform: scale(1.1);
}
#mainvisual .swiper-slide.swiper-slide-active img {
  animation-duration: 5s; /* スライダーと合わせる */
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-name: main_img_r_l;
} 
@media print, screen and (min-width:768px) {
	#mainvisual .swiper-slide {
    height: 500px;
	}
}
@media print, screen and (min-width:992px) {
	#mainvisual .swiper-slide {
    height: 600px;
	}
}
@media print, screen and (min-width:1200px) {
	#mainvisual .swiper-slide {
    height: 700px;
	}
}

/* animation */
@keyframes main_img_r_l {
  from {
    transform: translateX(5%) scale(1.1);
  }
  100% {
    transform: translateX(0%) scale(1.1);
  }
}