@charset "utf-8";
.swiper-container {
	position: relative;
}
.swiper-container:before {
	content: "";
	display: block;
 padding-top: calc(9/16*100%);
}
.swiper-wrapper {
	position: absolute;
	top: 0;
	left: 0;
}
.swiper-wrapper .swiper-slide {
	position: relative;
	overflow: hidden;
}
.swiper-wrapper .swiper-slide img {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
}
.swiper-slide p.swiper-caption {
	width: 70%;
	z-index: 1;
	position: absolute;
	color: #fff100;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.4);
	font-weight: bold;
	font-size: 2.2em;
	/*line-height: 160%;*/
	text-align: center;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin:0;
	padding:5%;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 480px) {
.swiper-container {
 height : -webkit-calc(100vh - 80px);
 height: calc(100vh - 80px);
}
.swiper-wrapper {
 top: 60px;
}
.swiper-wrapper .swiper-slide img {
 width: auto;
 min-height: 100%;
}
.swiper-slide p.swiper-caption {
 width: 65%;
 font-weight: normal;
 font-size: 1.3em;
 text-align: left;
}
}
