@charset "utf-8";

/* =========================================================
   Food Marche Renewal - common
   （autumn/common.css をベースに food_marche 用へ調整）
   ========================================================= */

:root {
	--fm-red: #E94830;        /* KVの朱赤 / primary */
	--fm-red-deep: #D53B24;
	--fm-orange: #DC5525;
	--fm-blue: #2893CF;       /* awning blue */
	--fm-blue-light: #80CDE3;
	--fm-teal: #2E9FC4;
	--fm-yellow: #F2C230;
	--fm-cream: #F7F2EA;
	--fm-slate: #404d66;
	--fm-ink: #333;
}

body #allWrap {
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	font-weight: 500;
	font-style: normal;
	color: var(--fm-ink);
}

/* PC / SP 出し分け */
#allWrap .pc { display: block; }
#allWrap .sp { display: none; }
@media screen and (max-width: 768px) {
	#allWrap .pc { display: none; }
	#allWrap .sp { display: block; }
}

#allWrap ol,
#allWrap ul { list-style: none; }
#allWrap table {
	border-collapse: collapse;
	border-spacing: 0;
}
#allWrap a:hover {
	opacity: 0.7;
	text-decoration: none;
}
#allWrap img { max-width: 100%; height: auto; }

#allWrap .inner {
	margin: 0 auto;
	max-width: 1000px;
	width: auto;
	position: static;
}
@media screen and (max-width: 768px) {
	#allWrap .inner { padding: 0 4%; }
}

.food_marche .wrap {
	display: flex;
	flex-wrap: wrap;
}
.food_marche a { color: var(--fm-ink); text-decoration: none; }
.food_marche a:hover { text-decoration: none; }
.food_marche p,
.food_marche ul,
.food_marche dl { margin-top: 0; margin-bottom: 0; }
.food_marche ul,
.food_marche ol { padding-left: 0; }
.food_marche h2 { margin-bottom: 0; }
.food_marche button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	color: inherit;
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	cursor: pointer;
}

/* =========================================================
   アンカーナビ（sticky）
   ========================================================= */
#allWrap .navi {
	background-color: #fff;
	z-index: 99;
	position: sticky;
	top: 6.7rem; /* 共通ヘッダー（fixed 6.7rem）の下に貼り付ける */
}
@media screen and (max-width: 768px) {
	#allWrap .navi { top: 0; }
}
#allWrap .navi ul {
	margin: 0 auto;
	max-width: 1180px;
	padding: 1.8rem clamp(10px, 2vw, 30px);
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: clamp(6px, 1vw, 12px);
}
#allWrap .navi ul li {
	flex: 1 1 0;
	min-width: 0;
	max-width: 26rem;
	display: flex;
}
#allWrap .navi ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 0.4rem;
	width: 100%;
	box-sizing: border-box;
	padding: 1.1rem 0.8rem;
	color: var(--fm-red);
	background-color: #fff;
	border: 2px solid var(--fm-red);
	border-radius: 10rem;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.15rem, 1.15vw, 1.6rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
