/* ===============================================
スライダー関係の設定
=============================================== */

/* 店舗紹介用のswiper */
.shop-swiper {
	aspect-ratio: 3 / 2;	
	width: 100%;
	height: auto;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3)
}
.shop-swiper-thumb {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}
.shop-swiper-thumb .swiper-slide {
	width: 25%;
	height: 100%;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
	opacity: 0.4;
}
.shop-swiper-thumb .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* キャプションの設定 */
*:has( > .caption) {
	position: relative;
}
.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 4px 10px;
	width: 100%;
	/* height: 1,2ch; */
	font-size: 1.2rem;
	background: #000000aa;
	display:block;
}

.swiper-button-next, .swiper-button-prev {
	position: absolute;
	z-index: 10;
	top: var(--swiper-navigation-top-offset, 50%);
	width: 24px;
	height: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.swiper-button-next::before, .swiper-button-prev::before {
	font-family: swiper-icons;
	font-size: 24px;
}
.swiper-button-prev {
	right: auto;
	left: var(--swiper-navigation-sides-offset, 10px);
}
.swiper-button-next {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto;
}
.swiper-button-prev::before {
	content: 'prev';
}
.swiper-button-next::before {
	content: 'next';
}


/* フェードモード時 共通調整 */
.swiper-fade .swiper-slide {
	transition-property: opacity !important;
}