@charset "utf-8";

/* =========================================================
   Food Marche Renewal - index (TOP LP)
   Figmaデザイン準拠
   ========================================================= */

/* スクロールでふわっと表示（fade-up）。クラスはJSで付与するため、
   JS未実行時は付かず＝常に表示。※reduce-motion設定に関わらず常時アニメ。 */
.food_marche .fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s cubic-bezier(.16, .6, .3, 1), transform .8s cubic-bezier(.16, .6, .3, 1);
	will-change: opacity, transform;
}
.food_marche .fade-up.is-visible {
	opacity: 1;
	transform: none;
}

/* 実サイト（bootstrap）と同じ border-box を名前空間内で担保
   ※ width:100% + padding のボタン等がカードからはみ出て見切れるのを防ぐ */
.food_marche *,
.food_marche *::before,
.food_marche *::after { box-sizing: border-box; }

.food_marche {
	background-color: var(--fm-cream);
}

/* =========================================================
   KV ＋ 挨拶文
   ========================================================= */
/* PCは共通ヘッダー（fixed）の下に白い余白を確保してKVを開始（背景クリームは維持し、余白部分だけ白） */
@media screen and (min-width: 769px) {
	#allWrap.food_marche { padding-top: 3rem; position: relative; }
	#allWrap.food_marche::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3rem;
		background-color: #fff;
		z-index: 1;
	}
}
.food_marche .mv { position: relative; line-height: 0; }
.food_marche .mv h1 { margin: 0; line-height: 0; }
.food_marche .mv h1 img { width: 100%; display: block; }

