@charset "utf-8";
/* CSS Document */


.swiper.mainImg{
	background:var(--l-blue);
	}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-img{
	position:relative;
	padding-top:56%;
	}

.swiper-img img {
	position:absolute;
	bottom: 50%;
	right:50%;
	-webkit-transform: translate(50%,50%);
	-ms-transform: translate(50%,50%);
	transform: translate(50%,50%);
  height:100%;
	width:auto;
	max-width:1920px;
}
/*PC*/
@media only screen and (min-width : 1025px){
	.swiper-img{
		padding-top:46%;
		}
}
@media only screen and (min-width : 1600px){
	.swiper-img{
		padding-top:0;
		}
	.swiper-img img {
		position:relative;
		bottom: 0;
		right:0;
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translate(0);
		height:auto;
		width:100%;
		margin:auto;
		}
}


/**主要取引先**************/

/* スライドの動き等速 */
.partnerImg .swiper-wrapper {
  transition-timing-function: linear;
	}


/**********/
/* ページネーションの余白 */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px;
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #fff;
	opacity: 0.5;
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 3px 0px rgba(0,0,0,0.5);
	-o-box-shadow: 0 0 3px 0px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 3px 0px rgba(0,0,0,0.5);
  height: 8px;
  width: 8px;
}
/* 選択されているページネーション */
.swiper-pagination-bullet-active {
	opacity: 1;
}