#allWrap .navi ul li a:hover { text-decoration: none; }
#allWrap .navi ul li .navi_subtitle {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--fm-red);
}
#allWrap .navi ul li a:hover,
#allWrap .navi ul li.cur a {
	opacity: 1;
	color: #fff;
	background-color: var(--fm-red);
}
#allWrap .navi ul li a:hover .navi_subtitle,
#allWrap .navi ul li.cur a .navi_subtitle {
	color: #fff;
}
/* TOP（現在地）もホバーで色反転 */
#allWrap .navi ul li.cur a:hover {
	color: var(--fm-red);
	background-color: #fff;
}
#allWrap .navi ul li.cur a:hover .navi_subtitle {
	color: var(--fm-red);
}
#allWrap .navi ul li a { transition: background-color .2s ease, color .2s ease; }
/* 一時的にComing Soon（クリック不可・グレー） */
#allWrap .navi ul li.is-soon a,
#allWrap .navi ul li.is-soon a:hover {
	color: #8c8c8c;
	background-color: #f0f0f0;
	border-color: #cfcfcf;
	pointer-events: none;
	cursor: default;
}
#allWrap .navi ul li.is-soon a .navi_subtitle,
#allWrap .navi ul li.is-soon a:hover .navi_subtitle { color: #8c8c8c; }
@media screen and (max-width: 768px) {
	#allWrap .navi ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		padding: 1.4rem 3%;
		max-width: none;
	}
	#allWrap .navi ul li {
		flex: 0 0 calc(50% - 5px);
		width: auto;
		max-width: none;
		display: flex;
	}
	#allWrap .navi ul li a {
		width: 100%;
		padding: 0.9rem 0.4rem;
		font-size: 1.15rem;
		letter-spacing: 0;
		white-space: nowrap;
	}
	#allWrap .navi ul li .navi_subtitle { font-size: 1rem; }
}

/* =========================================================
   共通見出し（英字チップ + 和文 + 波線）
   ========================================================= */
.food_marche .fm-heading {
	text-align: center;
	margin-bottom: 8rem;
}
.food_marche .fm-heading .en {
	display: table;
	margin: 0 auto 1.4rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 0.08em;
	color: #fff;
	background: var(--fm-red);
	padding: 0.5rem 1.6rem;
	border-radius: 10rem;
}
.food_marche .fm-heading .jp {
	display: table;
	margin: 0 auto;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	font-size: 3.6rem;
	line-height: 1.4;
	color: var(--fm-red);
	padding-bottom: 1.3rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cpath d='M0 5 Q5.5 1 11 5 T22 5' fill='none' stroke='%23E94830' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: 22px 8px;
}
/* 白バリエーション（館内MAP＝赤背景） */
.food_marche .fm-heading--white .en {
	color: var(--fm-red);
	background: #fff;
}
.food_marche .fm-heading--white .jp {
	color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cpath d='M0 5 Q5.5 1 11 5 T22 5' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
	.food_marche .fm-heading { margin-bottom: 3.2rem; }
	.food_marche .fm-heading .en { font-size: 1.2rem; }
	.food_marche .fm-heading .jp { font-size: 2.3rem; }
}

/* =========================================================
   btnMore
   ========================================================= */
