/*
fade
*/
.mv01 {
	width: 100%;
    margin-bottom: 20px;
	position: relative;
}
.swiper.main-swiper {
	height: 300px;
	width: 100%;
	z-index: 200;
	position: relative;
}
@media (min-width: 768px) {
    .swiper.main-swiper {
		height: 600px;
    }
}
.main-swiper .swiper-slide {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.main-swiper .swiper-slide img {
	display: block;
}
.swiper-text {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
.swiper-title {
	margin-right: 10px;
	margin-left: 10px;
}
.swiper-slide span.kochira {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 140px;
}
@media only screen and (min-width: 520px) and (max-width: 812px) {
	.swiper-title {
		width: 480px;
	}
}
@media (min-width: 768px) {
	.swiper-slide span.kochira {
		bottom: 20px;
		right: 20px;
		max-width: 200px;
	}
}
/*
.swiper-text {
	color: #fff;
	font-weight: 500;
	line-height: 1.4em;
	position: absolute;
	text-shadow: 1px 1px 2px #333;
	left: 10%;
	top: 35%;
	width: 80%;
	text-align: center;
}
*/
.swiper-desc {
	font-size: 16px;
	line-height: 1.5;
}

/* 表示されているスライドのテキスト */
.main-swiper .swiper-slide-active .swiper-title {
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.main-swiper .swiper-slide-active .swiper-desc {
  animation-delay: 2s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	opacity: 0.7;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 30px;
}
