/**
 * カスタム Swiper ブロック フロントエンドスタイル
 * ported from koma-puppy/assets/css/swiper.css
 * SVG paths adjusted for assets/css/blocks/ → assets/image/
 *
 * @package hs-gac-v2
 */

.wp-block-create-block-custom-swiper .swiper-scrollbar {
	display: none;
}

.wp-block-create-block-custom-swiper {
	max-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
}

.flexible-swiper-container {
	width: 100%;
	max-width: 100%;
	position: relative;
}

.wp-block-create-block-custom-swiper .swiper {
	width: 100%;
	max-width: 100%;
	height: auto;
	overflow: hidden;
}

.wp-block-create-block-custom-swiper .swiper-wrapper {
	width: 100%;
	height: auto;
	box-sizing: border-box !important;
}

.wp-block-create-block-custom-swiper .swiper .swiper-wrapper {
	gap: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}

.wp-block-create-block-custom-swiper .swiper-slide {
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box !important;
}

.wp-block-create-block-custom-swiper .swiper .swiper-wrapper .swiper-slide {
	box-sizing: border-box;
}

/* ── スライド画像 ─────────────────────────────────────────────── */

.wp-block-create-block-custom-swiper .swiper-slide-image,
.wp-block-create-block-custom-swiper .swiper-slide img {
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

@media (min-width: 1024px) {
	.wp-block-create-block-custom-swiper .swiper-slide-image {
		border-radius: 24px;
	}
}

/* フォールバック */

.wp-block-create-block-custom-swiper img {
	max-width: 100% !important;
	width: auto !important;
	height: auto !important;
}

/* ── キャプション ──────────────────────────────────────────────── */

.wp-block-create-block-custom-swiper h4 {
	margin-top: 0 !important;
	margin-bottom: 8px !important;
	font-size: 18px !important;
}

@media (min-width: 1024px) {
	.wp-block-create-block-custom-swiper h4 {
		font-size: 20px !important;
	}
}

/* ── ページネーション ─────────────────────────────────────────── */

.wp-block-create-block-custom-swiper .swiper-pagination {
	position: relative !important;
	top: -8px;
	margin-top: 20px;
	display: flex !important;
	justify-content: center !important;
	bottom: auto;
}

.wp-block-create-block-custom-swiper .swiper-pagination-bullet {
	background: var(--gray_color) !important;
	opacity: 1 !important;
}

.wp-block-create-block-custom-swiper .swiper-pagination-bullet-active {
	background: var(--accent_color) !important;
	opacity: 1 !important;
}

/* ── スクロールバー ────────────────────────────────────────────── */

.wp-block-create-block-custom-swiper .swiper-scrollbar {
	margin-top: 20px;
	position: relative;
	bottom: auto;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.wp-block-create-block-custom-swiper .swiper-scrollbar-drag {
	background: #333;
	border-radius: 4px;
}

/* ── ナビゲーションボタン ──────────────────────────────────────── */

.wp-block-create-block-custom-swiper .swiper-button-prev,
.wp-block-create-block-custom-swiper .swiper-button-next {
	display: none;
}

@media (min-width: 1024px) {
	.wp-block-create-block-custom-swiper .swiper-button-prev,
	.wp-block-create-block-custom-swiper .swiper-button-next {
		display: flex;
	}
}

@media (max-width: 1023px) {
	.wp-block-create-block-custom-swiper .swiper-button-prev,
	.wp-block-create-block-custom-swiper .swiper-button-next {
		display: none !important;
	}
}

.wp-block-create-block-custom-swiper .swiper-button-prev::after,
.wp-block-create-block-custom-swiper .swiper-button-next::after {
	display: none;
}

/* SVG パス: assets/css/blocks/ → ../../image/ */
.wp-block-create-block-custom-swiper .swiper-button-prev {
	width: 32px;
	height: 32px;
	background: url(../../image/swiper-prev.svg) center center / contain no-repeat;
	filter: none;
}

.wp-block-create-block-custom-swiper .swiper-button-next {
	width: 32px;
	height: 32px;
	background: url(../../image/swiper-next.svg) center center / contain no-repeat;
	filter: none;
}

/* ── サムネイル ────────────────────────────────────────────────── */

.swiper-thumbs {
	margin-top: 16px;
}

@media (min-width: 768px) {
	.swiper-thumbs {
		margin-top: 32px;
	}
}

.wp-block-create-block-custom-swiper .swiper-thumbs .swiper-slide {
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.wp-block-create-block-custom-swiper .swiper-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.wp-block-create-block-custom-swiper .swiper-thumb-image {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 6px;
	display: block;
	transition: transform 0.3s ease;
}

.wp-block-create-block-custom-swiper .swiper-thumbs .swiper-slide:hover .swiper-thumb-image {
	transform: scale(1.05);
}
