.top-slider {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
}
.slider-field {
	overflow: visible;
	background-color: #eee;
}

.swiper-slide {
	width: 70%;
	max-width: 800px;
	transition: transform 0.3s, opacity 0.3s;
}
.swiper-slide-active {
	transform: scale(1);
	opacity: 1;
	z-index: 2;
}
.swiper-slide-next,
.swiper-slide-prev {
	transform: scale(0.8); /* 左右を小さめに */
	opacity: 0.5;
	z-index: 1;
}
.slider-item a {
	display: block;
	background: #f5f5f5;
	text-decoration: none;
	color: #333;
	border-radius: 8px;
	overflow: hidden;
}
.slider-item img {
	width: 100%;
	height: auto;
}
/* ナビゲーション矢印 */
.swiper-button-prev,
.swiper-button-next {
	color: #333;
	top: 50%;
	transform: translateY(-50%);
}
/* ページネーション配置 */
.slider-field .swiper-pagination {
	position: absolute;
	bottom: -25px;
	width: 100%;
	text-align: center;
}
.swiper-pagination-bullet {
	background: #666;
	opacity: 0.5;
}
.swiper-pagination-bullet-active {
	background: #000;
	opacity: 1;
}
