
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;
  position: relative;
}
.swiper-slide {
  position: relative;
}
.swiper-slide p {
  position: absolute;
	width: 100%;
	padding: 0 10%;
	color: #fff;
  top: 300px;
  left: 0px;
  font-size: 60px;
}
@media screen and (max-width:640px) { 
.swiper-slide {
  height: 300px;
}
.swiper-slide p {
  position: absolute;
  width: 100%;
  padding: 0 2%;
  color: #fff;
  top: 30vh;
  /*left: 0px;*/
  font-size: 40px;
  text-align: center;
}
}
.slide-img img{
  display: block;
}
.swiper-slide .slide-img {
  max-height: 100vh;
}
.swiper-slide .slide-img img {
  width: 100%;
}
@media screen and (max-width:640px) { 
.swiper-slide .slide-img img {
  width: 100%;
  max-width: unset;
  height: auto;
  margin-left: 0%;
}
}


/*スクロールボタン*/
.swiper-container .swiper-wrapper a {
  position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    padding-top: 70px;
    text-align: center;
    color: #fff;
}
.swiper-container .swiper-wrapper a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }