/**
 * Musubime — トップページ
 * デザインカンプ準拠
 */

.is-front-page,
.fp-body {
	--fp-cream: #fff9f2;
	--fp-cream-dark: #f5ede4;
	--fp-option-bg: #fff5ed;
	--fp-accent: #d85b3d;
	--fp-accent-dark: #c04f35;
	--fp-gold: #c9a86a;
	--fp-gold-light: #e8d4a8;
	--fp-text: #333333;
	--fp-text-muted: #666666;
	--fp-white: #ffffff;
	--fp-border: #e5ddd3;
	--fp-peach: #fab27a;
	--fp-peach-dark: #f5a06a;
	--fp-peach-logo: #fab27a;
	--fp-red: #7a1f2e;
	--fp-red-light: #922b3e;
	--fp-orange: #e8764b;
	--fp-container: 1320px;
	--fp-float-z-index: 480;
	--fp-font-brand: "Shippori Mincho", "Noto Serif JP", serif;
	--fp-font-script: "Zen Kurenaido", "Shippori Mincho", serif;
	--fp-font-en: "Playfair Display", "Cormorant Garamond", "Noto Serif JP", serif;
	--fp-font-ja: "Noto Sans JP", sans-serif;
	--fp-font-serif: "Noto Serif JP", serif;
	--fp-header-height: clamp(200px, 21vw, 293px);
	/* header-logo-bg.png 実寸（1418×293）内のクリーム色ナビ帯 */
	--fp-header-bg-intrinsic-h: 293;
	--fp-header-nav-band-intrinsic-top: 0;
	--fp-header-nav-band-intrinsic-h: 55;
	/* ナビ帯＋波形のみ重なる量（全高さではなくゴール準拠） */
	--fp-header-pull: clamp(88px, 10vw, 118px);
	--fp-header-pull-ratio: 0.34;
	--fp-header-nav-h: 55px;
	--fp-header-nav-bg: #fab782;
	/* 右側ナビ帯の単色（header-logo-bg.png 実寸基準） */
	--fp-header-bg-intrinsic-w: 1418;
	--fp-header-nav-bg-height: 55px;
	--fp-header-nav-bg-intrinsic-left: 280;
}

.fp-body {
	margin: 0;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.8;
	color: var(--fp-text);
	background: var(--fp-cream);
}

.fp-body.fp-body {
	padding-top: var(--fp-header-height-px, var(--fp-header-height));
	scroll-padding-top: var(--fp-header-nav-h);
}

.fp-body img {
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: cover;

}

.fp-body a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.fp-body a:hover {
	opacity: 0.85;
}

/* Container */
.fp-body .container {
	width: 100%;
	max-width: var(--fp-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Buttons */
.fp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.6rem 1.75rem;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 2px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.fp-btn--primary {
	background: var(--fp-accent);
	color: var(--fp-white) !important;
}

.fp-btn--primary:hover {
	background: var(--fp-accent-dark);
	opacity: 1;
}

.fp-section__cta {
	margin: 48px 0 0;
	text-align: center;
}

/* Section heading */
.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-heading__en {
	margin: 0 0 4px;
	font-family: var(--fp-font-en);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 600;
	font-style: normal;
	color: var(--fp-accent);
	letter-spacing: 0.02em;
}

.section-heading__ja {
	margin: 0;
	font-size: 13px;
	color: var(--fp-text-muted);
	letter-spacing: 0.15em;
}

.fp-section {
	padding: 72px 0;
}

/* ========== Header（背景: header-logo-bg.png・固定） ========== */
.fp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 500;
	margin-bottom: 0;
	pointer-events: none;
}

.fp-header__bar {
	position: relative;
	line-height: 0;
	background-color: transparent;
	overflow: visible;
	pointer-events: none;
}

/* 右側ナビ帯のみ #fab782（画像の上に55px固定で重ねる） */
.fp-header__bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: var(
		--fp-header-nav-bg-left-px,
		calc(var(--fp-header-nav-bg-intrinsic-left) / var(--fp-header-bg-intrinsic-w) * 100%)
	);
	right: 0;
	width: auto;
	height: var(--fp-header-nav-bg-height);
	min-height: var(--fp-header-nav-bg-height);
	max-height: var(--fp-header-nav-bg-height);
	background-color: var(--fp-header-nav-bg);
	z-index: 2;
	pointer-events: none;
}

.fp-header__inner,
.fp-header__brand,
.fp-header__brand a,
.fp-header__brand button,
.fp-header__reserve,
.fp-header__toggle,
.fp-header__nav {
	pointer-events: auto;
}

.fp-header__bg {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.fp-header__inner {
	position: absolute;
	top: var(
		--fp-header-nav-center-px,
		calc(
			(var(--fp-header-nav-band-intrinsic-top) + var(--fp-header-nav-band-intrinsic-h) / 2)
			/ var(--fp-header-bg-intrinsic-h) * 100%
		)
	);
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(240px, 280px) 1fr auto;
	align-items: center;
	gap: 12px 24px;
	width: 100%;
	max-width: var(--fp-container);
	height: var(
		--fp-header-nav-h-px,
		calc(var(--fp-header-nav-band-intrinsic-h) / var(--fp-header-bg-intrinsic-h) * 100%)
	);
	min-height: 0;
	padding: 0 24px;
	box-sizing: border-box;
	background-color: transparent;
}

/* ロゴ＋あしらい（波形エリア・ナビ帯より下にもはみ出す） */
.fp-header__brand {
	position: absolute;
	left: 20px;
	margin-left: calc(-1 * max(0px, (100vw - var(--fp-container)) / 2));
	top: 6px;
	z-index: 4;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	width: auto;
	max-width: min(320px, 46vw);
	height: auto;
	min-height: var(--fp-header-nav-h);
	max-height: none;
	padding: 0 0 28px;
	box-sizing: border-box;
	overflow: visible;
}

.fp-header__ornament {
	flex: 0 0 auto;
	width: clamp(62px, 5.8vw, 78px);
	max-width: 78px;
	height: auto;
	max-height: 100px;
	margin: 0 -70px 0 0;
	padding: 0;
	object-fit: contain;
	object-position: center center;
	align-self: center;
	pointer-events: none;
}

.fp-header__logo-wrap {
	flex: 0 1 auto;
	position: relative;
	z-index: 1;
	min-width: 0;
	max-width: 200px;
	top: -34px;
	overflow: visible;
}

.fp-header__logo-link {
	display: block;
	position: relative;
	z-index: 1;
	padding: 0;
	background: transparent;
	box-shadow: none;
	color: var(--fp-red);
	line-height: 1.15;
}

.fp-header__logo-link:hover {
	opacity: 1;
	color: var(--fp-red);
}

.fp-header__brand img.fp-header__ornament {
	width: clamp(187px, 5.8vw, 145px);
	max-width: 187px;
	height: auto;
	max-height: 187px;
	object-fit: contain;
}

.fp-header__logo img,
.fp-header__logo-img,
.fp-header__logo a img,
.fp-header__logo .custom-logo {
	width: auto !important;
	height: auto !important;
	max-width: 196px !important;
	max-height: 92px !important;
	margin: 0;
	display: block;
	object-fit: contain;
	object-position: left center;
}

.fp-header__logo-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 92px;
	overflow: visible;
}

.fp-header__logo-tagline {
	font-family: var(--fp-font-serif);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--fp-red-light);
	line-height: 1.35;
	white-space: nowrap;
}

.fp-header__logo-ja {
	margin-top: 2px;
	font-family: var(--fp-font-brand);
	font-size: clamp(24px, 2.4vw, 28px);
	font-weight: 600;
	line-height: 1.08;
	color: var(--fp-red);
}

.fp-header__logo-en {
	margin-top: 2px;
	font-family: var(--fp-font-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--fp-red);
	line-height: 1.2;
}