.food_marche .btnMore {
	margin: 3rem auto 0;
	display: flex;
	justify-content: center;
}
.food_marche .btnMore a,
.food_marche .btnMore span {
	display: flex;
	align-items: center;
	flex: none;
	padding: 1.4rem 4.5rem;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.6;
	color: #fff;
	background-color: var(--fm-red);
	border-radius: 10rem;
	text-align: center;
}
.food_marche .btnMore a::after {
	display: block;
	content: '';
	width: 0.9rem;
	height: 0.9rem;
	margin-left: 1rem;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

/* =========================================================
   SNS エリア
   ========================================================= */
.food_marche .area_sns {
	margin: 0;
	max-width: none;
	background: #fff;
	padding: 7rem 0 0;
	text-align: center;
}
.food_marche .area_sns .instagram {
	margin: 0 auto;
	width: 71.2rem;
	max-width: 92%;
	position: relative;
}
.food_marche .area_sns .instagram a {
	display: flex;
	align-items: center;
	padding: 2.6rem 4rem;
	font-size: 1.6rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(90deg, #C52C37 0%, #5F1777 100%);
	border-radius: 1rem;
	box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.20);
	position: relative;
}
.food_marche .area_sns .instagram a::after {
	display: block;
	content: '';
	width: 2.2rem;
	height: 2.2rem;
	border-right: solid 0.4rem #fff;
	border-bottom: solid 0.4rem #fff;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 1.1rem);
	right: 4.5rem;
}
.food_marche .area_sns .instagram .icon {
	margin-right: 2rem;
	width: 6rem;
}
.food_marche .area_sns .instagram .txt {
	font-size: 2.4rem;
	text-align: left;
}
.food_marche .area_sns .instagram .txt span {
	display: block;
	margin-bottom: 1rem;
}
.food_marche .area_sns .others {
	margin: 3.5rem auto 7rem;
}
.food_marche .area_sns .others p {
	display: inline-block;
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 3rem;
	padding: 1rem 2rem;
	color: #fff;
	background: var(--fm-red);
	border-radius: 50px;
}
.food_marche .area_sns .others p::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top: 10px solid var(--fm-red);
}
.food_marche .area_sns .others ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.food_marche .area_sns .others ul li {
	padding: 0 1rem;
	width: 5rem;
	box-sizing: content-box;
}
.food_marche .area_sns .others ul li:nth-child(2) { width: 4rem; }
@media screen and (max-width: 768px) {
	.food_marche .area_sns { margin: 0; max-width: 100%; padding-top: 5rem; }
	.food_marche .area_sns .instagram a {
		padding: 1.4rem 3.3rem 1.8rem 2rem;
		font-size: 1.2rem;
	}
	.food_marche .area_sns .instagram .icon { margin-right: 1.6rem; width: 14%; }
	.food_marche .area_sns .instagram .txt { font-size: 1.4rem; line-height: 2rem; }
	.food_marche .area_sns .instagram .txt span { margin-bottom: 0; }
	.food_marche .area_sns .others { margin: 3rem auto 5rem; }
	.food_marche .area_sns .others p {
		font-size: 1.4rem;
		margin-bottom: 2rem;
		padding: 0.6rem 1rem;
	}
	.food_marche .area_sns .others ul li { width: 4rem; }
	.food_marche .area_sns .others ul li:nth-child(2) { width: 3rem; }
}

/* =========================================================
   ページトップ
   ========================================================= */
#gototop {
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	z-index: 90;
	width: 5rem;
}
#gototop a { display: block; position: relative; line-height: 0; }
#gototop a img { width: 100%; height: auto; display: block; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18)); }
@media screen and (max-width: 768px) {
	#gototop { right: 1.2rem; bottom: 8.5rem; width: 5rem; }
}

/* =========================================================
   モーダル（MicroModal）
   ========================================================= */