.food_marche .mv_greeting {
	background-color: var(--fm-red);
	color: #fff;
	text-align: center;
	padding: 8rem 0 10rem;
	line-height: normal;
	position: relative;
	overflow: hidden;
}
.food_marche .mv_greeting .inner { position: relative; z-index: 1; }
.food_marche .greet-asr {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1920px;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.food_marche .greet-asr .gi { position: absolute; display: block; max-width: none; }
@media screen and (max-width: 768px) {
	.food_marche .greet-asr { display: none; }
}
/* SP専用 KV挨拶あしらい（カトラリー＋キラキラ） */
.food_marche .greet-asr-sp { display: none; }
@media screen and (max-width: 768px) {
	.food_marche .greet-asr-sp {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
	}
	.food_marche .greet-asr-sp .gi-sp { position: absolute; display: block; max-width: none; }
	.food_marche .greet-asr-sp .gp {
		position: absolute;
		display: block;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2 h4 v8 h8 v4 h-8 v8 h-4 v-8 h-8 v-4 h8 z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/contain;
	}
}
.food_marche .mv_greeting .txt {
	font-size: 2.4rem;
	line-height: 1.7;
	font-weight: 500;
}
/* 挨拶帯の小装飾（ドット・キラキラ） */
.food_marche .greet-asr .gd,
.food_marche .greet-asr .gs,
.food_marche .greet-asr-sp .gs {
	position: absolute;
	display: block;
}
.food_marche .greet-asr .gd { width: 10px; height: 10px; border-radius: 50%; background: #fff; }
.food_marche .greet-asr .gs,
.food_marche .greet-asr-sp .gs {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 L14.5 9.5 L24 12 L14.5 14.5 L12 24 L9.5 14.5 L0 12 L9.5 9.5 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/contain;
}
.food_marche .mv_greeting .txt .spbr { display: none; }
.food_marche .greet-asr .gs-y,
.food_marche .greet-asr-sp .gs-y {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 L14.5 9.5 L24 12 L14.5 14.5 L12 24 L9.5 14.5 L0 12 L9.5 9.5 Z' fill='%23F7D64B'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
	.food_marche .mv_greeting { padding: 4.2rem 0; }
	.food_marche .mv_greeting .txt { font-size: 1.25rem; line-height: 2; }
	.food_marche .mv_greeting .txt .spbr { display: inline; }
}

/* =========================================================
   セクション共通（フルブリード背景 + 中央inner）
   ========================================================= */
.food_marche .sec { position: relative; overflow: hidden; }
/* コンテンツ幅はFigma準拠（新店/MAP=1200px）。あしらいは外側マージン */
#allWrap .sec > .inner { position: relative; z-index: 2; width: 1200px; max-width: calc(100% - 40px); }
#allWrap .sec-fair > .inner { width: 1240px; }
/* SPは左右余白を詰める（PCの40px二重インセットを解除し、.inner の padding 4% のみ＝片側約16px） */
@media screen and (max-width: 768px) {
	#allWrap.food_marche .sec > .inner,
	#allWrap.food_marche .sec-fair > .inner { max-width: 100%; }
}

/* 人物あしらい（背景）：Figma 1920幅を中央基準のステージにし、各パーツをFigma座標で配置。
   コンテンツ(1200/1240)は中央寄せなので、あしらいは常に外側マージンに留まりカードに被らない。 */
.food_marche .ashirai {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1920px;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
/* 全幅モード：セクション幅いっぱいに広げ、左右端基準で配置（画面幅で切れない） */
/* PCあしらいはコンテンツ幅基準で中央固定（画面幅で左右に広がらない）。
   幅=コンテンツ1200px＋左右あしらい用マージン。左右端基準はSP(.ashirai-sp)のみ。 */
.food_marche .ashirai.ashirai-fw {
	left: 50%;
	transform: translateX(-50%);
	width: 1400px;
	/* 画面幅で位置が動かないよう枠を1400px固定（max-widthで縮めない）。
	   狭い画面では左右端が画面外に出るが、コンテンツに対する位置は一定に保たれる。 */
}
.food_marche .asr {
	position: absolute;
	display: block;
	max-width: none;
}
/* 紙吹雪あしらい（フチ付き図形／透過） */
.food_marche .cf {
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.food_marche .cf-cir-r { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23E8493A' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
.food_marche .cf-cir-y { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23F5C43B' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
.food_marche .cf-cir-b { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%2385CDE3' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
.food_marche .cf-tri-y { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 L21.5 20 L2.5 20 Z' fill='%23F5C43B' stroke='%23231815' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.food_marche .cf-tri-r { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 L21.5 20 L2.5 20 Z' fill='%23E8493A' stroke='%23231815' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.food_marche .cf-tri-p { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 L21.5 20 L2.5 20 Z' fill='%23F3B0BE' stroke='%23231815' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.food_marche .cf-sq-b  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='2.5' fill='%2385CDE3' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
.food_marche .cf-sq-p  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='2.5' fill='%23F3B0BE' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
.food_marche .cf-sq-r  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='2.5' fill='%23E8493A' stroke='%23231815' stroke-width='2'/%3E%3C/svg%3E"); }
@media screen and (max-width: 768px) {
	.food_marche .ashirai { display: none; }
}
/* SP専用あしらい（PCは非表示、SPで各セクション左右端に配置） */
.food_marche .ashirai-sp { display: none; }
@media screen and (max-width: 768px) {
	.food_marche .ashirai-sp {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
		overflow: hidden;
	}
	.food_marche .asr-sp { position: absolute; display: block; max-width: none; }
}
/* 日付仕切りに紐づくあしらい（カード増減でも仕切りと一緒に動く） */
.food_marche .shop_dateline { position: relative; }
.food_marche .dl-asr,
.food_marche .dl-asr-pc { display: none; }
@media screen and (max-width: 768px) {
	.food_marche .dl-asr {
		display: block;
		position: absolute;
		max-width: none;
		z-index: 0;
		pointer-events: none;
	}
}
@media screen and (min-width: 769px) {
	.food_marche .dl-asr-pc {
		display: block;
		position: absolute;
		max-width: none;
		z-index: 0;
		pointer-events: none;
	}
}
.food_marche .sec-shop    { padding: 12rem 0; }
.food_marche .sec-map     { padding: 10rem 0 18rem; }
.food_marche .sec-fair    { padding: 12rem 0; }
.food_marche .sec-outdoor { padding: 12rem 0 8rem; }
@media screen and (max-width: 768px) {
	.food_marche .sec-shop    { padding: 6rem 0 11rem; }
	.food_marche .sec-map     { padding: 5rem 0 7rem; }
	.food_marche .sec-fair    { padding: 6rem 0; }
	.food_marche .sec-outdoor { padding: 6rem 0 15rem; }
}

/* =========================================================
   新店・リニューアル店舗情報
   ========================================================= */
.food_marche .sec-map .fm-heading { margin-bottom: 4rem; }

.food_marche .shop_group { margin-top: 10rem; }
.food_marche .shop_group:first-of-type { margin-top: 0; }

/* 日付ピル（白地・赤ボーダー） */
.food_marche .shop_dateline {
	position: relative;
	text-align: center;
	margin-bottom: 2rem;
}
.food_marche .shop_date {
	display: inline-block;
	width: 250px;
	box-sizing: border-box;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: var(--fm-red);
	background: #fff;
	border: 2px solid var(--fm-red);
	border-radius: 10rem;
	padding: 0.7rem 1rem;
	line-height: 1;
}
.food_marche .shop_date_note {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 14rem;
	white-space: nowrap;
	font-size: 1.3rem;
	color: #666;
}

/* カード 3カラム */
.food_marche .shop_list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
}
.food_marche .shop_card {
	width: calc((100% - 48px) / 3);
	background: #fff;
	border-radius: 1.4rem;
	overflow: hidden;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}
.food_marche .shop_thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #d9d9d9;
}
#allWrap .shop_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.food_marche .badge {
	position: absolute;
	left: 1.4rem;
	bottom: 1.2rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	border-radius: 0.5rem;
	padding: 0.4rem 1.1rem;
	line-height: 1;
}
.food_marche .badge.new     { background: var(--fm-red); }
.food_marche .badge.renewal { background: var(--fm-blue); }

.food_marche .shop_body { padding: 1.6rem; }
.food_marche .shop_name {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.25;
	color: var(--fm-ink);
	margin-top: 0;
	margin-bottom: 0.8rem;
}
.food_marche .shop_place {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.2;
	color: #888;
	margin-bottom: 0.8rem;
}
.food_marche .shop_btn a,
.food_marche .shop_btn span {
	display: block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 1.1rem;
	border-radius: 10rem;
	color: #fff;
	background: var(--fm-red);
}
.food_marche .shop_btn.is-soon span {
	color: #8c8c8c;
	background: #e0e0e0;
}

@media screen and (max-width: 768px) {
	/* 2カラム化に合わせカード内を調整（店名は1行に収める） */
	.food_marche .shop_body { padding: 1.2rem; }
	.food_marche .shop_name { font-size: 1.5rem; margin-bottom: 0.6rem; }
	.food_marche .shop_place { font-size: 1.2rem; }
	.food_marche .shop_btn a,
	.food_marche .shop_btn span { font-size: 1.3rem; padding: 0.9rem; }
	.food_marche .badge { left: 1rem; bottom: 1rem; font-size: 1.1rem; padding: 0.35rem 0.9rem; }
	.food_marche .shop_dateline { margin-bottom: 2rem; }
	/* SPは文字数に合わせて横幅を可変に（固定幅だとあしらいと被るため） */
	.food_marche .shop_date { width: auto; font-size: 1.6rem; }
	.food_marche .shop_date_note {
		position: static;
		display: block;
		transform: none;
		margin: 0.6rem 0 0;
		text-align: center;
	}
	/* SPは2カラム（Figma準拠） */
	.food_marche .shop_list { gap: 1.2rem; }
	.food_marche .shop_card { width: calc((100% - 1.2rem) / 2); }
	/* SPのサムネ比率（Figma準拠）：ショップ=3:2 */
	.food_marche .shop_thumb { aspect-ratio: 3 / 2; }
}

/* =========================================================
   館内MAP（赤グリッド背景・白見出し）
   ========================================================= */
.food_marche .sec-map {
	background-color: var(--fm-red);
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
	background-size: 42px 42px;
}
.food_marche .map_body { text-align: center; }
.food_marche .map_body .map_stage { position: relative; max-width: 1200px; margin: 0 auto; }
.food_marche .map_body .map_base { width: 100%; display: block; }
.food_marche .map_body .sp { width: 100%; max-width: 1200px; }
/* MAPピン（リンクボタン＋ホバーアニメ） */
.food_marche .map-pin {
	position: absolute;
	display: block;
	transform-origin: center bottom;
	transition: transform .25s cubic-bezier(.34, 1.6, .5, 1), filter .25s ease;
	will-change: transform;
	z-index: 2;
}
.food_marche .map-pin img { width: 100%; display: block; }
.food_marche .map-pin:hover {
	transform: translateY(-6px) scale(1.1);
	opacity: 1;
	filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .25));
}
/* SP：焼き込みマップ上の透過クリック領域 */
.food_marche .map_body .map_stage_sp { position: relative; max-width: 1200px; margin: 0 auto; }
.food_marche .map-pin-sp {
	position: absolute;
	display: block;
	border-radius: 50%;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease;
}
.food_marche .map-pin-sp:hover {
	transform: scale(1.25);
	background-color: rgba(255, 255, 255, .3);
	opacity: 1;
}
/* SPのMAPは .inner の左右余白（16px）のみ（二重マージンにしない） */
@media screen and (max-width: 768px) {
	.food_marche .map_body .map_stage_sp {
		width: calc(100% + 5.2%);
		margin: 0 -2.6%;
		max-width: none;
	}
}
/* あしらいは常に背景（見出し・日付ピルの下にもぐらせる） */
.food_marche .fm-heading { position: relative; z-index: 3; }
.food_marche .shop_dateline .shop_date { position: relative; z-index: 3; }
.food_marche .shop_dateline .shop_date_note { z-index: 3; }
/* SP：新店カードの左右マージンを狭める（青丸） */
@media screen and (max-width: 768px) {
	#allWrap.food_marche .sec-shop > .inner { padding-left: 2.2%; padding-right: 2.2%; }
}

/* =========================================================
   オープンフェア / 記念限定商品（ドット背景・青リボン・スライダー）
   ========================================================= */
.food_marche .sec-fair {
	background-color: var(--fm-cream);
	background-image: radial-gradient(rgba(255, 255, 255, 0.85) 2px, transparent 2px);
	background-size: 24px 24px;
}
/* 青リボン見出し（Figma書き出し画像） */
.food_marche .fm-ribbon {
	text-align: center;
	margin: 0 auto 4rem;
	line-height: 0;
}
#allWrap .fm-ribbon img {
	display: inline-block;
	height: 7.2rem;
	width: auto;
	max-width: none;
}
.food_marche .fm-block + .fm-block { margin-top: 8rem; }

/* スライダー */
.food_marche .fm-slider {
	position: relative;
	padding: 0 5rem;
}
/* PCは4枚きっちり表示（1100px = 263px×4 + 16px×3）／矢印は外側の余白に配置 */
.food_marche .fm-slider .swiper { padding-bottom: 3.5rem; max-width: 1100px; margin: 0 auto; }
.food_marche .fm-slider .swiper-slide { height: auto; }
@media screen and (max-width: 768px) {
	.food_marche .fm-slider .swiper { max-width: none; }
	/* SPは内側paddingを打ち消して全幅化＝左右のカードが覗く（中央寄せと併用） */
	.food_marche .sec-fair .fm-slider {
		width: 100vw;
		margin-left: 50%;
		transform: translateX(-50%);
		padding: 0;
	}
	.food_marche .fm-slider .swiper-slide { width: 80vw; }
}

/* フェアカード / 商品カード 共通 */
.food_marche .fair_card,
.food_marche .item_card {
	background: #fff;
	border-radius: 1.6rem;
	overflow: hidden;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
	height: 100%;
}
.food_marche .fair_thumb,
.food_marche .item_thumb { background: #d9d9d9; }
.food_marche .fair_thumb { aspect-ratio: 263 / 175; }
.food_marche .item_thumb { aspect-ratio: 263 / 190; }
#allWrap .fair_thumb img,
#allWrap .item_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.food_marche .fair_body,
.food_marche .item_body { padding: 1.4rem 1.6rem 1.6rem; }

.food_marche .fair_name,
.food_marche .item_name {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 0;
}
.food_marche .fair_name { font-size: 2.2rem; margin-bottom: 1.4rem; }
.food_marche .item_name { font-size: 1.8rem; margin-bottom: 1rem; }
.food_marche .fair_period {
	font-size: 1.4rem;
	font-weight: 500;
	color: #666;
	margin-bottom: 1.4rem;
}

/* 商品タグ（赤枠ピル） */
.food_marche .item_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.food_marche .item_tags li {
	font-size: 1rem;
	font-weight: 700;
	color: var(--fm-red);
	border: 1px solid var(--fm-red);
	border-radius: 10rem;
	padding: 0.25rem 0.9rem;
	line-height: 1;
}
.food_marche .item_price {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--fm-ink);
	margin-bottom: 0.8rem;
}
.food_marche .item_shop {
	font-size: 1.2rem;
	font-weight: 500;
	color: #888;
	margin-bottom: 1.3rem;
}

.food_marche .fair_btn a,
.food_marche .item_btn a,
.food_marche .item_btn button {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 1.1rem;
	border-radius: 10rem;
	color: #fff;
	background: var(--fm-red);
	cursor: pointer;
	transition: opacity .3s ease;
}
/* フェア・記念限定：スライダー非表示中のComing Soon表示。
   元のスライダーと同じ高さを確保して、背景あしらい・全体バランスを維持
   （スライダー復活時は .fm-coming ごと削除でOK） */
/* .fm-coming = あしらい維持用の領域（元スライダー高さ／透明）。
   .fm-coming__box = その中の白ボックス（縦幅は控えめに・中央配置） */
.food_marche .fm-coming {
	display: flex;
	align-items: center;
	justify-content: center;
}
.food_marche .fm-coming--fair { min-height: 349px; }
.food_marche .fm-coming--item { min-height: 405px; }
.food_marche .fm-coming__box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	min-height: 280px;
	box-sizing: border-box;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--fm-red);
	background: #fff;
	border-radius: 1.6rem;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
	/* SPは高さを抑える（スライダー高さより低くてOK。記念限定側あしらいも上へ詰め済み） */
	.food_marche .fm-coming--fair { min-height: 240px; }
	.food_marche .fm-coming--item { min-height: 240px; }
	/* SPは白ボックスを領域いっぱいに広げ、周囲の余白（ドット地）をなくす */
	.food_marche .fm-coming { align-items: stretch; }
	.food_marche .fm-coming__box { min-height: 0; max-width: none; }
}
.food_marche .fair_btn a:hover,
.food_marche .item_btn a:hover,
.food_marche .item_btn button:hover { opacity: .8; }
/* 商品詳細（モーダルボタン）のクリック時の黒いフォーカス枠を消す（キーボード操作時のみ表示） */
.food_marche .item_btn button { border: none; -webkit-appearance: none; appearance: none; }
.food_marche .fair_btn a:focus,
.food_marche .item_btn a:focus,
.food_marche .item_btn button:focus { outline: none; }
.food_marche .fair_btn a:focus-visible,
.food_marche .item_btn a:focus-visible,
.food_marche .item_btn button:focus-visible { outline: 3px solid rgba(0,0,0,.4); outline-offset: 2px; }

/* Swiper ナビ / ページネーション */
.food_marche .fm-slider .swiper-button-prev,
.food_marche .fm-slider .swiper-button-next {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 50%;
	background: var(--fm-red);
	top: 42%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.food_marche .fm-slider .swiper-button-prev::after,
.food_marche .fm-slider .swiper-button-next::after {
	font-size: 1.3rem;
	color: #fff;
	font-weight: 700;
}
.food_marche .fm-slider .swiper-button-prev { left: 0; }
.food_marche .fm-slider .swiper-button-next { right: 0; }
.food_marche .fm-slider .swiper-pagination-bullet { background: #cbb9a6; opacity: 1; }
.food_marche .fm-slider .swiper-pagination-bullet-active { background: var(--fm-red); }

@media screen and (max-width: 768px) {
	/* リボンは高さ基準の自動幅（#allWrap img の max-width:100% を上書き）＝中央に細く配置し左右にあしらいを置ける */
	#allWrap .fm-ribbon img { height: 4.4rem; width: auto; max-width: none; }
	/* 記念限定ブロックの上に余白を広げ、リニューアルリボン上のあしらいと被らないように */
	.food_marche .fm-block + .fm-block { margin-top: 13rem; }
	/* 10/19・11月下旬 仕切りの上マージンを狭める */
	.food_marche .shop_group { margin-top: 6rem; }
	/* 10/1（見出し直後の最初のグループ）の上だけ余白を広げる */
	.food_marche .fm-heading + .shop_group { margin-top: 9rem; }
	/* リボン（オープンフェア／記念限定商品）：上マージン広げ（あしらい用）・下マージン狭め */
	.food_marche .fm-ribbon { margin-top: 8rem; margin-bottom: 2rem; }
	.food_marche .fm-slider { padding: 0 1rem; }
	.food_marche .fm-slider .swiper-button-prev,
	.food_marche .fm-slider .swiper-button-next { display: none; }
	/* SPのサムネ比率（Figma準拠）：記念限定商品=4:3（fairは3:2の263/175のまま） */
	.food_marche .item_thumb { aspect-ratio: 4 / 3; }
}

/* =========================================================
   屋外客席（背景=白）
   ========================================================= */
.food_marche .sec-outdoor { background-color: #fff; }
.food_marche .outdoor_bnr {
	max-width: 1080px;
	margin: 0 auto;
	border-radius: 1.6rem;
	overflow: hidden;
}
/* 新店エリアの横長バナー（屋外客席情報と同じ3:1比率）。画像差し込み前は一旦グレー */
.food_marche .shop_banner {
	max-width: 1080px;
	margin: 0 auto;
	border-radius: 1.6rem;
	overflow: hidden;
	background: #d9d9d9;
	aspect-ratio: 3 / 1;
}
.food_marche .shop_banner a { display: block; transition: opacity .3s ease; }
.food_marche .shop_banner a:hover { opacity: .8; }
.food_marche .shop_banner img { width: 100%; display: block; }
.food_marche .outdoor_bnr a {
	display: block;
	transition: opacity .3s ease;
}
.food_marche .outdoor_bnr a:hover { opacity: .8; }
.food_marche .outdoor_bnr img { width: 100%; display: block; }

/* =========================================================
   SNS（winterデザイン準拠・背景白）
   ========================================================= */
.food_marche .fm-sns {
	background-color: #fff;
	position: relative;
	z-index: 0;
	padding: 9rem 0 10rem;
	text-align: center;
}
.food_marche .fm-sns-inner { max-width: 1000px; margin: 0 auto; padding: 0 3%; }
.food_marche .fm-sns-bnr {
	margin: 2rem auto;
	width: 80%;
	transition: all .3s ease 0s;
}
.food_marche .fm-sns-bnr a:hover { opacity: .6; text-decoration: none; }
.food_marche .fm-sns-bnr img { width: 100%; }
.food_marche .fm-sns-share {
	margin: 8rem auto 4rem;
	width: 30%;
	max-width: 250px;
}
.food_marche .fm-sns-share img { width: 100%; }
.food_marche .fm-sns-icons {
	display: flex;
	justify-content: center;
	align-items: center;
}
.food_marche .fm-sns-icons a {
	margin: 0 2rem;
	width: 8%;
	max-width: 60px;
	transition: all .3s ease 0s;
}
.food_marche .fm-sns-icons a:hover { opacity: .6; text-decoration: none; }
.food_marche .fm-sns-icons img { width: 100%; }
@media screen and (max-width: 768px) {
	.food_marche .fm-sns { padding: 4rem 0 6rem; }
	.food_marche .fm-sns-bnr { width: 100%; }
	.food_marche .fm-sns-share { width: 60%; }
	.food_marche .fm-sns-icons a { margin: 0 1rem; width: 16%; }
}