.fp-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	height: 100%;
	min-height: 0;
	grid-column: 2;

}

.fp-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
	height: 100%;
	min-height: 0;
	gap: 6px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-menu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: #3a2a2a;
	letter-spacing: 0.02em;
}

.fp-menu a:hover {
	color: var(--fp-red);
	opacity: 1;
}

.fp-menu .current-menu-item > a,
.fp-menu .current_page_item > a {
	color: var(--fp-red);
}


.fp-header__reserve {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	justify-self: center;
	min-width: 168px;
	min-height: 48px;
	max-height: 100%;
	padding: 10px 40px 10px 20px;
	background: var(--fp-white);
	border: 1px solid #e2421f;
	color: #e2421f !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	grid-column: 3;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.fp-header__reserve:hover {
	background: #fffdfb;
	opacity: 1;
}

.fp-header__reserve-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	bottom: auto;
	width: 10px;
	height: 10px;
	margin-top: 0;
	border-top: 1.5px solid #e2421f;
	border-right: 1.5px solid #e2421f;
	transform: translateY(-50%) rotate(45deg);
}

.fp-header__toggle {
	display: none;
	grid-column: 2;
	justify-self: end;
}

/* ========== Hero collage（ヘッダー背景の下に入り込む） ========== */
.fp-main {
	position: relative;
	z-index: 1;
}

.fp-hero {
	position: relative;
	z-index: 1;
	background: transparent;
	padding-top: 0;
	top: -85px;
	margin-top: calc(-1 * var(--fp-header-pull-px, var(--fp-header-pull)));
}

.fp-hero__collage {
	--fp-hero-gap: 12px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 22.75% 26.625% 26.625% 22.75%;
	grid-template-rows: 11fr 7fr 9fr 13fr;
	gap: var(--fp-hero-gap);
	width: 100%;
	max-width: 1280px;
	min-height: 520px;
	height: clamp(520px, 48vw, 620px);
	margin: 0 auto;
	padding: clamp(8px, 1.2vw, 16px) 16px 16px;
	box-sizing: border-box;
}

/* セル配置（上辺: 01・03・06 / 下辺: 02・04・05・07） */
.fp-hero__cell--hero-01 { grid-column: 1; grid-row: 1 / 4; }
.fp-hero__cell--hero-02 { grid-column: 1; grid-row: 4 / 5; }
.fp-hero__cell--hero-03 { grid-column: 2 / 4; grid-row: 1 / 3; }
.fp-hero__cell--hero-04 { grid-column: 2; grid-row: 3 / 5; }
.fp-hero__cell--hero-05 { grid-column: 3; grid-row: 3 / 5; }
.fp-hero__cell--hero-06 { grid-column: 4; grid-row: 1 / 2; }
.fp-hero__cell--hero-07 { grid-column: 4; grid-row: 2 / 5; }

.fp-hero__cell {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #e8e0d5;
	min-width: 0;
	min-height: 0;
}

.fp-hero__cell .fp-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fp-hero__cell--hero-01 .fp-hero__img { object-position: center top; }
.fp-hero__cell--hero-02 .fp-hero__img { object-position: center center; }
.fp-hero__cell--hero-03 .fp-hero__img { object-position: center 32%; }
.fp-hero__cell--hero-04 .fp-hero__img { object-position: center top; }
.fp-hero__cell--hero-05 .fp-hero__img { object-position: center center; }
.fp-hero__cell--hero-06 .fp-hero__img { object-position: center center; }
.fp-hero__cell--hero-07 .fp-hero__img { object-position: center top; }

/* hero-03 相当エリア（上3行）の上下中央 */
.fp-hero__collage > .fp-hero__overlay {
	position: absolute;
	top: 0;
	bottom: 32.5%;
	left: calc(22.75% + var(--fp-hero-gap));
	right: calc(22.75% + var(--fp-hero-gap));
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateY(20px);
	pointer-events: none;
	text-align: center;
}

.fp-hero__logo-text {
	margin: 0;
	font-family: var(--fp-font-en);
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 600;
	color: var(--fp-white);
	letter-spacing: 0.1em;
	line-height: 1.05;
}

.fp-hero__logo-sub {
	margin: 6px 0 0;
	font-family: var(--fp-font-script);
	font-size: clamp(16px, 2.2vw, 22px);
	color: var(--fp-white);
	letter-spacing: 0.08em;
}

/* 画面右下に常時固定（フッター直前・各セクションより前面） */
.fp-hero__float {
	--fp-hero-collage-max: 1280px;
	position: fixed;
	right: max(12px, calc((100vw - min(100vw, var(--fp-hero-collage-max))) / 2 + 12px));
	bottom: max(16px, env(safe-area-inset-bottom, 0px));
	z-index: var(--fp-float-z-index);
	isolation: isolate;
	pointer-events: none;
}

.fp-hero__float-panel {
	pointer-events: auto;
}

.fp-hero__float-panel--desktop {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 0;
}

.fp-hero__float-panel--mobile {
	display: none;
}

.fp-hero__float-panel--desktop .fp-hero__lang,
.fp-hero__float-panel--desktop .fp-hero__book {
	display: block;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	line-height: 0;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fp-hero__float-panel--desktop .fp-hero__lang {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	align-self: flex-end;
	margin: 0 -28px 10px 0;
}

.fp-hero__float-panel--desktop .fp-hero__book {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	align-self: flex-end;
}

.fp-hero__float-panel--desktop .fp-hero__lang-img,
.fp-hero__float-panel--desktop .fp-hero__book-img {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
	object-fit: contain;
}

.fp-hero__float-panel--desktop .fp-hero__lang-img {
	width: clamp(100px, 11vw, 132px);
	height: auto;
}

.fp-hero__float-panel--desktop .fp-hero__book-img {
	width: clamp(168px, 18vw, 220px);
	height: auto;
}

.fp-hero__float-panel--desktop .fp-hero__lang:hover,
.fp-hero__float-panel--desktop .fp-hero__book:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Language ドロップダウン */
.fp-hero__lang-switcher {
	position: relative;
}

.fp-hero__lang-menu {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	z-index: 20;
	min-width: 140px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fp-hero__lang-menu[hidden] {
	display: none;
}

.fp-hero__lang-menu-link {
	display: block;
	padding: 10px 16px;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.4;
	color: var(--fp-text);
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.fp-hero__lang-menu-link:hover,
.fp-hero__lang-menu-link:focus-visible {
	background: rgba(180, 30, 40, 0.06);
	color: var(--fp-red);
	outline: none;
}

.fp-hero__lang-menu-link.is-current {
	font-weight: 600;
	color: var(--fp-red);
}

.fp-hero__lang-switcher.is-open .fp-hero__lang-chevron {
	transform: rotate(180deg);
}

.fp-hero__float-panel--desktop .fp-hero__lang-switcher {
	flex: 0 0 auto;
}

/* Hero below — quick links & pager */
.fp-hero__below {
	display: none; /* 一時的非表示 */
	padding: 20px 24px 36px;
}

.fp-hero__quick-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-hero__quick-link {
	display: block;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	border-radius: 4px;
	background: #e8e0d5;
}

.fp-hero__quick-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-hero__pager {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
}

.fp-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fp-peach-dark);
}

.fp-hero__dot.is-active {
	background: var(--fp-orange);
}

/* ========== Plan（デザインカンプ準拠） ========== */
.fp-plan {
	position: relative;
	overflow: hidden;
	background: var(--fp-cream);
}

.fp-plan__deco {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: min(420px, 48vw);
	height: min(300px, 36vw);
	background:
		url("../images/front/plan-asanoha.png") no-repeat left top / contain,
		radial-gradient(ellipse 80% 70% at 12% 18%, rgba(201, 168, 106, 0.22) 0%, transparent 72%);
	opacity: 0.55;
	pointer-events: none;
}

.fp-plan > .container {
	position: relative;
	z-index: 1;
}

.fp-plan .section-heading {
	margin-bottom: 48px;
}

.fp-plan .section-heading__en {
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fp-plan .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-plan__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-plan__card {
	background: var(--fp-white);
	border: none;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fp-plan__card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.fp-plan__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.fp-plan__card-link:hover {
	opacity: 1;
}

.fp-plan__thumb {
	padding: 14px 14px 0;
	overflow: hidden;
}

.fp-plan__img {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	object-fit: cover;
}

.fp-plan__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 20px 18px;
}

.fp-plan__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-family: var(--fp-font-ja);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--fp-text);
}

