/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*                   道案内スライドショー                       */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.swiper-container {
	display: inline-block;
	width: 320px;
	max-width: 100%;
	height: auto;
}
/* ページネーションの位置 */
.swiper-container {
	padding-bottom: 35px;
}
/* キャプション */
.slider-caption {
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 0px 0px;
	height: 55px;
	background: rgba(0, 180, 170, 1.00);
	font-size: 17px;
	font-weight: 400;
	line-height: 22px;
	text-align: left;
	color: #fff;
}
/* 前後アローボタンの変更 */
.swiper-button-prev:after {
	font-family: "Font Awesome 5 Free";
	font-size: 36px;
	font-weight: 900;
	content: "\f137";
	color: #fff; /* 色を白に */
	margin-left: 20px; /* マージンを追加 */
}
.swiper-button-next:after {
	font-family: "Font Awesome 5 Free";
	font-size: 36px;
	font-weight: 900;
	content: "\f138";
	color: #fff;
	margin-right: 20px;
}