@charset "shift_jis";
/* =====================================
   Swiper 必要最小限 CSS（抜粋）
===================================== */

/* コンテナ */
.plan-swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* スライドを包むエリア */
.swiper-wrapper {
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

/* スライド */
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	position: relative;
}

/* ======= Navigation(矢印) ======= */
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	z-index: 10;
	cursor: pointer;
}

/* 擬似矢印 */
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
	color: #fff;
}

/* デフォルト矢印記号 */
.swiper-button-next::after {
	content: url('/images/index/right.png');
	display: block;
}

.swiper-button-prev::after {
	content: url('/images/index/left.png');
	display: block;
}

/* スマホ時のみボタン表示（PCは非表示） */
@media (min-width: 769px) {

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}


/* PCは3つ並び（Swiper無効時） */
@media (min-width: 769px) {
	.plan-swiper .swiper-wrapper {
		display: flex !important;
		gap: 20px;
	}

	.plan-swiper .swiper-slide {
		width: calc((100% - 40px) / 3);
	}
}

/* SP: スライド用 */
@media (max-width: 768px) {
	.plan-swiper .swiper-wrapper {
		display: flex;
		transition-property: transform;
	}

	.plan-swiper .swiper-slide {
		width: 89%;
		/* ← チラ見せ幅 */
		margin: 0 0 20px 0;
	}

}

/* 矢印をボックスの中央に */
.plan-swiper .swiper-button-next,
.plan-swiper .swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 80%;
}


.plan-swiper .swiper-button-prev {
	left: 8px;
}

.plan-swiper .swiper-button-next {
	right: 50px;
}

/* ページネーション（ドット） */
.plan-swiper .swiper-pagination {
	text-align: center;
	margin-bottom: 10px;
}

.plan-swiper .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #c3e5e9;
	opacity: 1;
	margin: 0 4px;
	border-radius: 50%;
}

.plan-swiper .swiper-pagination-bullet-active {
	background: #0e757f;
}