.fp-plan__title::before {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	background: var(--fp-orange);
}

.fp-plan__desc {
	margin: 0;
	flex: 1;
	font-size: 12px;
	line-height: 1.75;
	color: var(--fp-text-muted);
}

.fp-plan__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
}

.fp-plan__body:not(:has(.fp-plan__desc)) .fp-plan__footer {
	margin-top: 16px;
}

.fp-plan__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 8px;
	margin: 0;
}

.fp-plan__price-num {
	font-family: var(--fp-font-ja);
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--fp-text);
	letter-spacing: 0.02em;
}

.fp-plan__price-tax {
	font-family: var(--fp-font-en);
	font-size: 11px;
	font-weight: 400;
	color: var(--fp-text-muted);
}

.fp-plan__arrow {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	margin-bottom: 4px;
	border-top: 1.5px solid var(--fp-orange);
	border-right: 1.5px solid var(--fp-orange);
	transform: rotate(45deg);
}

.fp-plan__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	margin-top: 52px;
}

.fp-plan__includes {
	max-width: min(720px, 100%);
	text-align: center;
}

.fp-plan__includes-lead {
	margin: 0 0 10px;
	font-family: var(--fp-font-ja);
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 700;
	line-height: 1.6;
	color: var(--fp-text);
	letter-spacing: 0.06em;
}

.fp-plan__includes-list {
	margin: 0;
	font-family: var(--fp-font-ja);
	font-size: clamp(14px, 1.5vw, 16px);
	font-weight: 500;
	line-height: 1.85;
	color: var(--fp-text);
	letter-spacing: 0.04em;
}

.fp-plan__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: 999px;
	background: var(--fp-accent);
	color: var(--fp-white) !important;
	font-family: var(--fp-font-en);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.fp-plan__btn:hover {
	background: var(--fp-accent-dark);
	opacity: 1;
}

.fp-plan__btn-arrow {
	width: 8px;
	height: 8px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

/* ========== Option（デザインカンプ準拠） ========== */
.fp-option {
	background: var(--fp-option-bg);
}

.fp-option .section-heading {
	margin-bottom: 48px;
}

.fp-option .section-heading__en {
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fp-option .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-option__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-option__card {
	background: var(--fp-white);
	border: none;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	overflow: hidden;
}

.fp-option__card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-align: left;
}

.fp-option__thumb {
	overflow: hidden;
	background: #e8e0d5;
}

.fp-option__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 12px 12px 0 0;
}

.fp-option__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 16px 16px;
}

.fp-option__title {
	margin: 0 0 8px;
	font-family: var(--fp-font-ja);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--fp-text);
}

.fp-option__desc {
	margin: 0;
	flex: 1;
	font-size: 11px;
	line-height: 1.7;
	color: var(--fp-text-muted);
}

.fp-option__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	margin-top: 10px;
}

.fp-option__body:not(:has(.fp-option__desc)) .fp-option__footer {
	margin-top: 12px;
}

.fp-option__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	margin: 0;
}

.fp-option__price-num {
	font-family: var(--fp-font-ja);
	font-size: clamp(17px, 1.8vw, 20px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--fp-text);
	letter-spacing: 0.02em;
}

.fp-option__price-tax {
	font-family: var(--fp-font-en);
	font-size: 10px;
	font-weight: 400;
	color: var(--fp-text-muted);
}

/* ========== Store（デザインカンプ準拠） ========== */
.fp-store {
	position: relative;
	overflow: hidden;
	background: var(--fp-cream);
}

.fp-store__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		url("../images/front/store-bg.png") no-repeat center / cover,
		radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201, 168, 106, 0.12) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 80%, rgba(250, 178, 122, 0.1) 0%, transparent 65%);
	opacity: 0.65;
	pointer-events: none;
}

.fp-store > .container {
	position: relative;
	z-index: 1;
}

.fp-store__frame {
	position: relative;
	padding: 52px 48px 44px;
	border: 3px double var(--fp-accent);
	background: var(--fp-white);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.fp-store__corner {
	position: absolute;
	width: 14px;
	height: 14px;
	background: var(--fp-accent);
	pointer-events: none;
}

.fp-store__corner--tl {
	top: 14px;
	left: 14px;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.fp-store__corner--tr {
	top: 14px;
	right: 14px;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.fp-store__corner--bl {
	bottom: 14px;
	left: 14px;
	clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.fp-store__corner--br {
	bottom: 14px;
	right: 14px;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.fp-store .section-heading {
	margin-bottom: 36px;
}

.fp-store .section-heading__en {
	font-size: clamp(30px, 4.2vw, 40px);
	font-weight: 600;
	color: var(--fp-accent);
	letter-spacing: 0.04em;
}

.fp-store .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-store__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px 48px;
	align-items: start;
	margin-top: 8px;
}

.fp-store__list {
	margin: 0;
}

.fp-store__row {
	display: grid;
	grid-template-columns: minmax(7.5em, 10.5em) 1fr;
	gap: 0 20px;
	padding: 14px 0;
	border-bottom: 1px dotted #d8d0c6;
}

.fp-store__row:last-child {
	border-bottom: none;
}

.fp-store__row dt {
	margin: 0;
	padding-right: 18px;
	border-right: 1px solid #d0c8be;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--fp-text);
}

.fp-store__row dd {
	margin: 0;
	padding-left: 2px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--fp-text);
}

.fp-store__row dd a {
	color: inherit;
	text-decoration: none;
}

.fp-store__row dd a:hover {
	color: var(--fp-accent);
	opacity: 1;
}

.fp-store__visual {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fp-store__photos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.fp-store__photo {
	overflow: hidden;
	border-radius: 10px;
	background: #e8e0d5;
}

.fp-store__photo-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}

.fp-store__map {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 10px;
	background: #e8e0d5;
}

.fp-store__map-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.fp-store__map--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.fp-store__map-placeholder-text {
	margin: 0;
	padding: 16px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--fp-text-muted);
	text-align: center;
}

/* ========== Flow（デザインカンプ準拠） ========== */
.fp-flow {
	position: relative;
	overflow: hidden;
	background: var(--fp-cream);
}

.fp-flow__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		url("../images/front/flow-bg.png") no-repeat center / cover,
		radial-gradient(ellipse 55% 45% at 80% 15%, rgba(250, 178, 122, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 10% 85%, rgba(201, 168, 106, 0.1) 0%, transparent 65%);
	opacity: 0.55;
	pointer-events: none;
}

.fp-flow > .container {
	position: relative;
	z-index: 1;
}

.fp-flow .section-heading {
	margin-bottom: 48px;
}

.fp-flow .section-heading__en {
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 600;
	color: var(--fp-accent);
	letter-spacing: 0.04em;
}

.fp-flow .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-flow__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-flow__item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 18px;
	padding: 22px 24px;
	background: var(--fp-white);
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fp-flow__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border: 1.5px solid var(--fp-gold);
	border-radius: 50%;
	color: var(--fp-gold);
	text-align: center;
	line-height: 1.2;
}

.fp-flow__badge-label {
	font-family: var(--fp-font-en);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.fp-flow__badge-num {
	margin-top: 2px;
	font-family: var(--fp-font-en);
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.fp-flow__text {
	flex: 1;
	min-width: 0;
	padding-top: 4px;
}

.fp-flow__title {
	margin: 0 0 8px;
	font-family: var(--fp-font-ja);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--fp-text);
}

.fp-flow__desc {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--fp-text);
}

/* ========== Gallery（デザインカンプ準拠・右→左マーキー） ========== */
.fp-gallery {
	--fp-gallery-duration: 55s;
	position: relative;
	padding: 72px 0 80px;
	background-color: var(--fp-cream);
	overflow: hidden;
}

.fp-gallery__deco {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	opacity: 0.35;
}

.fp-gallery__deco--asanoha {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: min(280px, 32vw);
	height: min(280px, 32vw);
	background:
		url("../images/front/gallery-asanoha.png") no-repeat left center / contain,
		radial-gradient(circle at 30% 50%, rgba(232, 212, 168, 0.25) 0%, transparent 70%);
}

.fp-gallery__deco--yagasuri {
	right: 0;
	top: 8%;
	width: min(360px, 42vw);
	height: min(220px, 28vw);
	background:
		url("../images/front/gallery-yagasuri.png") no-repeat right top / contain,
		radial-gradient(ellipse 70% 60% at 80% 20%, rgba(232, 212, 168, 0.2) 0%, transparent 72%);
}

.fp-gallery__wave {
	position: absolute;
	left: 0;
	right: 0;
	top: 58%;
	z-index: 0;
	height: 140px;
	transform: translateY(-50%);
	background: url("../images/front/gallery-wave.png") repeat-x center / auto 100%;
	opacity: 0.45;
	pointer-events: none;
}

.fp-gallery__head {
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
	text-align: center;
}

.fp-gallery__head .section-heading {
	margin-bottom: 0;
}

.fp-gallery .section-heading__en {
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 600;
	color: var(--fp-accent);
	letter-spacing: 0.04em;
}

.fp-gallery .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-gallery__marquee {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.fp-gallery__marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: fp-gallery-marquee var(--fp-gallery-duration) linear infinite;
}

.fp-gallery__marquee:hover .fp-gallery__marquee-track {
	animation-play-state: paused;
}

@keyframes fp-gallery-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.fp-gallery__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0 8px;
	flex: 0 0 auto;
}

