@charset "UTF-8";
/*// wrapperのサイズを調整 //*/
.swiper-wrapper {
	width: 100%;
	max-width: 1080px;
	height: 100%;
	margin: 0 auto;
	margin-top: 1.0em;
}
/*// スライドのサイズを調整、中身のテキスト配置調整、背景色 //*/
.swiper-slide {
	color: #000;
	width: 100%;
	height: 100%;
	/*text-align: center;*/
	line-height: 3rem;
	padding-bottom: 1.0em;
}
.swiper-slide > h4.sw_txt {
	font-weight: 700;
	text-align: center;
	position: relative;
	padding-bottom: 3%;
	font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
.swiper-slide > h4.sw_txt::after {
	content:'';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #e9529f rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.sw_item{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5% 0;
}
.sw_item img {
	width: 80%;
}
/*// 一つ一つの画像に枠などつける時 //*/
/*.swiper-slide {
	background: linear-gradient(to bottom, #F0F0F0, #E2E2E2);
	border-radius: .8rem;
}*/

.swiper-pagination {
	padding-bottom: 0;
}
:root {
    --swiper-theme-color: #000;
}
/*// スライダー矢印カスタマイズ //*/ 
.swiper-button-prev,
.swiper-button-next {
	width: clamp(2.5rem, 2.318rem + 0.91vw, 3rem);
	height: clamp(2.5rem, 2.318rem + 0.91vw, 3rem);
}
.swiper-button-prev {
	left:  0;
	right: auto;
	background: url("../images/prev.png") no-repeat center center / contain;
	filter: drop-shadow(0px 3px 2px #666666);
}
.swiper-button-next {
	right: 0;
	left: auto;
	background: url("../images/next.png") no-repeat center center / contain;
	filter: drop-shadow(0px 3px 2px #666666);
}
.swiper-button-prev::after ,
.swiper-button-next::after {
	content: "";
}

/*---------- ページネーションのカスタマイズ ----------*/ 
.swiper-pagination {
	bottom: 0 !important;/*// 位置を調整 //*/
}
.swiper-pagination-bullet {
    width: 15px;/*// ドットのサイズ調整 //*/
    height: 15px;
	margin: 0 1.5% !important;/*// ドットの余白調整 //*/
}


.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

@media screen and (max-width: 768px){
	.swiper-button-prev ,
	.swiper-button-next {
		width: 2.0rem;
		height: 2.0rem;
	}
	/*.swiper-slide > h4.sw_txt {
		font-size: 1.125rem;
	}*/
	.sw_item img {
		width: 80%;
		margin: 0 auto;
	}
	.swiper-pagination-bullet {
		margin: 0 4% !important;/*// ドットの余白調整 //*/
	}
	.swiper-button-prev {
		left: 0x;
	}
	.swiper-button-next {
		right: 0;
	}
	.swiper-pagination-bullet {
		width: 9px;/*// ドットのサイズ調整 //*/
		height: 9px;
		margin: 0 2.5% !important;/*// ドットの余白調整 //*/
	}
}

.swiper-slide p {
	padding: 1.5em;
	box-sizing: border-box;
}