.swiper,.swiper-thumbnail {
	max-width:1920px;
}

/*コンテナ要素のスタイル*/
.swiper-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-slide {
	/*スライド要素の幅と高さを調整*/
	width: 100%;
	height: 100%;
}

.swiper-slide img {
	/*スライド要素の幅と高さを調整*/
	width: 100%;
	height: 100%;
}

/*サムネイルのスタイル*/
.swiper-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
}

.swiper-thumbnail img {
  width:100%;
}

/*アクティブなときのスタイル*/
.swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
/*

.swiper-button-prev:after,
.swiper-button-next:after {
  content: ""; 
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  border-top: solid 0.3rem #fff;
  border-right: solid 0.3rem #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.swiper-button-prev:after {
  transform: rotate(-135deg);
}

.swiper-button-next:after {
  transform: rotate(45deg);
}
*/

.swiper-button-prev,.swiper-button-next {
	content: ""; /*ここでデフォルトの矢印を上書き*/
	background-color: #333;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.swiper-button-next::after,.swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 1.5rem;
}

.swiper-button-next::after {
    content: '\f054'; /* FontAwesomeの右矢印 */
}

.swiper-button-prev::after {
    content: '\f053'; /* FontAwesomeの左矢印 */
}


/*------モバイル　ブレイクポイント------*/
@media (max-width: 640px) {

	.swiper-button-prev,.swiper-button-next {
	background-color: transparent;
	border-radius: 30%;
	width: 30px;
	height: 30px;
	}
}