.fp-gallery__item {
	flex: 0 0 auto;
}

.fp-gallery__img {
	display: block;
	width: 100%;
	height: 280px;
	border-radius: 4px;
	object-fit: cover;
}

/* サイズ・段差（ゴールの浮遊レイアウト） */
.fp-gallery__item--a {
	width: 200px;
	margin-top: 52px;
}

.fp-gallery__item--a .fp-gallery__img {
	height: 250px;
}

.fp-gallery__item--b {
	width: 220px;
	margin-top: 12px;
}

.fp-gallery__item--b .fp-gallery__img {
	height: 270px;
}

.fp-gallery__item--c {
	width: 210px;
	margin-top: 36px;
}

.fp-gallery__item--c .fp-gallery__img {
	height: 260px;
}

.fp-gallery__item--d {
	width: 230px;
	margin-top: 0;
}

.fp-gallery__item--d .fp-gallery__img {
	height: 290px;
}

.fp-gallery__item--e {
	width: 215px;
	margin-top: 44px;
}

.fp-gallery__item--e .fp-gallery__img {
	height: 255px;
}

.fp-gallery__item--hero {
	width: 300px;
	margin-top: 8px;
}

.fp-gallery__item--hero .fp-gallery__img {
	height: 400px;
}

.fp-gallery__item--f {
	width: 225px;
	margin-top: 28px;
}

.fp-gallery__item--f .fp-gallery__img {
	height: 275px;
}

.fp-gallery__item--g {
	width: 205px;
	margin-top: 48px;
}

.fp-gallery__item--g .fp-gallery__img {
	height: 248px;
}

@media (prefers-reduced-motion: reduce) {
	.fp-gallery__marquee-track {
		animation: none;
	}

	.fp-gallery__marquee {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		mask-image: none;
	}

	.fp-gallery__marquee::-webkit-scrollbar {
		display: none;
	}
}

/* ========== Why Choose Us（デザインカンプ準拠） ========== */
.fp-why {
	padding: 80px 0 96px;
	background: linear-gradient(180deg, var(--fp-cream) 0%, #f8f0e6 55%, #f3ebe2 100%);
}

.fp-why .section-heading {
	margin-bottom: 32px;
}

.fp-why .section-heading__en {
	font-size: clamp(32px, 4.5vw, 42px);
	font-weight: 600;
	color: var(--fp-accent);
	letter-spacing: 0.04em;
}

.fp-why .section-heading__ja {
	font-size: 14px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.12em;
}

.fp-why__intro {
	max-width: min(720px, 80%);
	margin: 0 auto 56px;
	font-size: 14px;
	line-height: 2;
	color: var(--fp-text);
	text-align: center;
	white-space: pre-line;
}

.fp-why__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 16px 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-why__item {
	flex: 0 1 220px;
	max-width: 240px;
	text-align: center;
}

.fp-why__item--low {
	margin-top: 48px;
}

.fp-why__visual {
	position: relative;
	width: 220px;
	height: 220px;
	margin: 0 auto 22px;
	overflow: visible;
}

.fp-why__dots {
	position: absolute;
	right: 4px;
	bottom: 2px;
	z-index: 0;
	width: 188px;
	height: 188px;
	border-radius: 50%;
	background:
		url("../images/front/why-dots.png") no-repeat center / contain,
		radial-gradient(circle, rgba(232, 140, 90, 0.45) 2px, transparent 2px);
	background-size: contain, 11px 11px;
	opacity: 0.55;
	pointer-events: none;
}

.fp-why__circle {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background: #e8e0d5;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.fp-why__badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	font-family: var(--fp-font-en);
	color: var(--fp-white);
	text-align: center;
	line-height: 1.15;
	background: var(--fp-accent);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(216, 91, 61, 0.35);
	transform: translate(-18%, -18%);
	pointer-events: none;
}

.fp-why__badge-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fp-why__badge-num {
	margin-top: 1px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.fp-why__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-why__title {
	margin: 0;
	font-family: var(--fp-font-ja);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
	color: var(--fp-text);
	letter-spacing: 0.02em;
}

/* ========== FAQ（デザインカンプ準拠） ========== */
.fp-faq {
	position: relative;
	padding: 80px 0 96px;
	background: var(--fp-white);
	overflow: hidden;
}

.fp-main--faq {
	min-height: calc(100vh - var(--fp-header-height-px, var(--fp-header-height)));
}

.fp-faq--page .fp-faq__side {
	justify-content: flex-start;
}

.fp-faq__deco {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	opacity: 0.32;
}

.fp-faq__deco--left {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: min(260px, 30vw);
	height: min(260px, 30vw);
	background:
		url("../images/front/gallery-asanoha.png") no-repeat left center / contain,
		radial-gradient(circle at 30% 50%, rgba(232, 212, 168, 0.28) 0%, transparent 70%);
}

.fp-faq__deco--right {
	right: 0;
	top: 0;
	width: min(320px, 38vw);
	height: min(200px, 24vw);
	background:
		url("../images/front/gallery-yagasuri.png") no-repeat right top / contain,
		radial-gradient(ellipse 70% 60% at 80% 20%, rgba(232, 212, 168, 0.22) 0%, transparent 72%);
}

.fp-faq .container {
	position: relative;
	z-index: 1;
}

.fp-faq__inner {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	gap: 48px 72px;
	align-items: stretch;
}

.fp-faq__side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 100%;
}

.fp-faq__head {
	margin-bottom: 48px;
}

.fp-faq__title {
	margin: 0 0 10px;
	font-family: var(--fp-font-en);
	font-size: clamp(56px, 7vw, 88px);
	font-weight: 700;
	color: var(--fp-accent);
	line-height: 1;
	letter-spacing: 0.02em;
}

.fp-faq__subtitle {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--fp-accent);
	letter-spacing: 0.08em;
}