[v-cloak] { display: none; }
@keyframes mmfadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mmfadeOut { from { opacity: 1; } to { opacity: 0; } }
.food_marche .micromodalSlide { display: none; }
.food_marche .micromodalSlide.is-open { display: block; }
.food_marche .micromodalSlide[aria-hidden="false"] .modalOverlay { animation: mmfadeIn .4s cubic-bezier(0,0,0.2,1); }
.food_marche .micromodalSlide[aria-hidden="true"] .modalOverlay { animation: mmfadeOut .4s cubic-bezier(0,0,0.2,1); }
.food_marche .modalOverlay {
	position: fixed;
	inset: 0;
	background: rgba(71, 24, 15, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
.food_marche .modalContainer {
	padding: 0;
	background: #fff;
	border-radius: 2rem;
	width: 100rem;
	max-width: 90%;
	position: relative;
}
.food_marche .modalDocument {
	padding: 4.5rem 5rem 3.5rem;
	max-height: calc(100vh - 5rem);
	overflow-y: auto;
	scrollbar-width: none;
}
.food_marche .modalHeaderHidden {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* 閉じるボタン（Figma準拠：モーダル内側の右上・赤丸） PC:40×40 上右15px */
.food_marche .modalClose {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--fm-red);
	border: none;
	cursor: pointer;
	z-index: 10;
}
.food_marche .modalClose:focus,
.food_marche .modalClose:focus-visible { outline: none; }
.food_marche .modalClose::after,
.food_marche .modalClose::before {
	content: "";
	position: absolute;
	width: 0.2rem;
	height: 1.9rem;
	top: 50%;
	left: 50%;
	background: #fff;
}
.food_marche .modalClose::before { transform: translate(-50%, -50%) rotate(45deg); }
.food_marche .modalClose::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* モーダル詳細（Figma準拠：左=詳細／右=画像） */
.food_marche .modalDocument .wrap {
	display: flex;
	gap: 0 5%;
	align-items: flex-start;
}
.food_marche .modalDetail { width: 48%; }
.food_marche .modalPic { width: 47%; }
#allWrap .modalPic img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1rem; display: block; }
.food_marche .modalItemName {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: var(--fm-red);
	padding-bottom: 1.2rem;
	border-bottom: 2px solid var(--fm-red);
	margin: 0 0 2rem;
}
.food_marche .modalPrice { font-size: 1.4rem; font-weight: 700; margin: 0 0 1.4rem; }
.food_marche .modalPrice span { font-size: 2.6rem; }
.food_marche .modalIcons { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 1.8rem; }
.food_marche .modalIcons li {
	font-size: 1.2rem;
	color: var(--fm-red);
	border: 1px solid var(--fm-red);
	border-radius: 10rem;
	padding: 0.3rem 1.1rem;
	line-height: 1.4;
}
.food_marche .modalTxt {
	font-size: 1.4rem;
	line-height: 1.9;
	padding-bottom: 1.6rem;
	border-bottom: 1px dashed #d3ccbf;
	margin: 0 0 1.6rem;
}
.food_marche .modalCopy { font-size: 1.4rem; line-height: 1.9; margin: 0 0 2.4rem; }
.food_marche .modalShop { background: #eeeeee; border-radius: 1rem; padding: 2rem; }
.food_marche .modalShopName { font-weight: 700; font-size: 1.6rem; margin: 0 0 1.2rem; }
.food_marche .modalShopWrap { display: flex; gap: 0 2.5rem; margin: 0 0 1.6rem; font-size: 1.4rem; }
.food_marche .moadlPlace,
.food_marche .modalTel { position: relative; padding-left: 2.2rem; }
.food_marche .moadlPlace::before,
.food_marche .modalTel::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.6rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.food_marche .moadlPlace::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16'%3E%3Cpath d='M6 0C2.7 0 0 2.7 0 6c0 4 6 10 6 10s6-6 6-10c0-3.3-2.7-6-6-6zm0 8.4A2.4 2.4 0 116 3.6a2.4 2.4 0 010 4.8z' fill='%23E94830'/%3E%3C/svg%3E");
}
.food_marche .modalTel::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11 10.2l-1.6 1.6c-1.9-1-3.4-2.5-4.4-4.4L6.6 5.8 4.9 1.3 1 1.6C1 9 7 15 14.4 15l.3-3.9-4.5-1.7z' fill='%23E94830'/%3E%3C/svg%3E");
}
.food_marche .modalInfoBtn a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: var(--fm-red);
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 1.1rem;
	border-radius: 10rem;
	text-decoration: none;
}
.food_marche .modalInfoBtn a::after {
	content: '';
	width: 0.8rem;
	height: 0.8rem;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
	.food_marche .modalContainer { border-radius: 1.5rem; }
	/* SPはパネルを小さめにして中身をスクロール。上下に暗い背景を残し、
	   下は固定フッターメニュー分の余白を確保して重ならないようにする */
	.food_marche .modalOverlay { align-items: center; padding: 5rem 0 11rem; }
	.food_marche .modalDocument { padding: 4.5rem 2.4rem 4rem; max-height: calc(100vh - 16rem); }
	.food_marche .modalClose { top: 1.2rem; right: 1.6rem; width: 3rem; height: 3rem; }
	.food_marche .modalClose::after,
	.food_marche .modalClose::before { height: 1.4rem; }
	.food_marche .modalDocument .wrap { flex-direction: column-reverse; gap: 2rem 0; }
	.food_marche .modalDetail, .food_marche .modalPic { width: 100%; }
	.food_marche .modalItemName { font-size: 1.8rem; }
	.food_marche .modalPrice span { font-size: 2.2rem; }
}
