/* =========================================================
   ギャラリー帯（ヒーロー直下の写真カルーセル）
   Figma node 113:3556。縦長カード177×280 / 間隔40px / 左右チラ見え。
   Swiper.js を使用。実写真は後で gallery CPT から差し替え予定（現状は静的ダミー）。
   ========================================================= */

.gallery-band {
	width: 100%;
	padding: 40px 0 48px;
	background: var(--bg-hero); /* ヒーローと地続きの背景 */
	overflow: hidden;
}

/* Swiperコンテナ。左右に partial カードを見せるため幅は100% */
.gallery-band__swiper {
	width: 100%;
	padding-bottom: 32px; /* ドットの居場所 */
}

/* slidesPerView:'auto' 用に各スライド幅を固定（縦長カード） */
.gallery-band__swiper .swiper-slide {
	width: 177px;
	height: auto;
}

/* 縦長カード */
.gallery-band__card {
	display: block;
	width: 177px;
	height: 280px;
	margin: 0;
	overflow: hidden;
	border-radius: 0; /* カードは角丸なし（直角） */
	background: var(--bg-tan);
	box-shadow: var(--shadow-photo);
}

.gallery-band__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- ドットページネーション --- */
.gallery-band__swiper .swiper-pagination {
	bottom: 0;
}

.gallery-band__swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--color-border-card); /* 非アクティブ：くすみトープ */
	opacity: 1;
	transition: background 0.2s ease;
}

.gallery-band__swiper .swiper-pagination-bullet-active {
	background: var(--color-subhead); /* アクティブ：#a3937c */
}

/* =========================================================
   スマホ（≤599px）：上余白を詰める。タブレット/PCは不変。
   ========================================================= */
@media (max-width: 599px) {
	.gallery-band {
		padding-top: 0;
	}
}