.fp-faq__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 48px;
	padding: 10px 10px 10px 28px;
	border-radius: 999px;
	background: var(--fp-accent);
	color: var(--fp-white) !important;
	font-family: var(--fp-font-en);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.fp-faq__btn:hover {
	background: var(--fp-accent-dark);
	opacity: 1;
}

.fp-faq__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
}

.fp-faq__btn-arrow {
	width: 8px;
	height: 8px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.fp-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fp-faq__category + .fp-faq__category {
	margin-top: 28px;
}

.fp-faq__category-title {
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--fp-border);
	font-family: var(--fp-font-ja);
	font-size: 16px;
	font-weight: 600;
	color: var(--fp-accent);
	letter-spacing: 0.04em;
}

.fp-faq__category-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fp-faq__item {
	background: var(--fp-option-bg);
	border-radius: 8px;
	overflow: hidden;
}

.fp-faq__question {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 18px 20px;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-align: left;
	color: var(--fp-text);
	cursor: pointer;
}

.fp-faq__q {
	flex-shrink: 0;
	font-family: var(--fp-font-en);
	font-size: 16px;
	font-weight: 700;
	color: var(--fp-accent);
	line-height: 1.4;
}

.fp-faq__q-text {
	flex: 1;
	min-width: 0;
}

.fp-faq__toggle {
	flex-shrink: 0;
	width: 20px;
	font-family: var(--fp-font-en);
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	color: var(--fp-accent);
	text-align: center;
}

.fp-faq__toggle::before {
	content: "+";
}

.fp-faq__question[aria-expanded="true"] .fp-faq__toggle::before {
	content: "−";
}

.fp-faq__answer {
	display: flex;
	gap: 12px;
	padding: 0 20px 20px;
}

.fp-faq__answer[hidden] {
	display: none;
}

.fp-faq__a {
	flex-shrink: 0;
	font-family: var(--fp-font-en);
	font-size: 16px;
	font-weight: 700;
	color: var(--fp-accent);
	line-height: 1.6;
}

.fp-faq__a-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: var(--fp-text);
}

/* ========== Photo plan（撮影プラン固定ページ） ========== */
.fp-main--photo {
	min-height: calc(100vh - var(--fp-header-height-px, var(--fp-header-height)));
}

.fp-photo-plan {
	padding: 56px 0 96px;
	background: var(--fp-white);
}

.fp-photo-plan__head {
	margin-bottom: 40px;
}

.fp-photo-plan__title {
	margin: 0;
	font-family: var(--fp-font-brand);
	font-size: clamp(28px, 4.2vw, 40px);
	font-weight: 600;
	color: var(--fp-red);
	text-align: center;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

.fp-photo-plan__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 12px;
}

.fp-photo-plan__table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	border: 1px solid var(--fp-border);
	background: var(--fp-white);
}

.fp-photo-plan__table th,
.fp-photo-plan__table td {
	padding: 14px 16px;
	border: 1px solid var(--fp-border);
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	vertical-align: middle;
}

.fp-photo-plan__table thead th {
	background: #dceee8;
	color: var(--fp-text);
	font-weight: 600;
}

.fp-photo-plan__table tbody th[scope="row"] {
	background: var(--fp-white);
	font-weight: 500;
	text-align: center;
	color: var(--fp-text);
}

.fp-photo-plan__table tbody td {
	color: var(--fp-text);
}

.fp-photo-plan__table-note {
	margin: 0 0 40px;
	font-size: 13px;
	color: var(--fp-text-muted);
}

.fp-photo-plan__photos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 56px;
}

.fp-photo-plan__photo {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
	background: var(--fp-cream-dark);
}

.fp-photo-plan__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.fp-photo-plan__notices {
	max-width: 760px;
	margin: 0 auto;
}

.fp-photo-plan__notices-title {
	margin: 0 0 28px;
	font-family: var(--fp-font-brand);
	font-size: clamp(22px, 3.2vw, 28px);
	font-weight: 600;
	color: var(--fp-red);
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.fp-photo-plan__notices-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.fp-photo-plan__notice-heading {
	margin: 0 0 8px;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	font-weight: 600;
	color: var(--fp-text);
	line-height: 1.6;
}

.fp-photo-plan__notice-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: var(--fp-text-muted);
}

/* ========== Legal notice（特定商取引法） ========== */
.fp-main--legal {
	min-height: calc(100vh - var(--fp-header-height-px, var(--fp-header-height)));
}

.fp-legal {
	padding: 56px 0 96px;
	background: var(--fp-white);
}

.fp-legal__head {
	margin-bottom: 48px;
}

.fp-legal__title {
	margin: 0;
	font-family: var(--fp-font-brand);
	font-size: clamp(28px, 4.2vw, 40px);
	font-weight: 600;
	color: var(--fp-red);
	text-align: center;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

.fp-legal__list {
	max-width: 920px;
	margin: 0 auto;
	border-top: 1px solid var(--fp-border);
}

.fp-legal__row {
	display: grid;
	grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
	align-items: stretch;
	margin: 0;
	border-bottom: 1px solid var(--fp-border);
}

.fp-legal__label,
.fp-legal__value {
	margin: 0;
	padding: 22px 20px;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.75;
}

.fp-legal__label {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--fp-text);
	text-align: center;
	background: var(--fp-white);
}

.fp-legal__value {
	color: var(--fp-text);
	text-align: left;
}

/* ========== Privacy policy（プライバシーポリシー） ========== */
.fp-main--privacy {
	min-height: calc(100vh - var(--fp-header-height-px, var(--fp-header-height)));
}

.fp-privacy {
	padding: 56px 0 96px;
	background: var(--fp-white);
}

.fp-privacy__head {
	margin-bottom: 48px;
}

