.swiper-wrapper{
  margin-bottom: 50px;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide img {
  height: auto;
}
.swiper-text {
  color: #fff;
  top: 50%;
  left: 45%;
  position: absolute;
  text-shadow: 2px 2px 4px #000000;
  width: 50%;
}
.swiper-text.yogorino {
  top: 43%;
}
.swiper-slide-active p{
  animation-delay: .5s;
  animation-duration: .5s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.swiper-slide-active h2 {
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotateAnimation{
  from {
      transform: rotate(0deg);
      transform: translateY(0px);
  }
  to{
      transform: rotate(90deg);
  }
}
.swiper-slide .swiper-object {
  position: absolute;
  top: 34vw;
  left: 16vw;
  width: 34vw;
  opacity: 0;
  transform: rotate(0deg);
  animation-fill-mode:forwards;
}
.swiper-slide-active .swiper-object {
  opacity: 1;
  transform-origin:100% 0;
  animation: rotateAnimation 1s;
  transform: rotate(90deg);
}
.swiper-slide .swiper-object p img{
  width: 100%;
}
h2.swiper-title {
  font-size: clamp(16px, 3vw, 50px);
  font-weight: 700;
}
h2.swiper-title img{
  width: 40%;
}
.swiper-desc {
  font-size: clamp(12px, 2vw, 30px);
  line-height: 1.5;
  margin-top: 3%;
}