@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-img {
  background-size: cover;
  background-position: center center;
  height: 70vh;
}
.slide-text img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.slide-text a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #13215b;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.slide-text a:hover {
  background-color: #ffffff;
  color: #13215b;
}
@media screen and (max-width: 768px) {
  .slide-text a {
    font-size: 13px;
    padding: 10px;
    right: 10px;
    bottom: 10px;
  }
  .slide-text img {
    max-width: 70%;
  }
}