.fp-privacy__title {
	margin: 0;
	font-family: var(--fp-font-brand);
	font-size: clamp(28px, 4.2vw, 40px);
	font-weight: 600;
	color: var(--fp-red);
	text-align: center;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

.fp-privacy__body {
	max-width: 920px;
	margin: 0 auto;
}

.fp-privacy__section + .fp-privacy__section {
	margin-top: 40px;
}

.fp-privacy__heading {
	margin: 0 0 16px;
	font-family: var(--fp-font-ja);
	font-size: 16px;
	font-weight: 700;
	color: var(--fp-text);
	line-height: 1.5;
}

.fp-privacy__text {
	margin: 0 0 12px;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.85;
	color: var(--fp-text);
}

.fp-privacy__text:last-child {
	margin-bottom: 0;
}

.fp-privacy__note {
	margin: 12px 0 0;
	font-family: var(--fp-font-ja);
	font-size: 13px;
	line-height: 1.85;
	color: var(--fp-text-muted);
}

.fp-privacy__details {
	margin: 0;
}

.fp-privacy__detail {
	display: grid;
	grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
	gap: 8px 20px;
	margin: 0 0 10px;
}

.fp-privacy__detail:last-child {
	margin-bottom: 0;
}

.fp-privacy__detail-label,
.fp-privacy__detail-value {
	margin: 0;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.75;
}

.fp-privacy__detail-label {
	font-weight: 600;
	color: var(--fp-text);
}

.fp-privacy__detail-value {
	color: var(--fp-text);
}

/* ========== Generic front page content（予約ページ等） ========== */
.fp-main--page {
	min-height: calc(100vh - var(--fp-header-height-px, var(--fp-header-height)));
}

.fp-page-content {
	padding: 56px 0 96px;
	background: var(--fp-white);
}

.fp-page-content__head {
	margin-bottom: 40px;
}

.fp-page-content__title {
	margin: 0;
	font-family: var(--fp-font-brand);
	font-size: clamp(28px, 4.2vw, 40px);
	font-weight: 600;
	color: var(--fp-red);
	text-align: center;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

.fp-page-content__body {
	max-width: 920px;
	margin: 0 auto;
	font-family: var(--fp-font-ja);
	font-size: 14px;
	line-height: 1.85;
	color: var(--fp-text);
}

.fp-page-content__body > :first-child {
	margin-top: 0;
}

.fp-page-content__body > :last-child {
	margin-bottom: 0;
}

.fp-page-content__body p {
	margin: 0 0 1em;
}

.fp-page-content__body a {
	color: var(--fp-red);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.fp-page-content__body a:hover {
	opacity: 0.85;
}

.fp-page-content__body img {
	max-width: 100%;
	height: auto;
}

.fp-page-content__pager {
	margin-top: 32px;
	font-size: 13px;
	color: var(--fp-text-muted);
}

/* ========== Instagram ========== */
.fp-insta {
	background: var(--fp-cream);
	padding-bottom: 80px;
}

.fp-insta__head {
	text-align: center;
	margin-bottom: 32px;
}

.fp-insta__title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 8px;
	font-family: var(--fp-font-en);
	font-size: 28px;
	font-weight: 600;
	color: var(--fp-text);
}

.fp-insta__icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	border-radius: 6px;
	position: relative;
}

.fp-insta__icon::after {
	content: "";
	position: absolute;
	inset: 6px;
	border: 2px solid #fff;
	border-radius: 4px;
}

.fp-insta__handle {
	margin: 0;
	font-size: 13px;
}

.fp-insta__handle a {
	color: var(--fp-accent);
}

.fp-insta__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-insta__link {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #e8e0d5;
}

.fp-insta__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fp-insta__nav {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.fp-insta__dots {
	display: flex;
	gap: 6px;
}

.fp-insta__dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
}

.fp-insta__dots span.is-active {
	background: var(--fp-text);
}

.fp-insta__bar {
	width: 100%;
	max-width: 400px;
	height: 3px;
	background: #e0e0e0;
	border-radius: 2px;
	overflow: hidden;
}

.fp-insta__bar-fill {
	display: block;
	height: 100%;
	width: 33%;
	background: #4a90d9;
	border-radius: 2px;
	transition: width 0.3s ease;
}

/* ========== Footer（デザインカンプ準拠） ========== */
.fp-footer {
	position: relative;
	padding: 72px 0 64px;
	background-color: var(--fp-cream);
	background-image: url("../images/front/footer-bg.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	border-top: none;
	overflow: hidden;
}

.fp-footer > .container {
	position: relative;
}

.fp-footer__inner {
	display: grid;
	grid-template-columns: minmax(210px, 1.25fr) minmax(130px, 0.85fr) minmax(130px, 0.85fr) auto;
	gap: 40px 56px;
	align-items: start;
}

.fp-footer__brand {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: stretch;
	min-height: 100%;
}

.fp-footer__store-name {
	margin: 0 0 12px;
	font-family: var(--fp-font-ja);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--fp-text);
}

.fp-footer__address {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	font-style: normal;
	font-size: 13px;
	line-height: 1.85;
	color: var(--fp-text);
}

.fp-footer__postal,
.fp-footer__addr {
	display: block;
}

.fp-footer__copy {
	margin: auto 0 0;
	padding-top: 56px;
	font-size: 11px;
	line-height: 1.6;
	color: var(--fp-text-muted);
}

.fp-footer__nav {
	min-width: 0;
}

.fp-footer__nav--menu {
	grid-column: 2 / 4;
}

.fp-footer__menu-wrap .fp-footer__menu,
.fp-footer__nav--menu .fp-footer__menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(130px, 1fr));
	gap: 12px 72px;
}

.fp-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp-footer__menu li + li {
	margin-top: 12px;
}

.fp-footer__menu a {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	font-size: 13px;
	line-height: 1.65;
	color: var(--fp-text);
	transition: opacity 0.2s ease;
}

.fp-footer__menu a::before {
	content: "—";
	flex-shrink: 0;
	font-weight: 400;
	color: var(--fp-text);
}

.fp-footer__menu a:hover {
	opacity: 0.72;
}

.fp-footer__social {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 14px;
}

.fp-footer__social-link {
	display: block;
	flex-shrink: 0;
	line-height: 0;
	border-radius: 10px;
	overflow: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fp-footer__social-link:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.fp-body .fp-footer__social-img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
	.fp-header__inner {
		grid-template-columns: 220px 1fr auto;
		gap: 12px 16px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.fp-header__brand {
		left: 16px;
		margin-left: calc(-1 * max(0px, (100vw - var(--fp-container)) / 2));
		max-width: 280px;
		padding-bottom: 22px;
	}

	.fp-header__ornament,
	.fp-header__brand img.fp-header__ornament {
		width: 58px;
		max-width: 58px;
		max-height: 82px;
	}

	.fp-header__logo-wrap {
		max-width: 176px;
	}

	.fp-header__logo img,
	.fp-header__logo-img {
		max-width: 176px !important;
		max-height: 84px !important;
	}

	.fp-header__logo-ja {
		font-size: 22px;
	}

	.fp-menu {
		gap: 4px 14px;
	}

	.fp-menu a {
		font-size: 12px;
	}

	.fp-header__reserve {
		min-width: 140px;
		padding-right: 32px;
		font-size: 12px;
	}

	.fp-hero__collage {
		height: clamp(460px, 52vw, 560px);
		min-height: 460px;
	}

	.fp-hero__float {
		right: max(10px, calc((100vw - min(100vw, var(--fp-hero-collage-max))) / 2 + 10px));
		bottom: max(12px, env(safe-area-inset-bottom, 0px));
	}

	.fp-hero__float-panel--desktop .fp-hero__lang-switcher .fp-hero__lang {
		margin: 0 -20px 8px 0;
	}

	.fp-hero__float-panel--desktop .fp-hero__lang-img {
		width: clamp(88px, 12vw, 120px);
	}

	.fp-hero__float-panel--desktop .fp-hero__book-img {
		width: clamp(150px, 20vw, 200px);
	}

	.fp-plan__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.fp-plan__actions {
		flex-direction: column;
		gap: 16px;
		margin-top: 40px;
	}

	.fp-plan__deco {
		width: min(280px, 70vw);
		height: min(200px, 50vw);
		opacity: 0.4;
	}

	.fp-option__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 22px 18px;
	}

	.fp-why__list {
		gap: 20px 24px;
	}

	.fp-why__item {
		flex: 0 1 calc(50% - 24px);
		max-width: none;
	}

	.fp-why__item--low {
		margin-top: 36px;
	}

	.fp-why__visual {
		width: 180px;
		height: 180px;
	}

	.fp-why__dots {
		width: 154px;
		height: 154px;
	}

	.fp-insta__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.fp-store__content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fp-store__frame {
		padding: 40px 28px 32px;
	}

	.fp-faq__inner {
		grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
		gap: 36px 40px;
	}

	.fp-faq__deco--right {
		width: min(240px, 34vw);
		height: min(160px, 22vw);
		opacity: 0.24;
	}

	.fp-footer__inner {
		grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.9fr) minmax(120px, 0.9fr) auto;
		gap: 32px 32px;
	}
}

@media (max-width: 767px) {
	.fp-body.fp-body {
		padding-top: 0;
		padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
	}

	.fp-header {
		height: 0;
		min-height: 0;
		overflow: visible;
	}

	.fp-header__bar {
		height: 0;
		min-height: 0;
		background: transparent;
		overflow: visible;
	}

	.fp-header__bg,
	.fp-header__bar::before {
		display: none;
	}

	.fp-header__inner {
		position: fixed;
		top: max(12px, env(safe-area-inset-top, 0px));
		right: max(12px, env(safe-area-inset-right, 0px));
		left: auto;
		transform: none;
		z-index: 600;
		display: block;
		width: auto;
		height: auto;
		min-height: 0;
		max-width: none;
		margin: 0;
		padding: 0;
	}

	.fp-body .fp-header__inner.container {
		width: auto;
		max-width: none;
		margin: 0;
		padding: 0;
	}

	.fp-header__brand,
	.fp-header__reserve {
		display: none;
	}

	.fp-body .fp-header__toggle.nav-toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 44px;
		height: 44px;
		padding: 0;
		border: none;
		border-radius: 50%;
		background: var(--fp-white);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
		cursor: pointer;
	}

	.fp-body .fp-header__toggle.nav-toggle .nav-toggle__bar {
		display: block;
		width: 16px;
		height: 1.5px;
		border-radius: 1px;
		background: var(--fp-red);
	}

	.fp-body .fp-header__toggle.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
		transform: translateY(5.5px) rotate(45deg);
	}

	.fp-body .fp-header__toggle.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
		opacity: 0;
	}

	.fp-body .fp-header__toggle.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.fp-header__nav {
		position: fixed;
		top: calc(max(12px, env(safe-area-inset-top, 0px)) + 52px);
		left: 12px;
		right: 12px;
		grid-column: auto;
		grid-row: auto;
		height: auto;
		padding: 0;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid var(--fp-border);
		border-radius: 14px;
		box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-6px);
		transition:
			max-height 0.32s ease,
			opacity 0.24s ease,
			transform 0.24s ease,
			visibility 0.24s ease;
	}

	.fp-header__nav.is-open {
		max-height: min(80vh, 520px);
		overflow-y: auto;
		padding: 10px 0;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		-webkit-overflow-scrolling: touch;
	}

	.fp-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		height: auto;
	}

	.fp-menu li {
		width: 100%;
		margin: 0;
		border-bottom: 1px solid rgba(229, 221, 211, 0.75);
	}

	.fp-menu li:last-child {
		border-bottom: none;
	}

	.fp-menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 54px;
		padding: 14px 20px;
		box-sizing: border-box;
		font-family: var(--fp-font-ja);
		font-size: 15px;
		font-weight: 500;
		line-height: 1.55;
		letter-spacing: 0.05em;
		color: var(--fp-text);
		transition: background 0.2s ease, color 0.2s ease;
	}

	.fp-menu a::after {
		content: "";
		flex-shrink: 0;
		width: 7px;
		height: 7px;
		margin-top: 1px;
		border-top: 1.5px solid rgba(122, 31, 46, 0.35);
		border-right: 1.5px solid rgba(122, 31, 46, 0.35);
		transform: rotate(45deg);
	}

	.fp-menu a:hover,
	.fp-menu a:focus-visible {
		background: var(--fp-cream);
		color: var(--fp-red);
		opacity: 1;
	}

	.fp-menu .current-menu-item > a,
	.fp-menu .current_page_item > a {
		background: rgba(122, 31, 46, 0.05);
		color: var(--fp-red);
		font-weight: 600;
	}

	.fp-menu .current-menu-item > a::after,
	.fp-menu .current_page_item > a::after {
		border-color: var(--fp-red);
	}

	.fp-hero {
		top: 0;
		margin-top: 0;
		padding-top: 0;
	}

	.fp-hero__collage {
		--fp-hero-gap: 6px;
		--fp-hero-banner-h: clamp(240px, 58vw, 300px);
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows:
			var(--fp-hero-banner-h)
			minmax(196px, 50vw)
			minmax(104px, 27vw)
			minmax(88px, 23vw);
		width: 100%;
		max-width: none;
		height: auto;
		min-height: 0;
		margin: 0;
		padding: 0 6px 8px;
		gap: var(--fp-hero-gap);
		background: var(--fp-white);
		box-sizing: border-box;
	}

	.fp-hero__cell {
		border-radius: 10px;
		min-height: 0;
	}

	/* 上段バナー：hero-03 ＋ MUSUBIME */
	.fp-hero__cell--hero-03 {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	/* 2列マasonry（段差あり） */
	.fp-hero__cell--hero-04 {
		grid-column: 1;
		grid-row: 2;
	}

	.fp-hero__cell--hero-05 {
		grid-column: 2;
		grid-row: 2;
	}

	.fp-hero__cell--hero-01 {
		grid-column: 1;
		grid-row: 3;
	}

	.fp-hero__cell--hero-06 {
		grid-column: 2;
		grid-row: 3;
	}

	.fp-hero__cell--hero-02 {
		grid-column: 1;
		grid-row: 4;
	}

	.fp-hero__cell--hero-07 {
		grid-column: 2;
		grid-row: 4;
	}

	.fp-hero__cell--hero-03 .fp-hero__img {
		object-position: center 28%;
	}

	.fp-hero__cell--hero-04 .fp-hero__img {
		object-position: center top;
	}

	.fp-hero__cell--hero-05 .fp-hero__img {
		object-position: center center;
	}

	.fp-hero__cell--hero-01 .fp-hero__img {
		object-position: center top;
	}

	.fp-hero__cell--hero-06 .fp-hero__img {
		object-position: center center;
	}

	.fp-hero__cell--hero-02 .fp-hero__img {
		object-position: center center;
	}

	.fp-hero__cell--hero-07 .fp-hero__img {
		object-position: center top;
	}

	.fp-hero__collage > .fp-hero__overlay {
		display: flex;
		left: 6px;
		right: 6px;
		top: 0;
		bottom: auto;
		height: var(--fp-hero-banner-h);
		justify-content: center;
		transform: translateY(clamp(24px, 7vw, 36px));
	}

	.fp-hero__logo-text {
		font-size: clamp(36px, 9.5vw, 46px);
		color: var(--fp-white);
	}

	.fp-hero__logo-sub {
		font-size: clamp(14px, 3.8vw, 17px);
		color: var(--fp-white);
	}

	.fp-hero__below {
		display: none;
	}

	.fp-hero__float {
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: none;
		padding: 0 0 env(safe-area-inset-bottom, 0px);
	}

	.fp-hero__float-panel--desktop {
		display: none;
	}

	.fp-hero__float-panel--mobile {
		display: flex;
		flex-direction: row;
		align-items: stretch;
		justify-content: stretch;
		width: 100%;
		gap: 0;
		background: var(--fp-white);
		box-shadow: 0 -1px 0 var(--fp-border);
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-content,
	.fp-hero__float-panel--mobile .fp-hero__book-content {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-globe,
	.fp-hero__float-panel--mobile .fp-hero__lang-chevron {
		flex-shrink: 0;
		display: block;
		color: var(--fp-red);
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-label {
		font-family: var(--fp-font-ja);
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0.02em;
		color: var(--fp-red);
	}

	.fp-hero__float-panel--mobile .fp-hero__book-label {
		font-family: var(--fp-font-ja);
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 0.04em;
		color: var(--fp-white);
		white-space: nowrap;
	}

	.fp-hero__float-panel--mobile .fp-hero__book-content {
		position: relative;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang,
	.fp-hero__float-panel--mobile .fp-hero__book {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 56px;
		padding: 0;
		margin: 0;
		border: none;
		border-radius: 0;
		line-height: 1;
		cursor: pointer;
		text-decoration: none;
		transform: none;
		transition: opacity 0.2s ease;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-switcher {
		flex: 0 0 40%;
		align-self: stretch;
		display: flex;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-switcher .fp-hero__lang {
		flex: 1 1 auto;
		width: 100%;
		padding: 0 12px;
		background: var(--fp-white);
		border-top: 1px solid var(--fp-border);
		border-left: 1px solid var(--fp-border);
	}

	.fp-hero__float-panel--mobile .fp-hero__book {
		flex: 1 1 60%;
		align-self: stretch;
		padding: 0 40px 0 16px;
		background: var(--fp-accent);
		position: relative;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-content {
		gap: 6px;
	}

	.fp-hero__float-panel--mobile .fp-hero__book-arrow {
		position: absolute;
		right: 14px;
		top: 50%;
		width: 9px;
		height: 9px;
		border-top: 1.5px solid var(--fp-white);
		border-right: 1.5px solid var(--fp-white);
		transform: translateY(-50%) rotate(45deg);
	}

	.fp-hero__float-panel--mobile .fp-hero__lang:hover,
	.fp-hero__float-panel--mobile .fp-hero__book:hover {
		opacity: 1;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang:active,
	.fp-hero__float-panel--mobile .fp-hero__book:active {
		opacity: 0.88;
	}

	.fp-hero__float-panel--mobile .fp-hero__lang-menu {
		left: 8px;
		right: auto;
		min-width: 160px;
		bottom: calc(100% + 4px);
	}

	.fp-option__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fp-flow__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fp-flow__item {
		padding: 18px 16px;
		gap: 14px;
	}

	.fp-flow__badge {
		width: 64px;
		height: 64px;
	}

	.fp-flow__badge-num {
		font-size: 22px;
	}

	.fp-flow__pattern {
		opacity: 0.4;
	}

	.fp-why {
		padding: 64px 0 72px;
	}

	.fp-why__intro {
		max-width: 100%;
		margin-bottom: 40px;
		font-size: 13px;
		line-height: 1.85;
	}

	.fp-why__list {
		flex-direction: column;
		align-items: center;
		gap: 36px;
	}

	.fp-why__item,
	.fp-why__item--low {
		flex: none;
		width: 100%;
		max-width: 280px;
		margin-top: 0;
	}

	.fp-why__visual {
		width: 200px;
		height: 200px;
		margin-bottom: 18px;
	}

	.fp-why__dots {
		width: 170px;
		height: 170px;
	}

	.fp-why__title {
		font-size: 14px;
	}

	.fp-insta__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.fp-store__frame {
		padding: 32px 18px 24px;
	}

	.fp-store__row {
		grid-template-columns: 1fr;
		gap: 6px 0;
	}

	.fp-store__row dt {
		padding-right: 0;
		border-right: none;
		padding-bottom: 4px;
	}

	.fp-store__photos {
		gap: 10px;
	}

	.fp-store__pattern {
		opacity: 0.45;
	}

	.fp-gallery {
		--fp-gallery-duration: 70s;
		padding-bottom: 64px;
	}

	.fp-gallery__item--hero {
		width: 240px;
	}

	.fp-gallery__item--hero .fp-gallery__img {
		height: 320px;
	}

	.fp-gallery__item--a,
	.fp-gallery__item--b,
	.fp-gallery__item--c,
	.fp-gallery__item--d,
	.fp-gallery__item--e,
	.fp-gallery__item--f,
	.fp-gallery__item--g {
		width: 180px;
		margin-top: 24px;
	}

	.fp-gallery__item--a .fp-gallery__img,
	.fp-gallery__item--b .fp-gallery__img,
	.fp-gallery__item--c .fp-gallery__img,
	.fp-gallery__item--d .fp-gallery__img,
	.fp-gallery__item--e .fp-gallery__img,
	.fp-gallery__item--f .fp-gallery__img,
	.fp-gallery__item--g .fp-gallery__img {
		height: 220px;
	}

	.fp-gallery__deco--asanoha {
		width: 180px;
		height: 180px;
		opacity: 0.25;
	}

	.fp-gallery__deco--yagasuri {
		width: 220px;
		height: 140px;
		opacity: 0.25;
	}

	.fp-faq {
		padding: 64px 0 72px;
	}

	.fp-faq__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fp-faq__side {
		min-height: 0;
	}

	.fp-faq__head {
		margin-bottom: 24px;
	}

	.fp-faq__btn {
		margin-top: 0;
	}

	.fp-faq__question {
		padding: 16px 16px;
		font-size: 13px;
	}

	.fp-faq__answer {
		padding: 0 16px 16px;
	}

	.fp-faq__deco--left {
		width: 160px;
		height: 160px;
		opacity: 0.22;
	}

	.fp-faq__deco--right {
		width: 180px;
		height: 120px;
		opacity: 0.2;
	}

	.fp-main--photo {
		padding-top: 0;
	}

	.fp-photo-plan {
		padding: 48px 0 80px;
	}

	.fp-photo-plan__head {
		margin-bottom: 28px;
	}

	.fp-photo-plan__title {
		font-size: clamp(24px, 6.5vw, 32px);
	}

	.fp-photo-plan__table th,
	.fp-photo-plan__table td {
		padding: 12px 10px;
		font-size: 12px;
	}

	.fp-photo-plan__table-note {
		margin-bottom: 28px;
		font-size: 12px;
	}

	.fp-photo-plan__photos {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 40px;
	}

	.fp-photo-plan__photo-img {
		min-height: 200px;
	}

	.fp-photo-plan__notices-title {
		margin-bottom: 20px;
		font-size: 20px;
	}

	.fp-photo-plan__notices-body {
		gap: 16px;
	}

	.fp-main--legal {
		padding-top: 0;
	}

	.fp-legal {
		padding: 48px 0 80px;
	}

	.fp-legal__head {
		margin-bottom: 32px;
	}

	.fp-legal__title {
		font-size: clamp(22px, 6vw, 30px);
		letter-spacing: 0.08em;
	}

	.fp-legal__row {
		grid-template-columns: 1fr;
	}

	.fp-legal__label,
	.fp-legal__value {
		padding: 16px 4px;
		font-size: 13px;
	}

	.fp-legal__label {
		justify-content: flex-start;
		padding-bottom: 8px;
		text-align: left;
		border-bottom: none;
	}

	.fp-legal__value {
		padding-top: 0;
		padding-bottom: 20px;
	}

	.fp-main--privacy {
		padding-top: 0;
	}

	.fp-privacy {
		padding: 48px 0 80px;
	}

	.fp-privacy__head {
		margin-bottom: 32px;
	}

	.fp-privacy__title {
		font-size: clamp(22px, 6vw, 30px);
		letter-spacing: 0.08em;
	}

	.fp-privacy__section + .fp-privacy__section {
		margin-top: 32px;
	}

	.fp-privacy__heading {
		margin-bottom: 12px;
		font-size: 15px;
	}

	.fp-privacy__text,
	.fp-privacy__detail-label,
	.fp-privacy__detail-value {
		font-size: 13px;
	}

	.fp-privacy__note {
		font-size: 12px;
	}

	.fp-privacy__detail {
		grid-template-columns: 1fr;
		gap: 4px;
		margin-bottom: 16px;
	}

	.fp-main--page {
		padding-top: 0;
	}

	.fp-page-content {
		padding: 48px 0 80px;
	}

	.fp-page-content__head {
		margin-bottom: 28px;
	}

	.fp-page-content__title {
		font-size: clamp(22px, 6vw, 30px);
		letter-spacing: 0.08em;
	}

	.fp-page-content__body {
		font-size: 13px;
	}

	.fp-footer {
		padding: 56px 0 48px;
	}

	.fp-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px 24px;
	}

	.fp-footer__brand {
		grid-column: 1 / -1;
	}

	.fp-footer__nav--menu {
		grid-column: 1 / -1;
	}

	.fp-footer__nav--menu .fp-footer__menu,
	.fp-footer__menu-wrap .fp-footer__menu {
		gap: 12px 24px;
	}

	.fp-footer__social {
		grid-column: 1 / -1;
	}
}

/* Nav toggle (shared) */
.fp-body .nav-toggle {
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.fp-body .nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--fp-text);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.fp-body .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.fp-body .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.fp-body .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Override base theme on front */
.fp-body .site--front {
	min-height: 100vh;
}

.fp-main {
	padding: 0;
}
