/* ============================================================================
   FFF Animations
   ・背景色を paper に統一
   ・スクロールフェードイン
   ・ヒーロー文字のフェードアップ
   ・カードのホバー浮き上がり
   ・SVG 線アニメ（separator が中央から左右に伸びる）
   ・ボタン・リンクの hover transition
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. 背景：真っ白 + Customizer 背景画像を非表示
   ---------------------------------------------------------------------------- */

html,
body {
	background-color: #FFFFFF !important;
	background-image: none !important;
}

/* ============================================================
   News Topics セクション（ヒーロー直下、全幅）
   背景は WebP 画像（引き裂きエッジ込み）
   - 画像の引き裂き部分（白）を避けて中央の dark area にコンテンツを配置
   - padding は torn edge の高さぶん必要
   ============================================================ */
.fff-news {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-color: transparent;
	background-image: url('../assets/backgrounds/news-topics-bg.webp');
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	color: rgba(255, 255, 255, 0.95);
	/* PC: 引き裂きエッジ部分（約 15%）を避けて中央に配置 */
	padding: 4.5rem 0 4rem;
	z-index: 2;
}

/* APPROACH セクション（news の直後）の上余白を控えめに */
body.home .fff-about-section--approach,
body.page-id-543 .fff-about-section--approach {
	padding-top: 2.5rem !important;
}

/* ============================================================
   About ページ用セクション見出し（英eyebrow + 日本語h2）
   ============================================================ */
.fff-about-heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(1rem, 2vw, 1.5rem);
	border-bottom: 1.5px solid #0a0a0a;
}

.fff-about-heading__en {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: #0a0a0a;
	color: #ffffff;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: clamp(0.75rem, 0.9vw, 0.88rem);
	letter-spacing: 0.22em;
}

.fff-about-heading__ja {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	letter-spacing: 0.06em;
	line-height: 1.4;
	color: #0a0a0a;
}

@media (max-width: 768px) {
	.fff-about-heading {
		gap: 0.5rem;
	}
	.fff-about-heading__en {
		font-size: 0.7rem;
		padding: 0.35rem 0.85rem;
		letter-spacing: 0.18em;
	}
	.fff-about-heading__ja {
		font-size: clamp(1.4rem, 5vw, 1.9rem);
	}
}

/* ============================================================
   ABOUT ページ：方眼背景（常時表示・デザイン基準線）
   page-id-301（About）のみ：装飾縦ラインを消して真っ白＋うっすら方眼
   全デバイス共通：8列の正方形マス（必要に応じて個別調整）。
   ============================================================ */
body.page-id-301 .fff-global-bg,
body.page-id-301 .fff-global-bg__grid,
body.page-id-301 .fff-global-bg__overlay {
	display: none !important;
}

body.page-id-301 {
	position: relative;
	isolation: isolate;
	background-color: #ffffff !important;
}

body.page-id-301::before {
	content: '';
	position: absolute;
	top: 70px;  /* ヘッダー高さ分を除外 */
	left: 0;
	width: calc(100vw - 78px);  /* 右側のサイドレール分だけ除いた全幅 */
	height: calc(100% - 70px);
	min-height: calc(100vh - 70px);
	pointer-events: none;
	z-index: -1;
	box-sizing: border-box;
	--grid-col: calc((100vw - 78px) / 8);
	--grid-thickness: 6px;
	--grid-color: rgba(184, 148, 95, 0.14);
	background-image:
		linear-gradient(to right, var(--grid-color) var(--grid-thickness), transparent var(--grid-thickness)),
		linear-gradient(to bottom, var(--grid-color) var(--grid-thickness), transparent var(--grid-thickness));
	background-size: var(--grid-col) var(--grid-col);
	/* 右端・下端の縦横線は box-shadow inset で描画（border より box-sizing に影響しない） */
	box-shadow:
		inset calc(-1 * var(--grid-thickness)) 0 0 var(--grid-color),
		inset 0 calc(-1 * var(--grid-thickness)) 0 var(--grid-color);
}

/* スマホ：方眼を 4列に、grid のブロックを PC のサイズ比率保ったまま縦積み（画面全幅） */
@media (max-width: 600px) {
	body.page-id-301::before {
		width: 100vw;
		--grid-col: calc(100vw / 4);
	}
	.fff-philosophy-grid {
		display: flex !important;
		flex-direction: column !important;
		aspect-ratio: auto !important;
		gap: 0 !important;
		width: 100vw !important;
		max-width: 100vw !important;
		margin-left: calc(50% - 50vw) !important;
	}
	.fff-philosophy-block {
		width: 100% !important;
		min-height: auto !important;
		box-sizing: border-box !important;
	}
	/* PC のマス数（横×縦）= aspect-ratio で再現（width: 100vw に対して縦が決まる） */
	.fff-philosophy-block--title    { aspect-ratio: 3 / 2; }  /* 3×2 */
	.fff-philosophy-block--intro    { aspect-ratio: 4 / 2; }  /* 4×2 */
	.fff-philosophy-block--purpose  { aspect-ratio: 4 / 2; }  /* 4×2 */
	.fff-philosophy-block--mission  { aspect-ratio: 2 / 3; }  /* 2×3 縦長 */
	.fff-philosophy-block--vision   { aspect-ratio: 2 / 2; }  /* 2×2 正方形 */
	.fff-philosophy-block--value    { aspect-ratio: 5 / 2; }  /* 5×2 */
	.fff-philosophy-deco {
		display: none !important;
	}
}

/* ============================================================
   PHILOSOPHY GRID（企業理念セクション：8×9 のマス目グリッド配置）
   ============================================================ */
/* 親セクションの has-global-padding を相殺（grid を画面左端まで戻すために必要） */
body.page-id-301 .fff-about-section--company {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* グリッドだけ親のコンテナ幅を突き破って画面の全幅に配置 */
.fff-philosophy-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(9, 1fr);
	aspect-ratio: 8 / 9;
	gap: 0;
	position: relative;
	/* width は viewport 幅 - 右サイドレール分。
	   margin-left: calc(50% - 50vw) で「親要素の中央 から viewport の左端まで戻る」、
	   結果 grid の左端 = viewport の 0px に貼り付く */
	width: calc(100vw - 78px) !important;
	max-width: calc(100vw - 78px) !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: 0 !important;
	margin-top: clamp(2rem, 4vw, 3rem) !important;
}

/* コンテンツブロック共通 */
.fff-philosophy-block {
	border: 1.5px solid #0a0a0a;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(0.6rem, 1.2vw, 1.2rem);
	text-align: center;
	position: relative;
	z-index: 2;
}

.fff-philosophy-block__label {
	margin: 0;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: clamp(0.9rem, 1.5vw, 1.3rem);
	letter-spacing: 0.1em;
	color: #0a0a0a;
}

.fff-philosophy-block__eyebrow {
	margin: 0 0 0.4rem;
	font-family: 'Inter', sans-serif;
	font-size: clamp(0.6rem, 0.8vw, 0.78rem);
	letter-spacing: 0.18em;
	color: #b8945f;
}

.fff-philosophy-block__title {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	letter-spacing: 0.08em;
	color: #0a0a0a;
}

.fff-philosophy-block__placeholder {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(0.85rem, 1.2vw, 1rem);
	color: #888888;
	letter-spacing: 0.05em;
}

/* 各ブロックの位置（縦行 / 横列） */
.fff-philosophy-block--title    { grid-row: 1 / 3;  grid-column: 1 / 4; }
.fff-philosophy-block--intro    { grid-row: 2 / 4;  grid-column: 4 / 8; }
.fff-philosophy-block--purpose  { grid-row: 4 / 6;  grid-column: 2 / 6; }
.fff-philosophy-block--mission  { grid-row: 4 / 7;  grid-column: 6 / 8; }
.fff-philosophy-block--vision   { grid-row: 6 / 8;  grid-column: 3 / 5; }
.fff-philosophy-block--value    { grid-row: 8 / 10; grid-column: 3 / 8; }

/* 黒ベタ塗り装飾（背面） */
.fff-philosophy-deco {
	background: #0a0a0a;
	z-index: 1;
}
.fff-philosophy-deco--1 { grid-row: 1 / 2;  grid-column: 6 / 9; }  /* 右上 */
.fff-philosophy-deco--2 { grid-row: 3 / 4;  grid-column: 1 / 3; }  /* タイトル直下・左 */
.fff-philosophy-deco--3 { grid-row: 5 / 7;  grid-column: 8 / 9; }  /* 右中（Mission右） */
.fff-philosophy-deco--4 { grid-row: 7 / 8;  grid-column: 5 / 9; }  /* Mission下 */
.fff-philosophy-deco--5 { grid-row: 8 / 10; grid-column: 1 / 3; }  /* 左下（Value左） */

/* CONNECT セクション：横幅を広げて中のフォームを大きく見せる */
body.home .fff-about-section--connect,
body.page-id-543 .fff-about-section--connect {
	padding-left: clamp(0.5rem, 2vw, 1.5rem) !important;
	padding-right: clamp(0.5rem, 2vw, 1.5rem) !important;
}
.fff-about-section--connect > .fff-contact {
	max-width: 1400px !important;
}
/* タブレット / モバイル */
@media (max-width: 1024px) {
	.fff-demand {
		padding: 6rem 0 5rem;
	}
	.fff-demand__sublead {
		margin-bottom: 4rem;
	}
	.fff-demand__blocks {
		gap: 3.5rem;
	}
}

@media (max-width: 768px) {}

/* ============================================================
   VOICES セクション（共感ブロック）
   トピックスと APPROACH の間に挿入：お悩み + データで共感を引き出す
   ============================================================ */
.fff-about-section--voices {
	text-align: center;
}
/* WP constrained レイアウトの content-size 制約を上書き
   voices セクションの直接子要素を 1440px までに */
.fff-about-section--voices > * {
	max-width: 1440px !important;
}
/* === アニメーション A：イラストふわふわ呼吸（強め） === */
@keyframes fff-voice-float {
	0%, 100% { transform: translateY(0)    rotate(0deg); }
	33%      { transform: translateY(-10px) rotate(-0.6deg); }
	66%      { transform: translateY(-6px)  rotate(0.6deg); }
}
/* === アニメーション B：ホバーリフト（PC のみ） === */
@media (hover: hover) and (pointer: fine) {
	.fff-voice-card {
		transition: transform 0.4s cubic-bezier(0.25, 0.85, 0.3, 1),
		            box-shadow 0.4s ease,
		            border-color 0.4s ease;
	}
	.fff-voice-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(20, 20, 22, 0.08);
		border-color: rgba(184, 148, 95, 0.4);
	}
}
@media (prefers-reduced-motion: reduce) {}
.fff-voice-stat {
	text-align: center;
	padding: 0 1rem;
	position: relative;
}

.fff-voice-stat:not(:first-child)::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background: rgba(184, 148, 95, 0.25);
}

.fff-voice-stat__num {
	font-family: 'Playfair Display', 'Cormorant Garamond', serif;
	font-size: clamp(3.4rem, 6vw, 5.2rem);
	font-weight: 900;
	color: #141414;
	line-height: 1;
	margin: 0;
	letter-spacing: -0.02em;
}

.fff-voice-stat__unit {
	font-size: 0.5em;
	margin-left: 0.05em;
	color: var(--wp--preset--color--gold, #B8945F);
	font-weight: 700;
	vertical-align: 0.15em;
}

.fff-voice-stat__label {
	font-size: 0.84rem;
	margin: 0.7rem 0 0;
	color: rgba(20, 20, 22, 0.7);
	line-height: 1.65;
	letter-spacing: 0.04em;
}
/* ============================================================
   CONTEXT セクション（暗色） — 時代の文脈 4 cards
   違和感ブロック（白）の下に配置。dark bg で印象を引き締める
   上端には白い下向き三角ノッチで境界をアクセント
   ============================================================ */
.fff-context {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-color: #0E0E0E;
	color: rgba(255, 255, 255, 0.92);
	/* voices の高さに合わせて余白を増やす */
	padding: 7.5rem 0 7rem;
	z-index: 2;
}

/* 上端の白い下向き三角ノッチ（白セクションから dark に poke down） */
.fff-context__notch {
	position: absolute;
	top: -1px;               /* 1px 重ねて隙間防止 */
	left: 50%;
	transform: translateX(-50%);
	width: clamp(80px, 9vw, 130px);
	height: clamp(28px, 3vw, 42px);
	background: #FFFFFF;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
	pointer-events: none;
}

.fff-context__inner {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	/* padding を 0 に — voices と同じ実効幅 1440px にするため */
	padding: 0;
	text-align: center;
	box-sizing: border-box;
}

.fff-context__lead {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 5.5rem;
}

.fff-context__lead-accent {
	color: var(--wp--preset--color--gold, #C9AC72);
	display: inline-block;
}

/* ============================================================
   CONTEXT タイムライン（縦） — 参照画像のノード + 細線パスを再現
   左に金の点線が縦に走り、各ステップに波紋ノードが並ぶ
   ============================================================ */
.fff-context__timeline {
	position: relative;
	max-width: 880px;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem 0 calc(90px + 1.5rem);
	box-sizing: border-box;
	text-align: left;
}

/* 縦のガイドライン（金の点線、上下にフェード） */
.fff-context__timeline::before {
	content: '';
	position: absolute;
	left: calc(1.5rem + 27px);
	top: 14px;
	bottom: 14px;
	width: 1px;
	background-image: linear-gradient(
		to bottom,
		rgba(200, 168, 110, 0.45) 50%,
		transparent 50%
	);
	background-size: 1px 7px;
	background-repeat: repeat-y;
}
/* PC のみ改行を有効化（モバイルでは br を消す） */
.fff-br-pc { display: inline; }
/* ---- タブレット / モバイル ---- */
@media (max-width: 720px) {
	.fff-context__timeline {
		padding: 0 0 0 60px;
	}

	.fff-context__timeline::before {
		left: 18px;
	}

	.fff-context-step {
		padding-bottom: 3.5rem;
	}

	.fff-context-step__node {
		left: -47px;
		width: 8px;
		height: 8px;
	}

	.fff-context-step__node::before {
		width: 22px;
		height: 22px;
	}

	.fff-context-step__node::after {
		width: 36px;
		height: 36px;
	}

	.fff-context-step--gold .fff-context-step__node {
		width: 10px;
		height: 10px;
	}

	.fff-context-step__title {
		font-size: 1.25rem;
	}

	.fff-context-step__desc {
		font-size: 0.93rem;
	}

	.fff-br-pc { display: none; }
}

/* 4 つのコンテキストカード — 4 列横並び */
.fff-context__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}
/* タブレット — 2 列 × 2 行（PC と同じ） */
@media (max-width: 1024px) {
	.fff-context__cards {
		grid-template-columns: repeat(2, 1fr);
		max-width: none;
		width: 100%;
		gap: 1.8rem 1.6rem;
	}
	.fff-context__inner {
		padding: 0 1.2rem;
	}
}

/* モバイル */
@media (max-width: 768px) {
	.fff-context {
		padding: 5.5rem 0 5rem;
	}
	.fff-context__inner {
		padding: 0 1.2rem;
	}
	.fff-context__lead {
		font-size: 1.3rem;
		line-height: 1.75;
		margin-bottom: 3.5rem;
	}
	.fff-context__cards {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-width: none;
		width: 100%;
		margin-bottom: 0;
	}
	.fff-context-card {
		padding: 1.3rem 1.2rem 1.5rem;
	}
	.fff-context-card__title {
		font-size: 1.2rem;
	}
	.fff-context-card__desc {
		font-size: 0.95rem;
	}
}
/* タブレット — 2×2 グリッド */
@media (max-width: 1024px) {
	.fff-voices__worries {
		gap: 1.5rem;
	}
	.fff-voices__worries--four {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.4rem;
	}
}

/* モバイル — 1 列スタック */
@media (max-width: 768px) {
	.fff-voices__lead {
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}
	.fff-voices__worries {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 3rem;
	}
	.fff-voices__worries--four {
		grid-template-columns: 1fr !important;
		gap: 1rem;
		max-width: 100vw !important;
		padding: 0 1.2rem;
	}
	.fff-voice-card {
		padding: 1.3rem 1.2rem;
	}
	.fff-voice-card__icon {
		width: 44px;
		height: 44px;
		margin-bottom: 0.9rem;
	}
	.fff-voice-card__image {
		/* モバイルでも card 幅いっぱい使う（context と統一） */
		margin: 0 auto 1rem;
	}
	.fff-voice-card__lead {
		font-size: 1rem;
	}
	.fff-voice-card__desc {
		font-size: 0.95rem;
	}
	.fff-voices__stats-divider {
		margin: 3rem auto 2rem;
		gap: 1rem;
	}
	.fff-voices__stats {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}
	.fff-voice-stat:not(:first-child)::before {
		display: none;
	}
	.fff-voice-stat:not(:first-child) {
		padding-top: 1.8rem;
		border-top: 1px solid rgba(184, 148, 95, 0.2);
	}
}

.fff-news__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(2rem, 7vw, 7rem);
	display: grid;
	grid-template-columns: clamp(90px, 11vw, 150px) 1fr;
	gap: clamp(4rem, 10vw, 9rem);
	align-items: center;
}

/* 左カラム：NEWS アートタイポ画像 */
img.fff-news__art {
	display: block;
	width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
	object-position: center;
}

/* SEO/アクセシビリティ用 h2 は視覚非表示 */
.fff-news__title--sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fff-news__body {
	min-width: 0;
}

/* 旧 NEWS eyebrow テキストは画像に置き換えたので非表示 */
.fff-news__inner > .fff-eyebrow.fff-section-heading {
	display: none;
}

.fff-news__title {
	font-family: 'Playfair Display', 'Cormorant Garamond', serif;
	font-size: clamp(1.4rem, 1.9vw, 2.1rem);
	font-weight: 500;
	letter-spacing: 0.02em;
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.2;
}

.fff-news__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fff-news__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.fff-news__item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
/* 最終アイテムの下線は削除（画像の引き裂きエリアに線が伸びるのを防ぐ） */
.fff-news__item:last-child {
	border-bottom: none;
}

.fff-news__link {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	column-gap: 1.5rem;
	row-gap: 0.4rem;
	padding: 1.1rem 0.5rem 1.1rem 0;
	text-decoration: none;
	color: inherit;
	position: relative;
	transition: opacity 0.25s ease;
}
.fff-news__link:hover {
	opacity: 0.75;
}

.fff-news__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.8rem;
	grid-column: 1;
	grid-row: 1;
}

.fff-news__date {
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.88);
}

.fff-news__tags {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.fff-news__tag {
	display: inline-block;
	padding: 0.15rem 0.65rem;
	font-size: 0.65rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 1rem;
	white-space: nowrap;
}

.fff-news__heading {
	grid-column: 1;
	grid-row: 2;
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(0.88rem, 1.05vw, 1rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.5;
}

.fff-news__arrow {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	font-family: 'Inter', sans-serif;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.6);
	transition: transform 0.3s ease, color 0.3s ease;
}

.fff-news__link:hover .fff-news__arrow {
	transform: translateX(6px);
	color: rgba(255, 255, 255, 0.95);
}

/* タブレット（769px〜1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
	.fff-news {
		padding: 4rem 0 3.6rem;
	}
	.fff-news__inner {
		grid-template-columns: 180px 1fr;
		gap: 2.5rem;
		padding: 0 2.5rem;
	}
	.fff-news__title {
		font-size: 1.7rem;
	}
	.fff-news__link {
		padding: 0.95rem 0;
	}
}

/* モバイル（〜768px）— 画像を圧縮せず、中央部分だけクロップして表示 */
@media (max-width: 768px) {
	.fff-news {
		/* 画像本来の比率を保ち、横は中央クロップ → ギザギザが自然 */
		background-size: auto 100%;
		background-position: center center;
		/* 引き裂きエッジが大きく見える分、padding をしっかり確保 */
		padding: 4rem 0 3.5rem;
	}
	.fff-news__inner {
		grid-template-columns: 100px 1fr;
		gap: 1.2rem;
		padding: 0 1.4rem;
	}
	.fff-news__art {
		max-height: 180px;
	}
	.fff-news__title {
		font-size: 1.3rem;
	}
	.fff-news__link {
		padding: 0.8rem 0;
		row-gap: 0.3rem;
	}
	.fff-news__heading {
		font-size: 0.88rem;
		line-height: 1.45;
	}
	.fff-news__date {
		font-size: 0.75rem;
	}
	.fff-news__tag {
		font-size: 0.6rem;
		padding: 0.12rem 0.55rem;
	}
	.fff-news__arrow {
		font-size: 1rem;
	}
}

.site,
#wrapper,
.entry-content,
.site-content {
	background-color: transparent !important;
}

/* ----------------------------------------------------------------------------
   1-1. セクション別の暗転オーバーレイ
   ・VALUE PROPOSITION セクションが視界に入ると、コンクリートテクスチャ + ダーク overlay が fixed で fade in
   ・スクロール離れたら fade out
   ・body に .fff-bg-valueprop が付与/外される（JS が制御）
   ---------------------------------------------------------------------------- */

.fff-global-bg__overlay {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
	background-image:
		linear-gradient(rgba(15, 15, 17, 0.78), rgba(15, 15, 17, 0.78)),
		url("https://blog.feelfreetofeeling.com/wp-content/uploads/2026/05/hero-stone-1.jpg");
	background-size: cover;
	background-position: center;
}

body.fff-bg-valueprop .fff-global-bg__overlay {
	opacity: 1;
}

/* VALUE PROPOSITION セクション内の要素を白に反転（暗転時の可読性） */
body.fff-bg-valueprop .fff-about-section--valueprop .fff-section-heading {
	color: #FFFFFF !important;
}

body.fff-bg-valueprop .fff-about-section--valueprop .fff-section-lead {
	color: #FFFFFF !important;
}

body.fff-bg-valueprop .fff-about-section--valueprop .fff-section-sublead {
	color: rgba(255, 255, 255, 0.78) !important;
}

/* 人型シルエットを白に */
body.fff-bg-valueprop .fff-iso-figure {
	color: #FFFFFF;
}

/* FFF Process ラベルもダーク背景上に対応 */
body.fff-bg-valueprop .fff-iso-process-label {
	background-color: rgba(255, 255, 255, 0.06) !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
	border-left-color: #B8945F !important;
	color: #FFFFFF !important;
}

body.fff-bg-valueprop .fff-iso-process-label > span {
	border-right-color: rgba(255, 255, 255, 0.2) !important;
}

/* スクロール進捗バー等の固定 UI も背景色に合わせて反転 */
body.fff-bg-valueprop .fff-scroll-progress {
	color: rgba(255, 255, 255, 0.7);
}

/* サイトロゴ「feel free to feeling」を常時白文字に（ヘッダー黒背景に合わせる） */
.site-title,
.brand,
.site-title-wrap {
	color: #FFFFFF !important;
}

/* ヒーローとヘッダーの間の白い隙間をなくす：
   Kadence のすべてのコンテンツラッパーから padding-top / margin-top を撤去し、
   article の白背景も透明にして、サイトの動的背景が透けるようにする */
#inner-wrap.wrap,
#primary.content-area,
#main.site-main,
.content-container.site-container,
.content-wrap,
article.entry,
article.entry.content-bg,
.entry-content-wrap,
.entry-content.single-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
	background-color: transparent !important;
}

/* ヒーロー自身の上 margin もリセット */
.page .fff-about-hero,
.fff-about-hero {
	margin-top: 0 !important;
}

/* ----------------------------------------------------------------------------
   1-2. 全ページ共通の動的ベース背景（グリッド + 動く円）
   ・body 直下に固定配置（fixed）
   ・スクロールしても動かない、円は CSS animation で浮遊
   ・コンテンツの下層 (z-index: 0)、本文は relative + z-index 1 で上に
   ---------------------------------------------------------------------------- */

.fff-global-bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

/* 縦線のみのグリッド。News Topics の dark bg と white bg どちらでも見えるように
   dual-layer（暗線 + 明線）で構成 → 白い背景には暗線、黒い背景には明線が浮き出る */
.fff-global-bg__grid {
	position: fixed;
	inset: 0;
	z-index: 3;             /* news section (z-index 2) の上 / rail (65) より下 */
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(22, 22, 23, 0.24) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
	background-size: 160px 100%, 160px 100%;
	background-position: 0 0, 0 0;
}

/* 浮遊する大きな円（ぼかしなし、控えめに） */
.fff-global-bg__orb {
	position: absolute;
	border-radius: 50%;
	will-change: transform;
	display: none; /* ぼかし円は廃止 */
}

.fff-global-bg__orb--1 {
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(60, 60, 60, 0.16), transparent 70%);
	top: -10%;
	left: -10%;
	animation: fff-bg-orb-1 32s ease-in-out infinite;
}

.fff-global-bg__orb--2 {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(50, 50, 50, 0.1), transparent 70%);
	top: 40%;
	right: -15%;
	animation: fff-bg-orb-2 38s ease-in-out infinite;
}

.fff-global-bg__orb--3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(80, 80, 80, 0.12), transparent 70%);
	bottom: -10%;
	left: 30%;
	animation: fff-bg-orb-3 42s ease-in-out infinite;
}

.fff-global-bg__orb--4 {
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(100, 100, 100, 0.1), transparent 70%);
	top: 20%;
	left: 50%;
	animation: fff-bg-orb-4 36s ease-in-out infinite;
}

@keyframes fff-bg-orb-1 {
	0%, 100% { transform: translate(0, 0); }
	33%      { transform: translate(120px, 60px); }
	66%      { transform: translate(60px, 180px); }
}

@keyframes fff-bg-orb-2 {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(-100px, -80px); }
}

@keyframes fff-bg-orb-3 {
	0%, 100% { transform: translate(0, 0); }
	25%      { transform: translate(80px, -60px); }
	50%      { transform: translate(160px, -100px); }
	75%      { transform: translate(60px, -40px); }
}

@keyframes fff-bg-orb-4 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(-80px, 100px) scale(1.1); }
}

/* コンテンツは背景レイヤーより上に */
.site,
#wrapper,
.site-content,
.entry-content,
header#masthead,
footer#colophon,
.fff-footer {
	position: relative;
	z-index: 1;
}

/* セクションをフル幅にする設定は維持（背景画像なしでもレイアウト保つため） */
.fff-about-hero,
.fff-about-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: clamp(1.25rem, 5vw, 4rem) !important;
	padding-right: clamp(1.25rem, 5vw, 4rem) !important;
}

.fff-about-hero > *,
.fff-about-section > * {
	max-width: 1100px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* カード内の「→」リンク：ゴールドの細枠ボタンとして主張 */
.fff-about-section .fff-card-link {
	margin-top: 1.2rem !important;
}
.fff-about-section .fff-card-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	text-decoration: none;
	padding: 0.65em 1.1em;
	border: 1px solid #B8945F;
	background-color: transparent;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.fff-about-section .fff-card-link a:hover,
.fff-about-section .fff-card-link a:focus-visible {
	background-color: #B8945F;
	color: #ffffff;
	transform: translateX(2px);
}

/* ダークカード（fff-card--dark）内の card-link は、暗背景に合わせて反転スタイル */
.fff-about-section .fff-card--dark .fff-card-link a,
.fff-about-section .fff-card-link--dark a {
	color: #FFFFFF;
	border-color: #B8945F;
}

.fff-about-section .fff-card--dark .fff-card-link a:hover,
.fff-about-section .fff-card-link--dark a:hover {
	background-color: #B8945F;
	color: #0F0F0F;
}

/* カード内のメタ情報リスト：対象/形式/料金などのキー＝バリュー */
.fff-about-section .fff-card .fff-card-meta {
	list-style: none;
	padding-left: 0 !important;
	margin: var(--wp--preset--spacing--s, 1rem) 0 0;
	border-top: 1px dashed rgba(37, 37, 37, 0.15);
	padding-top: 0.7rem !important;
}

.fff-about-section .fff-card--dark .fff-card-meta {
	border-top-color: rgba(255, 255, 255, 0.18);
}

.fff-about-section .fff-card .fff-card-meta li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 0.6rem;
	padding: 0.2rem 0;
}

.fff-about-section .fff-card .fff-card-meta strong {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.68rem !important;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #B8945F;
}

/* ============================================================================
   Programs ページ専用：4 ステップの流れ（縦並びアイソメ風カード）
   ============================================================================ */

.fff-program-flow {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
	max-width: 720px;
	counter-reset: flow-counter;
}
/* ============================================================================
   Programs ページ専用：FAQ アコーディオン（<details>/<summary>）
   ============================================================================ */

.fff-faq-list {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.fff-faq-item {
	border: 1px solid rgba(37, 37, 37, 0.18);
	background-color: #FFFFFF;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fff-faq-item[open] {
	border-color: #B8945F;
	box-shadow: 6px 6px 0 0 rgba(184, 148, 95, 0.5);
}

.fff-faq-item summary {
	cursor: pointer;
	padding: 1.2rem 1.5rem;
	font-size: clamp(0.98rem, 1.3vw, 1.1rem);
	font-weight: 600;
	color: #252525;
	letter-spacing: 0.02em;
	line-height: 1.5;
	list-style: none;
	display: flex;
	gap: 0.7rem;
	align-items: baseline;
	position: relative;
	padding-right: 3rem;
}

.fff-faq-item summary::-webkit-details-marker {
	display: none;
}

.fff-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 1.6rem;
	font-weight: 300;
	color: #B8945F;
	transition: transform 0.3s ease;
	line-height: 1;
}

.fff-faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.fff-faq-item__q {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #B8945F;
	flex-shrink: 0;
}

.fff-faq-item__a {
	padding: 0 1.5rem 1.4rem 1.5rem;
}

.fff-faq-item__a p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.78);
}

@media (max-width: 640px) {	.fff-faq-item summary {
		padding: 1rem 2.4rem 1rem 1.1rem;
		font-size: 0.95rem;
	}
	.fff-faq-item summary::after {
		right: 1rem;
	}
	.fff-faq-item__a {
		padding: 0 1.1rem 1.1rem 1.1rem;
	}
}

/* ============================================================================
   Insights ページ専用：UPCOMING（活動予定リスト） + VIDEO（動画カード）
   ============================================================================ */

/* セクション末尾の「すべての記事を見る →」など中央寄せCTA */
.fff-about-section .fff-section-cta a {
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.2em;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.fff-about-section .fff-section-cta a:hover,
.fff-about-section .fff-section-cta a:focus-visible {
	color: #8E6E40;
	border-bottom-color: #8E6E40;
}

/* ── UPCOMING リスト ────────────────────────────────────── */

.fff-upcoming-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 880px;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
}

.fff-upcoming-item {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 1.5rem;
	align-items: center;
	padding: 1.4rem 1.6rem;
	border: 1px solid #1A1A1A;
	background-color: #FFFFFF;
	box-shadow: 6px 6px 0 0 #B8945F;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fff-upcoming-item:hover {
	transform: translate(-2px, -2px);
	box-shadow: 8px 8px 0 0 #B8945F, 12px 12px 24px rgba(37, 37, 37, 0.1);
}

.fff-upcoming-item--soon {
	background-color: rgba(184, 148, 95, 0.05);
	box-shadow: 6px 6px 0 0 rgba(184, 148, 95, 0.4);
}

.fff-upcoming-item__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-right: 1px solid rgba(37, 37, 37, 0.35);
	min-width: 0;
	text-align: center;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
}

.fff-upcoming-item__month {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: rgba(37, 37, 37, 0.55);
	text-transform: uppercase;
}

.fff-upcoming-item__day {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: #252525;
	margin: 0.15rem 0;
}

.fff-upcoming-item--soon .fff-upcoming-item__day {
	font-size: 0.95rem;
	color: #B8945F;
}

.fff-upcoming-item__year {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: rgba(37, 37, 37, 0.4);
}

.fff-upcoming-item__body {
	min-width: 0;
}

.fff-upcoming-item__type {
	display: inline-block;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #B8945F;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}

.fff-upcoming-item__title {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	font-weight: 700;
	color: #252525;
	letter-spacing: 0.02em;
	line-height: 1.5;
	margin: 0 0 0.4rem 0;
}

.fff-upcoming-item__desc {
	font-size: 0.88rem;
	line-height: 1.75;
	color: rgba(37, 37, 37, 0.7);
	margin: 0 0 0.35rem 0;
}

.fff-upcoming-item__meta {
	font-size: 0.78rem;
	color: rgba(37, 37, 37, 0.55);
	letter-spacing: 0.04em;
	margin: 0;
}

.fff-upcoming-item__link {
	white-space: nowrap;
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	text-decoration: none;
	padding: 0.65em 1.1em;
	border: 1px solid #B8945F;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.fff-upcoming-item__link:hover,
.fff-upcoming-item__link:focus-visible {
	background-color: #B8945F;
	color: #FFFFFF;
}

.fff-upcoming-item__link--soon {
	color: rgba(184, 148, 95, 0.65);
	border-color: rgba(184, 148, 95, 0.4);
	pointer-events: none;
}

/* ── ブログ：カテゴリフィルタ + 縦長楕円画像のグリッドカード ─── */

.fff-blog-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	margin: var(--wp--preset--spacing--l, 3rem) 0 var(--wp--preset--spacing--m, 2rem);
}

.fff-blog-filter__btn {
	background-color: transparent;
	border: 1px solid rgba(37, 37, 37, 0.4);
	color: #252525;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: 0.85rem;
	padding: 0.55em 1.2em;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	letter-spacing: 0.04em;
}

.fff-blog-filter__btn:hover {
	border-color: #B8945F;
	color: #B8945F;
}

.fff-blog-filter__btn.is-active {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.fff-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 1.8rem;
	margin: 0 auto;
}

.fff-blog-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.fff-blog-card[hidden] {
	display: none !important;
}

.fff-blog-card:hover .fff-blog-card__image {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(37, 37, 37, 0.14);
}

.fff-blog-card:hover .fff-blog-card__title {
	color: #B8945F;
}

/* 縦長楕円のサムネ画像エリア */
.fff-blog-card__image {
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 50% / 40%;
	display: grid;
	place-items: center;
	color: #B8945F;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
	box-shadow: 0 4px 14px rgba(37, 37, 37, 0.06);
}

.fff-blog-card__image svg {
	width: 38%;
	height: auto;
}

/* カテゴリ別の背景パターン */
.fff-blog-card__image--emotion {
	background:
		radial-gradient(circle at 70% 30%, rgba(184, 148, 95, 0.16), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 240, 230, 1));
}
.fff-blog-card__image--decision {
	background:
		repeating-linear-gradient(35deg, rgba(184, 148, 95, 0.12) 0 1px, transparent 1px 22px),
		linear-gradient(160deg, rgba(245, 244, 240, 1), rgba(250, 250, 247, 1));
}
.fff-blog-card__image--self {
	background:
		radial-gradient(circle at center, transparent 18%, rgba(184, 148, 95, 0.10) 19%, transparent 22%, rgba(184, 148, 95, 0.08) 32%, transparent 34%, rgba(184, 148, 95, 0.06) 46%, transparent 48%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(250, 250, 247, 1));
}
.fff-blog-card__image--life {
	background:
		linear-gradient(45deg, rgba(184, 148, 95, 0.08) 0 50%, transparent 50% 100%),
		linear-gradient(135deg, rgba(250, 248, 244, 1), rgba(255, 255, 255, 0.9));
}

.fff-blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	align-items: center;
	text-align: center;
	padding: 0 0.5rem;
}

.fff-blog-card__cat {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-blog-card__title {
	font-size: 0.98rem;
	font-weight: 600;
	color: #252525;
	letter-spacing: 0.02em;
	line-height: 1.55;
	margin: 0;
	transition: color 0.25s ease;
}

.fff-blog-card__date {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	color: rgba(37, 37, 37, 0.5);
	letter-spacing: 0.08em;
	margin-top: 0.15rem;
}

@media (max-width: 900px) {
	.fff-blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.4rem;
	}
}

@media (max-width: 540px) {
	.fff-blog-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ── ビデオカルーセル ───────────────────────────────────── */

.fff-video-carousel {
	position: relative;
	margin: var(--wp--preset--spacing--l, 3rem) 0 0;
}

.fff-video-carousel__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	/* スクロールバーを完全に非表示 */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.fff-video-carousel__track::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

/* 1ページ = 3列×2段のグリッド。各ページが幅 100% でスナップ */
.fff-video-page {
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 1.6rem;
	padding: 0.5rem 0.25rem;
}

.fff-video-card {
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.18);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.fff-video-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(37, 37, 37, 0.1);
}

.fff-video-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(184, 148, 95, 0.18), rgba(37, 37, 37, 0.08)),
		repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 14px);
	display: grid;
	place-items: center;
}

.fff-video-card__thumb--alt {
	background:
		linear-gradient(135deg, rgba(37, 37, 37, 0.15), rgba(184, 148, 95, 0.18)),
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
}

.fff-video-card__play {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.95);
	color: #B8945F;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	padding-left: 0.2em;
	box-shadow: 0 6px 18px rgba(37, 37, 37, 0.18);
	transition: transform 0.3s ease;
}

.fff-video-card:hover .fff-video-card__play {
	transform: scale(1.1);
}

.fff-video-card__duration {
	position: absolute;
	right: 0.7rem;
	bottom: 0.7rem;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	color: #FFFFFF;
	background-color: rgba(15, 15, 17, 0.78);
	padding: 0.15rem 0.45rem;
	letter-spacing: 0.04em;
}

.fff-video-card__body {
	padding: 1.2rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.fff-video-card__type {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-video-card__title {
	font-size: clamp(1rem, 1.3vw, 1.1rem);
	font-weight: 600;
	color: #252525;
	letter-spacing: 0.02em;
	line-height: 1.55;
	margin: 0;
}

.fff-video-card__play {
	width: 60px;
	height: 60px;
}

/* カルーセル左右の矢印ボタン */
.fff-video-carousel__nav {
	position: absolute;
	top: calc(50% - 0.75rem);
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #FFFFFF;
	border: 1px solid #1A1A1A;
	color: #1A1A1A;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 2;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	box-shadow: 0 4px 14px rgba(37, 37, 37, 0.12);
}

.fff-video-carousel__nav:hover {
	background-color: #1A1A1A;
	color: #FFFFFF;
}

.fff-video-carousel__nav--prev {
	left: -22px;
}

.fff-video-carousel__nav--next {
	right: -22px;
}

@media (max-width: 960px) {
	.fff-video-page {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, auto);
		gap: 1.2rem;
	}
}

@media (max-width: 720px) {
	/* スマホ：1 ページ目（6 個）だけを縦並びで表示。2 ページ目以降は非表示 */
	.fff-video-carousel__nav { display: none; }
	.fff-video-carousel__track {
		flex-direction: column;
		overflow-x: visible;
		scroll-snap-type: none;
		gap: 1rem;
	}
	.fff-video-page {
		flex: 0 0 auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 1rem;
	}
	.fff-video-page:nth-of-type(n+2) {
		display: none;
	}
}

/* ── SNS グリッド ───────────────────────────────────── */

/* 5 カードを 3+2 の 2 段に配置（2 段目は中央寄せ） */
.fff-sns-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.4rem;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
	max-width: 1000px;
}

.fff-sns-card:nth-child(1) { grid-column: 1 / span 2; }
.fff-sns-card:nth-child(2) { grid-column: 3 / span 2; }
.fff-sns-card:nth-child(3) { grid-column: 5 / span 2; }
.fff-sns-card:nth-child(4) { grid-column: 2 / span 2; }
.fff-sns-card:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 700px) {
	.fff-sns-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 480px;
	}
	.fff-sns-card:nth-child(n) {
		grid-column: auto / span 1;
	}
	.fff-sns-card:nth-child(5) {
		grid-column: 1 / -1;
	}
}

.fff-sns-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding: 2.6rem 1.6rem 2rem;
	background-color: #FFFFFF;
	border: 1px solid #1A1A1A;
	color: #252525;
	text-decoration: none;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.fff-sns-card:hover {
	transform: translateY(-5px);
	box-shadow: 10px 10px 0 0 #B8945F;
	background-color: #1A1A1A;
	color: #FFFFFF;
}

.fff-sns-card__icon {
	width: 72px;
	height: 72px;
	color: #B8945F;
	display: grid;
	place-items: center;
	margin-bottom: 0.6rem;
	transition: color 0.3s ease;
}

.fff-sns-card__icon svg {
	width: 100%;
	height: 100%;
}

.fff-sns-card:hover .fff-sns-card__icon {
	color: #B8945F;
}

.fff-sns-card__name {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.fff-sns-card__handle {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	color: rgba(37, 37, 37, 0.55);
	transition: color 0.3s ease;
}

.fff-sns-card:hover .fff-sns-card__handle {
	color: rgba(255, 255, 255, 0.65);
}

.fff-sns-card__cta {
	margin-top: 1rem;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #B8945F;
	padding-top: 1rem;
	border-top: 1px solid rgba(184, 148, 95, 0.3);
	width: 100%;
}

/* ============================================================================
   Home ページ専用：ヒーロー / Process / Pathways / Latest / CTA
   ============================================================================ */

/* ── ヒーロー：左に大文字、右にシンボル ─────────────────── */

.fff-home-hero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: clamp(1.25rem, 5vw, 4rem) !important;
	padding-right: clamp(1.25rem, 5vw, 4rem) !important;
}

.fff-home-hero__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.fff-home-hero__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: rgba(37, 37, 37, 0.55);
	text-transform: uppercase;
	margin: 0 0 1.5rem;
}

.fff-home-hero__title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(2.2rem, 5.5vw, 4.4rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.04em;
	color: #0F0F0F;
	margin: 0 0 1.5rem;
}

.fff-home-hero__lead {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.95;
	color: rgba(37, 37, 37, 0.78);
	margin: 0 0 2rem;
	max-width: 540px;
}

.fff-home-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.fff-home-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.95em 1.6em;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.fff-home-btn--primary {
	background-color: #1A1A1A;
	color: #FFFFFF;
	border: 1px solid #1A1A1A;
}

.fff-home-btn--primary:hover {
	background-color: #B8945F;
	border-color: #B8945F;
	transform: translateX(2px);
}

.fff-home-btn--ghost {
	color: #B8945F;
	border: 1px solid #B8945F;
	background-color: transparent;
}

.fff-home-btn--ghost:hover {
	background-color: #B8945F;
	color: #FFFFFF;
	transform: translateX(2px);
}

.fff-home-hero__symbol {
	display: grid;
	place-items: center;
	color: #252525;
	max-width: 420px;
	margin-left: auto;
	width: 100%;
}

.fff-home-hero__symbol svg {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 800px) {
	.fff-home-hero__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.fff-home-hero__symbol {
		max-width: 280px;
		margin: 0 auto;
		order: -1;
	}
}

/* ── METHOD 小見出し（VOICE｜… と同じ右矢印フラッグ） ─────────── */

.fff-method-label {
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: clamp(0.9rem, 1.1vw, 1.05rem);
	letter-spacing: 0.12em;
	margin: 0 0 1.5rem;
	margin-left: calc(50% - 50vw);
	padding: 0.7rem 2.4rem 0.7rem clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.3;
	background: #0a0a0a;
	color: #ffffff;
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.fff-method-intro {
	max-width: 760px;
	margin: 0 auto clamp(3rem, 6vw, 5rem);
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.fff-method-intro--with-figure {
	max-width: 920px;
}

/* CYCLE 用：MARKET ゾーンと同じ黒背景＋透明度 */
.fff-method-intro--dark {
	position: relative;
	color: #f4f1ea;
	padding-top: clamp(3rem, 6vw, 5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* CYCLE：STRUCTURE と同じ広めの幅 + 縦に長いセクション */
.fff-method-intro--cycle {
	max-width: 1400px;
	padding-top: clamp(2.5rem, 4vw, 4rem);
	padding-bottom: clamp(5rem, 7vw, 7rem);
	padding-left: clamp(0.5rem, 1.5vw, 1.2rem);
	padding-right: clamp(0.5rem, 1.5vw, 1.2rem);
}

/* ラベルとコンテンツの間に余白 */
.fff-method-intro--cycle .fff-method-intro__cols--overlap {
	margin-top: clamp(2.5rem, 5vw, 5rem);
}

.fff-method-intro--dark::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	background-color: rgba(0, 0, 0, 0.82);
	z-index: -1;
}

.fff-method-intro--dark .fff-method-label {
	background: #ffffff;
	color: #0a0a0a;
}

.fff-method-intro--dark .fff-method-intro__text {
	background: rgba(244, 241, 234, 0.06);
	border-color: rgba(244, 241, 234, 0.18);
	color: #f4f1ea;
	box-shadow: 0 12px 32px -28px rgba(0, 0, 0, 0.6);
}

.fff-method-intro--dark .fff-method-intro__text::before {
	background: #f4f1ea;
}

/* CYCLE 用：画像（左上）と本文（右下）をオーバーラップ配置 */
.fff-method-intro__cols--overlap {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto;
	gap: 0;
	align-items: start;
}

.fff-method-intro__cols--overlap > .fff-method-figure {
	grid-column: 1 / 11;
	grid-row: 1;
	margin: 0;
	max-width: 100%;
	width: 100%;
	z-index: 1;
	position: relative;
}

.fff-method-intro__cols--overlap > .fff-method-intro__text {
	grid-column: 8 / 13;
	grid-row: 2;
	margin: clamp(1rem, 2vw, 1.8rem) 0 0;
	z-index: 2;
	position: relative;
	background: #f4f1ea;
	border-color: rgba(10, 10, 10, 0.08);
	color: #0a0a0a;
	box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.55);
}

.fff-method-intro__cols--overlap > .fff-method-intro__text::before {
	background: #0a0a0a;
}

@media (max-width: 768px) {
	.fff-method-intro__cols--overlap {
		grid-template-columns: 1fr;
	}
	.fff-method-intro__cols--overlap > .fff-method-figure {
		grid-column: 1;
		grid-row: 1;
	}
	.fff-method-intro__cols--overlap > .fff-method-intro__text {
		grid-column: 1;
		grid-row: 2;
		margin: 1.5rem 0 0;
	}
}

/* STRUCTURE 用：本文と図を横並び（タブレット以上） */
.fff-method-intro--horizontal {
	max-width: 1500px;
	padding: 0 clamp(1rem, 2.5vw, 2rem);
}

.fff-method-intro__cols {
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
}

.fff-method-intro--horizontal .fff-method-intro__text {
	margin: 0;
}

.fff-method-intro--horizontal .fff-method-figure {
	margin: 0;
	max-width: 100%;
}

@media (max-width: 768px) {
	.fff-method-intro__cols {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 4vw, 2.5rem);
	}
}

.fff-method-figure {
	margin: clamp(2rem, 4vw, 3rem) auto 0;
	max-width: 720px;
}

.fff-method-figure--wide {
	max-width: 900px;
}

.fff-method-figure--full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-top: clamp(-4.5rem, -5vw, -2rem);
	margin-bottom: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	z-index: 1;
}

.fff-method-figure__img {
	display: block;
	width: 100%;
	height: auto;
}

/* スクロールリビール — 各ブロックがふわっと立ち上がる */
.fff-method-intro {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.95s cubic-bezier(.22,.61,.36,1), transform 0.95s cubic-bezier(.22,.61,.36,1);
	will-change: opacity, transform;
}

.fff-method-intro.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fff-method-intro .fff-method-label,
.fff-method-intro .fff-method-intro__text,
.fff-method-intro .fff-method-figure,
.fff-method-intro .fff-method-cta {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.fff-method-intro.is-visible .fff-method-label {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.05s;
}

.fff-method-intro.is-visible .fff-method-intro__text {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.22s;
}

.fff-method-intro.is-visible .fff-method-figure {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.fff-method-intro.is-visible .fff-method-cta {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
	.fff-method-intro,
	.fff-method-intro .fff-method-label,
	.fff-method-intro .fff-method-intro__text,
	.fff-method-intro .fff-method-figure,
	.fff-method-intro .fff-method-cta {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.fff-method-intro__text {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(1.4rem, 2.5vw, 2rem) clamp(1.4rem, 2.5vw, 1.9rem) clamp(1.8rem, 3vw, 2.4rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(0.95rem, 1.15vw, 1.05rem);
	line-height: 1.95;
	letter-spacing: 0.04em;
	color: #0a0a0a;
	background: rgba(244, 241, 234, 0.55);
	border: 1px solid rgba(10, 10, 10, 0.08);
	box-shadow: 0 12px 32px -28px rgba(10, 10, 10, 0.35);
}

.fff-method-intro__text::before {
	content: '';
	position: absolute;
	left: 0;
	top: clamp(1rem, 2vw, 1.4rem);
	bottom: clamp(1rem, 2vw, 1.4rem);
	width: 3px;
	background: #0a0a0a;
}

/* ちぎり紙テクスチャ背景：紙画像を pseudo-element でテキスト外側に拡張 */
.fff-method-intro--horizontal .fff-method-intro__text,
.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text,
.fff-method-intro--process .fff-method-intro__text {
	position: relative;
	background-color: transparent;
	background-image: none;
	border: none;
	box-shadow: none;
	padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
	margin-top: clamp(5rem, 8vw, 7rem);
	margin-bottom: clamp(5rem, 8vw, 7rem);
	overflow-wrap: break-word;
	word-break: break-word;
	z-index: 2;
}

/* 紙テクスチャ本体：テキストよりひと回り大きく外側に展開 */
.fff-method-intro--horizontal .fff-method-intro__text::before,
.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text::before,
.fff-method-intro--process .fff-method-intro__text::before {
	content: '';
	display: block;
	position: absolute;
	top: clamp(-6rem, -7vw, -3.5rem);
	bottom: clamp(-6rem, -7vw, -3.5rem);
	left: clamp(-5rem, -6vw, -2.5rem);
	right: clamp(-5rem, -6vw, -2.5rem);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-color: transparent;
	width: auto;
	height: auto;
	z-index: -1;
	pointer-events: none;
}

.fff-method-intro--horizontal .fff-method-intro__text::before {
	background-image: url('img/boxes/box-17.png');
}

.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text::before {
	background-image: url('img/boxes/box-20.png');
}

.fff-method-intro--process .fff-method-intro__text::before {
	background-image: url('img/boxes/box-18.png');
}

/* PROCESS：文字が短いので紙のサイズを絞って中央寄せ */
.fff-method-intro--process .fff-method-intro__text {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

/* タブレット以下：紙を縦に大きめに伸ばす（かすみがメインで見てる範囲） */
@media (max-width: 1024px) {
	.fff-method-intro--horizontal .fff-method-intro__text::before,
	.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text::before,
	.fff-method-intro--process .fff-method-intro__text::before {
		top: -6rem;
		bottom: -6rem;
		left: -2.5rem;
		right: -2.5rem;
	}
	.fff-method-intro--horizontal .fff-method-intro__text,
	.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text,
	.fff-method-intro--process .fff-method-intro__text {
		font-size: 0.9rem;
		line-height: 1.85;
		margin-top: 7rem;
		margin-bottom: 7rem;
	}
}

/* スマホ：3セクションとも紙を縦横とも大きめに */
@media (max-width: 600px) {
	.fff-method-intro--horizontal .fff-method-intro__text::before,
	.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text::before,
	.fff-method-intro--process .fff-method-intro__text::before {
		top: -5.5rem;
		bottom: -5.5rem;
		left: -2.5rem;
		right: -2.5rem;
	}
	.fff-method-intro--horizontal .fff-method-intro__text,
	.fff-method-intro--cycle .fff-method-intro__cols--overlap > .fff-method-intro__text,
	.fff-method-intro--process .fff-method-intro__text {
		font-size: 0.82rem;
		line-height: 1.8;
		letter-spacing: 0.02em;
		padding: 1.5rem 1.5rem;
		margin-top: 6.5rem;
		margin-bottom: 6.5rem;
	}
	/* CYCLE 黒背景セクション：スマホ用 */
	.fff-method-intro--cycle {
		padding-top: 2.5rem;
		padding-bottom: 4rem;
	}
	.fff-method-intro--cycle .fff-method-intro__cols--overlap {
		margin-top: 2rem;
	}
}

.fff-method-intro__text strong {
	font-weight: 600;
}

/* PC専用改行：タブレット以下では非表示 */
@media (max-width: 1024px) {
	br.br-pc-only {
		display: none;
	}
}

.fff-method-label--steps {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fff-method-cta {
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	font-size: 0.92rem;
	letter-spacing: 0.06em;
	text-align: center;
}

.fff-method-cta a {
	color: #B8945F;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.2em;
	font-weight: 600;
}

.fff-method-cta a:hover {
	border-bottom-color: #B8945F;
}

@media (max-width: 768px) {
	.fff-method-label {
		font-size: 0.85rem;
		margin-left: 0;
		padding: 0.6rem 1.9rem 0.6rem 1.2rem;
		letter-spacing: 0.08em;
		max-width: 100%;
	}
	.fff-method-intro {
		padding: 0 1.2rem;
	}
}

/* ── Process タイムライン（縦線 + 4 ステップ） ─────────── */

.fff-home-process {
	max-width: 920px;
	margin: 0 auto;
}

.fff-home-process__intro {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.78);
	margin: 0 0 var(--wp--preset--spacing--l, 3rem);
	max-width: 700px;
}

.fff-home-process__list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

/* 中央の縦線 */
.fff-home-process__list::before {
	content: '';
	position: absolute;
	left: clamp(120px, 22%, 200px);
	top: 0.5rem;
	bottom: 0.5rem;
	width: 1px;
	background-color: #1A1A1A;
}

.fff-home-process__item {
	display: grid;
	grid-template-columns: clamp(110px, 22%, 200px) 1fr;
	column-gap: clamp(2.5rem, 6vw, 5rem);
	align-items: flex-start;
	padding: 1.4rem 0;
	position: relative;
}

.fff-home-process__label {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.fff-home-process__num {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-home-process__title {
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	font-weight: 700;
	color: #0F0F0F;
	letter-spacing: 0.04em;
	line-height: 1.35;
}

/* 縦線の上に乗るドット：absolute で左の縦線位置に固定 */
.fff-home-process__item::after {
	content: '';
	position: absolute;
	left: clamp(120px, 22%, 200px);
	top: 2.2rem;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #1A1A1A;
	border: 3px solid #FFFFFF;
	box-shadow: 0 0 0 1px #1A1A1A;
	transform: translateX(-50%);
}

.fff-home-process__desc {
	font-size: clamp(0.92rem, 1.25vw, 1rem);
	line-height: 1.95;
	color: rgba(37, 37, 37, 0.78);
	margin: 0;
}

.fff-home-process__cta {
	margin: var(--wp--preset--spacing--l, 3rem) 0 0;
	padding-left: clamp(120px, 22%, 200px);
	font-size: 0.92rem;
	letter-spacing: 0.06em;
}

.fff-home-process__cta a {
	color: #B8945F;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.2em;
	font-weight: 600;
}

.fff-home-process__cta a:hover {
	border-bottom-color: #B8945F;
}

@media (max-width: 640px) {
	.fff-home-process__list::before {
		left: 18px;
	}
	.fff-home-process__item {
		grid-template-columns: 1fr;
		padding-left: 48px;
		column-gap: 0;
		row-gap: 0.5rem;
	}
	.fff-home-process__label {
		flex-direction: row;
		align-items: baseline;
		gap: 0.8rem;
	}
	.fff-home-process__title {
		font-size: 1.3rem;
	}
	.fff-home-process__item::after {
		left: 18px;
		top: 2.2rem;
	}
	.fff-home-process__cta {
		padding-left: 48px;
	}
}
@media (max-width: 900px) {}

@media (max-width: 480px) {}

/* ── LATEST：ライブ予定 + 最新ブログ ──────────────────── */

.fff-home-latest {
	display: grid;
	gap: var(--wp--preset--spacing--l, 3rem);
}

.fff-home-latest__upcoming {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: clamp(1.2rem, 3vw, 2.2rem);
	align-items: center;
	padding: 1.6rem 1.8rem;
	background-color: #1A1A1A;
	color: #FFFFFF;
	box-shadow: 10px 10px 0 0 #B8945F;
}

.fff-home-latest__tag {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #B8945F;
	text-transform: uppercase;
	border: 1px solid #B8945F;
	padding: 0.4em 0.7em;
	white-space: nowrap;
}

.fff-home-latest__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
}

.fff-home-latest__month {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.7);
}

.fff-home-latest__day {
	font-size: 2.4rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-top: 0.15rem;
}

.fff-home-latest__title {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 0.4rem;
	line-height: 1.5;
}

.fff-home-latest__meta {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 0.6rem;
	letter-spacing: 0.04em;
}

.fff-home-latest__link {
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.15em;
}

.fff-home-latest__link:hover {
	border-bottom-color: #B8945F;
}

@media (max-width: 720px) {
	.fff-home-latest__upcoming {
		grid-template-columns: 1fr;
		text-align: left;
		gap: 0.8rem;
		padding: 1.4rem;
	}
	.fff-home-latest__date {
		flex-direction: row;
		align-items: baseline;
		gap: 0.6rem;
	}
	.fff-home-latest__day {
		font-size: 1.8rem;
	}
}

/* 「最新ブログ 3 件」のヘッダーと grid。3 件のみで小さく見せる */
.fff-home-latest__blog-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.5rem;
	padding: 0 0.3rem;
}

.fff-home-latest__more {
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
}

.fff-home-latest__more:hover {
	border-bottom-color: #B8945F;
}

.fff-home-latest__blog-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 1.6rem;
}

/* ============================================================================
   Header dropdown：タイムライン風（縦線 + ゴールドの点 + 下線テキスト）
   ============================================================================ */

.site-header .sub-menu,
.site-header-main-section .sub-menu {
	background-color: #FFFFFF !important;
	border: 1.5px solid #1A1A1A !important;
	box-shadow: none !important;
	padding: 1.8rem 1.8rem 1.8rem 3.2rem !important;
	min-width: 260px;
	display: flex !important;
	flex-direction: column;
	gap: 1.2rem;
	position: relative;
}

/* ドロップダウン左の黒い縦線 */
.site-header .sub-menu::before,
.site-header-main-section .sub-menu::before {
	content: '';
	position: absolute;
	left: 1.85rem;
	top: 2.4rem;
	bottom: 2.4rem;
	width: 2px;
	background-color: #1A1A1A;
}

/* 個別の項目 */
.site-header .sub-menu .menu-item,
.site-header-main-section .sub-menu .menu-item {
	position: relative;
	margin: 0 !important;
	background: transparent !important;
}

/* 各項目の左にゴールドの円（縦線の上に重なる） */
.site-header .sub-menu .menu-item::before,
.site-header-main-section .sub-menu .menu-item::before {
	content: '';
	position: absolute;
	left: -1.4rem;
	top: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #B8945F;
	border: 2px solid #1A1A1A;
	transform: translateY(-50%);
	z-index: 1;
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.site-header .sub-menu .menu-item:hover::before,
.site-header-main-section .sub-menu .menu-item:hover::before {
	background-color: #1A1A1A;
	transform: translateY(-50%) scale(1.15);
}

/* 項目テキスト：下線付き、控えめなサイズ */
.site-header .sub-menu .menu-item > a,
.site-header-main-section .sub-menu .menu-item > a {
	background: transparent !important;
	color: #1A1A1A !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif) !important;
	font-size: 1rem !important;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 0.25rem 0 !important;
	border-bottom: 1.5px solid #1A1A1A !important;
	display: inline-block !important;
	transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	line-height: 1.4 !important;
}

.site-header .sub-menu .menu-item > a:hover,
.site-header .sub-menu .menu-item > a:focus,
.site-header-main-section .sub-menu .menu-item > a:hover,
.site-header-main-section .sub-menu .menu-item > a:focus {
	background: transparent !important;
	color: #B8945F !important;
	border-bottom-color: #B8945F !important;
	transform: translateX(3px) !important;
}

/* ============================================================================
   Block Styles：記事本文で使える装飾フレーム集
   ブロックエディタの「追加 CSS クラス」or ブロックスタイルとして利用
   ============================================================================ */

/* 共通：本文中での余白 */
.single-content .is-style-fff-frame-simple,
.single-content .is-style-fff-frame-gold,
.single-content .is-style-fff-frame-dashed,
.single-content .is-style-fff-frame-double,
.single-content .is-style-fff-frame-corner,
.single-content .is-style-fff-tag,
.single-content .is-style-fff-speech,
.single-content .is-style-fff-quote,
.single-content .is-style-fff-callout {
	margin: 2rem 0;
}

/* 01. シンプル枠 */
.is-style-fff-frame-simple {
	border: 1px solid #1A1A1A;
	background-color: #FFFFFF;
	padding: 1.5rem 1.7rem;
}

/* 02. ゴールド帯枠 */
.is-style-fff-frame-gold {
	border: 1px solid #1A1A1A;
	border-left: 4px solid #B8945F;
	background-color: #FFFFFF;
	padding: 1.5rem 1.7rem;
	position: relative;
}

/* 03. 点線枠 */
.is-style-fff-frame-dashed {
	border: 1.5px dashed rgba(37, 37, 37, 0.45);
	background-color: #FFFFFF;
	padding: 1.5rem 1.7rem;
}

/* 04. 二重線枠 */
.is-style-fff-frame-double {
	border: 3px double #1A1A1A;
	background-color: #FFFFFF;
	padding: 1.5rem 1.7rem;
}

/* 05. 角 L 字枠 */
.is-style-fff-frame-corner {
	position: relative;
	background-color: #FFFFFF;
	padding: 1.7rem;
}
.is-style-fff-frame-corner::before,
.is-style-fff-frame-corner::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	border: 2px solid #1A1A1A;
}
.is-style-fff-frame-corner::before {
	top: 0; left: 0;
	border-right: none;
	border-bottom: none;
}
.is-style-fff-frame-corner::after {
	bottom: 0; right: 0;
	border-left: none;
	border-top: none;
}

/* 06. タグ付き枠（上に POINT / NOTE / TIP / CAUTION ラベル） */
.is-style-fff-tag,
.is-style-fff-tag-note,
.is-style-fff-tag-tip,
.is-style-fff-tag-warn {
	position: relative;
	border: 1px solid #1A1A1A;
	background-color: #FFFFFF;
	padding: 2rem 1.7rem 1.5rem;
	margin-top: 2.5rem !important;
}

.is-style-fff-tag::before,
.is-style-fff-tag-note::before,
.is-style-fff-tag-tip::before,
.is-style-fff-tag-warn::before {
	position: absolute;
	top: -0.85em;
	left: 1.2rem;
	background-color: #1A1A1A;
	color: #FFFFFF;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	padding: 0.32em 0.85em;
	line-height: 1.4;
}

.is-style-fff-tag::before      { content: 'POINT'; }
.is-style-fff-tag-note::before { content: 'NOTE'; }
.is-style-fff-tag-tip::before  { content: 'TIP'; }
.is-style-fff-tag-warn::before { content: 'CAUTION'; background-color: #B8945F; }
.is-style-fff-tag-warn         { border-color: #B8945F; }

/* 07. 吹き出し（下に三角尻尾） */
.is-style-fff-speech {
	position: relative;
	background-color: #FFFFFF;
	border: 1.5px solid #1A1A1A;
	padding: 1.4rem 1.6rem;
	border-radius: 14px;
}
.is-style-fff-speech::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 36px;
	width: 0; height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #1A1A1A;
}
.is-style-fff-speech::before {
	content: '';
	position: absolute;
	bottom: -9px;
	left: 38px;
	width: 0; height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #FFFFFF;
	z-index: 1;
}

/* 08. 引用枠（ゴールド左帯 + 大きい引用符） — core/quote 専用 */
.wp-block-quote.is-style-fff-quote {
	position: relative;
	background-color: transparent;
	border: none;
	border-left: 4px solid #B8945F;
	padding: 0.8rem 1.5rem 0.8rem 3rem;
	font-style: normal;
	margin: 2rem 0;
}
.wp-block-quote.is-style-fff-quote::before {
	content: '\201C';
	position: absolute;
	left: 1rem;
	top: -0.4rem;
	font-family: serif;
	font-size: 3.5rem;
	line-height: 1;
	color: #B8945F;
	font-style: normal;
}
.wp-block-quote.is-style-fff-quote p {
	margin: 0 0 0.6rem;
	font-size: 1.02rem;
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.85);
}
.wp-block-quote.is-style-fff-quote cite {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-style: normal;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	color: rgba(37, 37, 37, 0.55);
	display: block;
	margin-top: 0.6rem;
}

/* 09. マーカー（テキストの span や strong に適用） */
.is-style-fff-marker {
	background-image: linear-gradient(transparent 62%, rgba(184, 148, 95, 0.35) 62%);
	padding: 0 0.1em;
	font-weight: 600;
}

.is-style-fff-marker-strong {
	background-image: linear-gradient(transparent 60%, #B8945F 60%);
	padding: 0 0.15em;
	font-weight: 600;
	color: #FFFFFF;
}

/* 10. Callout（黒背景の強調） */
.is-style-fff-callout {
	background-color: #1A1A1A;
	color: #FFFFFF;
	border: none;
	padding: 1.8rem 1.8rem 1.8rem 2.2rem;
	border-left: 4px solid #B8945F;
	position: relative;
}
.is-style-fff-callout p,
.is-style-fff-callout h3,
.is-style-fff-callout h4 {
	color: #FFFFFF !important;
	margin: 0 0 0.6rem;
}
.is-style-fff-callout p:last-child {
	margin-bottom: 0;
}
.is-style-fff-callout a {
	color: #B8945F !important;
}

/* 本文中のフレーム内部の余白調整：内側に p があるとき */
.is-style-fff-frame-simple p:last-child,
.is-style-fff-frame-gold p:last-child,
.is-style-fff-frame-dashed p:last-child,
.is-style-fff-frame-double p:last-child,
.is-style-fff-frame-corner p:last-child,
.is-style-fff-tag p:last-child,
.is-style-fff-speech p:last-child {
	margin-bottom: 0 !important;
}

/* ============================================================================
   Blog Sidebar：投稿ページ専用のしおり型タブ（左端から飛び出す）
   ============================================================================ */

.fff-blog-sidebar {
	position: fixed;
	left: 0;
	top: 22vh;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 30;
	pointer-events: none;
}

.fff-blog-sidebar > * {
	pointer-events: auto;
}

/* 各タブ：左半分が画面外、右半分だけ見える「しおり」風 */
.fff-blog-sidebar__tab {
	display: inline-flex;
	align-items: center;
	background-color: #1A1A1A;
	color: #FFFFFF;
	text-decoration: none;
	padding: 1.3rem 1.6rem 1.3rem 2.2rem;
	margin-left: -1.5rem;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(15, 15, 17, 0.18);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
}

.fff-blog-sidebar__tab:hover,
.fff-blog-sidebar__tab:focus-visible {
	transform: translateX(0.6rem);
	background-color: #B8945F;
	color: #1A1A1A;
}

/* タブごとに違う形 + サイズで「しおりがランダムに挟まってる」感を出す */

/* LINE：右側だけ三角形気味の有機シェイプ（上が丸く、下が尖る） */
.fff-blog-sidebar__tab--line {
	border-radius: 0 80% 30% 0 / 0 65% 35% 0;
	padding-right: 2.4rem;
}

/* Program：横長の完全楕円（半月） */
.fff-blog-sidebar__tab--program {
	border-radius: 0 50% 50% 0 / 0 50% 50% 0;
	padding-right: 2.8rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

/* Category：角丸長方形（やや小さく） */
.fff-blog-sidebar__tab--category {
	border-radius: 0 12px 12px 0;
	padding-right: 2.2rem;
	padding-top: 1.1rem;
	padding-bottom: 1.1rem;
}

/* プロフィールカード：円形アバター + 名前。有機ブロブ形でカジュアル感 */
.fff-blog-sidebar__profile {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	background-color: #1A1A1A;
	color: #FFFFFF;
	text-decoration: none;
	padding: 0.7rem 1.6rem 0.7rem 0.7rem;
	margin-left: -1.5rem;
	border-radius: 0 70% 40% 0 / 0 55% 45% 0;
	box-shadow: 0 6px 16px rgba(15, 15, 17, 0.18);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
}

.fff-blog-sidebar__profile:hover {
	transform: translateX(0.6rem);
	background-color: #B8945F;
	color: #1A1A1A;
}

.fff-blog-sidebar__profile-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #1A1A1A;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	overflow: hidden;
}

.fff-blog-sidebar__profile-avatar svg {
	width: 100%;
	height: 100%;
}

.fff-blog-sidebar__profile-name {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding-right: 0.6rem;
}

/* スマホ：トップメニューバー直下に固定 + 横カルーセル（背景は透過） */
@media (max-width: 960px) {
	.fff-blog-sidebar {
		position: fixed;
		top: var(--fff-header-bottom, 56px);
		left: 0;
		right: 0;
		width: 100vw;
		max-width: 100vw;
		margin-left: 0;
		flex-direction: row;
		align-items: center;
		gap: 0.7rem;
		padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background-color: transparent;
		border: none;
		box-shadow: none;
		z-index: 30;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.fff-blog-sidebar::-webkit-scrollbar {
		display: none;
	}
	.fff-blog-sidebar__tab,
	.fff-blog-sidebar__profile {
		flex: 0 0 auto;
		margin-left: 0;
		font-size: 0.88rem;
		box-shadow: 0 4px 10px rgba(15, 15, 17, 0.15);
		scroll-snap-align: start;
	}

	/* スマホでも形は各タブ別の有機シェイプを維持（サイズは小さく） */
	.fff-blog-sidebar__tab--line {
		border-radius: 60% 80% 30% 50% / 50% 65% 35% 50%;
		padding: 0.6rem 1.3rem;
	}
	.fff-blog-sidebar__tab--program {
		border-radius: 50% / 50%;
		padding: 0.65rem 1.4rem;
	}
	.fff-blog-sidebar__tab--category {
		border-radius: 12px;
		padding: 0.55rem 1.2rem;
	}
	.fff-blog-sidebar__profile {
		padding: 0.3rem 1rem 0.3rem 0.35rem;
		gap: 0.5rem;
		border-radius: 60% 40% 50% 70% / 50% 55% 45% 50%;
	}
	.fff-blog-sidebar__profile-avatar {
		width: 28px;
		height: 28px;
		border-radius: 50%;
	}
	.fff-blog-sidebar__profile-name {
		font-size: 0.84rem;
		padding-right: 0;
	}
	.fff-blog-sidebar__tab:hover,
	.fff-blog-sidebar__profile:hover {
		transform: none;
	}

	/* サイドバー分のスペースをコンテンツに確保 */
	body.single-post #inner-wrap,
	body.blog #inner-wrap,
	body.archive #inner-wrap,
	body.category #inner-wrap,
	body.tag #inner-wrap {
		padding-top: 3.5rem;
	}
}

/* PC でレールと重ならないように、投稿ページの右レール位置を少しだけ右に */
body.single .fff-page-rail,
body.blog .fff-page-rail,
body.archive .fff-page-rail {
	/* レールはそのまま右側、サイドバーは左側 → ぶつからない */
}

/* ============================================================================
   Blog ページ：投稿一覧（archive）
   Kadence デフォルトの .loop-entry に独自スタイルを当てる
   ============================================================================ */

/* アーカイブ全体のヘッダー */
.post-archive-title.entry-header {
	border-bottom: 1px solid rgba(37, 37, 37, 0.2);
	padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem !important;
	margin-bottom: 2.5rem !important;
}

.post-archive-title .page-title.archive-title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #0F0F0F !important;
	margin: 0 !important;
}

/* 各記事カード */
.kadence-posts-list .loop-entry {
	background-color: #FFFFFF !important;
	border: 1px solid rgba(37, 37, 37, 0.12) !important;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
	overflow: hidden;
}

.kadence-posts-list .loop-entry:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(37, 37, 37, 0.1), 6px 6px 0 0 rgba(184, 148, 95, 0.4);
}

/* サムネ：有機シェイプを 6 パターンでローテーション */
.loop-entry .post-thumbnail {
	display: block;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loop-entry .post-thumbnail img {
	transition: transform 0.5s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.loop-entry:hover .post-thumbnail img {
	transform: scale(1.04);
}

.loop-entry:nth-of-type(6n+1) .post-thumbnail {
	border-radius: 50% 40% 60% 30% / 60% 40% 50% 50%;
}
.loop-entry:nth-of-type(6n+2) .post-thumbnail {
	border-radius: 40% 60% 30% 70% / 50% 60% 40% 50%;
}
.loop-entry:nth-of-type(6n+3) .post-thumbnail {
	border-radius: 60% 30% 50% 70% / 40% 60% 50% 60%;
}
.loop-entry:nth-of-type(6n+4) .post-thumbnail {
	border-radius: 30% 70% 40% 60% / 60% 40% 60% 30%;
}
.loop-entry:nth-of-type(6n+5) .post-thumbnail {
	border-radius: 50% 30% 70% 50% / 30% 60% 40% 70%;
}
.loop-entry:nth-of-type(6n) .post-thumbnail {
	border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%;
}

/* シェイプを使うときは外側カードの枠は無くす（重なりが汚いため） */
.kadence-posts-list .loop-entry {
	border: none !important;
	background-color: transparent !important;
}

.kadence-posts-list .loop-entry:hover {
	box-shadow: none !important;
}

.kadence-posts-list .loop-entry:hover .post-thumbnail {
	transform: translateY(-4px);
}

/* /blog/ ページ：カテゴリ別の 4 記事ずつセクション */

.fff-blog-by-cat {
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 6vw, 5rem);
	margin: 0 0 4rem;
}

.fff-blog-by-cat__loading {
	text-align: center;
	color: rgba(37, 37, 37, 0.5);
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	letter-spacing: 0.18em;
	font-size: 0.85rem;
	text-transform: uppercase;
	padding: 3rem 0;
}

.fff-blog-cat-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.8rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(37, 37, 37, 0.15);
}

.fff-blog-cat-section__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: #B8945F;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.35rem;
}

.fff-blog-cat-section__title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #0F0F0F;
	margin: 0;
}

.fff-blog-cat-section__more {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #B8945F;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.15em;
	white-space: nowrap;
}

.fff-blog-cat-section__more:hover {
	border-bottom-color: #B8945F;
}

.fff-blog-cat-section__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem 1.5rem;
}

.fff-blog-cat-card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fff-blog-cat-card:hover {
	transform: translateY(-4px);
}

.fff-blog-cat-card__shape {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: #FFFFFF;
	transition: box-shadow 0.35s ease;
}

.fff-blog-cat-card:hover .fff-blog-cat-card__shape {
	box-shadow: 0 12px 28px rgba(37, 37, 37, 0.14);
}

.fff-blog-cat-card__shape img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.fff-blog-cat-card:hover .fff-blog-cat-card__shape img {
	transform: scale(1.04);
}

/* 有機シェイプを 8 パターンでローテーション（隣接で違って見えるように） */
.fff-blog-cat-card:nth-of-type(8n+1) .fff-blog-cat-card__shape { border-radius: 50% 40% 60% 30% / 60% 40% 50% 50%; }
.fff-blog-cat-card:nth-of-type(8n+2) .fff-blog-cat-card__shape { border-radius: 40% 60% 30% 70% / 50% 60% 40% 50%; }
.fff-blog-cat-card:nth-of-type(8n+3) .fff-blog-cat-card__shape { border-radius: 60% 30% 50% 70% / 40% 60% 50% 60%; }
.fff-blog-cat-card:nth-of-type(8n+4) .fff-blog-cat-card__shape { border-radius: 30% 70% 40% 60% / 60% 40% 60% 30%; }
.fff-blog-cat-card:nth-of-type(8n+5) .fff-blog-cat-card__shape { border-radius: 50% 30% 70% 50% / 30% 60% 40% 70%; }
.fff-blog-cat-card:nth-of-type(8n+6) .fff-blog-cat-card__shape { border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%; }
.fff-blog-cat-card:nth-of-type(8n+7) .fff-blog-cat-card__shape { border-radius: 45% 65% 35% 55% / 55% 45% 65% 35%; }
.fff-blog-cat-card:nth-of-type(8n)   .fff-blog-cat-card__shape { border-radius: 65% 35% 55% 45% / 45% 55% 35% 65%; }

.fff-blog-cat-card__title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1A1A1A;
	letter-spacing: 0.02em;
	line-height: 1.55;
	margin: 0;
	transition: color 0.25s ease;
}

.fff-blog-cat-card:hover .fff-blog-cat-card__title {
	color: #B8945F;
}

.fff-blog-cat-card__date {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	color: rgba(37, 37, 37, 0.5);
}

@media (max-width: 900px) {
	.fff-blog-cat-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem 1.2rem;
	}
}

@media (max-width: 540px) {
	.fff-blog-cat-section__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	.fff-blog-cat-section__grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}
}

/* テキスト部分 */
.loop-entry .entry-content-wrap {
	padding: 1.4rem 1.4rem 1.5rem !important;
}

.loop-entry .entry-header {
	margin-bottom: 0.6rem;
	border: none !important;
	padding: 0 !important;
}

/* カテゴリラベル */
.loop-entry .entry-taxonomies {
	margin-bottom: 0.6rem;
	font-size: 0.74rem;
	letter-spacing: 0.16em;
}

.loop-entry .entry-taxonomies a {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	color: #B8945F !important;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(184, 148, 95, 0.3);
	padding-bottom: 0.1em;
}

.loop-entry .entry-taxonomies a:hover {
	border-bottom-color: #B8945F;
}

/* タイトル */
.loop-entry .entry-title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.55 !important;
	margin: 0 0 0.6rem !important;
}

.loop-entry .entry-title a {
	color: #1A1A1A !important;
	text-decoration: none;
	transition: color 0.25s ease;
}

.loop-entry .entry-title a:hover {
	color: #B8945F !important;
}

/* メタ：著者・日付 */
.loop-entry .entry-meta {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem !important;
	letter-spacing: 0.08em;
	color: rgba(37, 37, 37, 0.55);
	margin: 0 0 0.8rem !important;
}

.loop-entry .entry-meta .meta-label {
	display: none;
}

.loop-entry .entry-meta a {
	color: rgba(37, 37, 37, 0.65) !important;
}

/* 抜粋 */
.loop-entry .entry-summary {
	margin-top: 0.6rem;
}

.loop-entry .entry-summary p {
	font-size: 0.85rem !important;
	line-height: 1.75 !important;
	color: rgba(37, 37, 37, 0.7) !important;
	margin: 0 !important;
}

/* 「続きを読む」リンク */
.loop-entry .entry-actions .more-link,
.loop-entry .entry-footer a {
	display: inline-block;
	margin-top: 1rem;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #B8945F !important;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.15em;
	text-decoration: none !important;
}

.loop-entry .entry-actions .more-link:hover,
.loop-entry .entry-footer a:hover {
	border-bottom-color: #B8945F;
}

/* ページネーション */
.kadence-pagination,
.kt-pagination {
	margin: 3rem 0 4rem !important;
	display: flex;
	justify-content: center;
	gap: 0.4rem;
}

.kadence-pagination a,
.kadence-pagination span,
.page-numbers {
	min-width: 2.6rem;
	height: 2.6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(37, 37, 37, 0.25);
	background-color: #FFFFFF;
	color: #252525 !important;
	text-decoration: none;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-numbers.current,
.kadence-pagination .current {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF !important;
}

.page-numbers:hover {
	background-color: #B8945F;
	border-color: #B8945F;
	color: #FFFFFF !important;
}

/* ============================================================================
   Single Post：個別記事ページ
   ============================================================================ */

.single-entry.content-bg {
	background-color: transparent !important;
}

/* 記事ヘッダー */
.single .entry-header.post-title {
	max-width: 820px;
	margin: 0 auto !important;
	padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 0) clamp(1.5rem, 4vw, 2.5rem) !important;
	text-align: center !important;
}

.single .entry-header .entry-taxonomies {
	margin-bottom: 1rem;
}

.single .entry-header .entry-taxonomies a {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #B8945F !important;
	text-decoration: none;
}

.single .entry-header .entry-title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1.7rem, 3.6vw, 2.6rem) !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4 !important;
	color: #0F0F0F !important;
	margin: 0 0 1.4rem !important;
}

.single .entry-header .entry-meta {
	display: flex;
	justify-content: center;
	gap: 0.8rem 1.5rem;
	flex-wrap: wrap;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.8rem !important;
	letter-spacing: 0.08em;
	color: rgba(37, 37, 37, 0.6) !important;
}

.single .entry-header .entry-meta a {
	color: rgba(37, 37, 37, 0.7) !important;
}

/* アイキャッチ */
.single .post-thumbnail {
	max-width: 1000px;
	margin: 0 auto 3rem !important;
	display: block;
}

.single .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* 本文：読みやすい幅と余白に */
.single .entry-content.single-content {
	max-width: 720px;
	margin: 0 auto !important;
	padding: 0 clamp(1rem, 3vw, 0) 3rem;
	background-color: transparent !important;
}

.single .entry-content.single-content > * {
	max-width: 100% !important;
}

.single .entry-content.single-content p {
	font-size: clamp(0.96rem, 1.15vw, 1.05rem);
	line-height: 2;
	color: #1A1A1A;
	margin: 0 0 1.6rem;
}

.single .entry-content.single-content h2 {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	color: #0F0F0F;
	margin: 3rem 0 1.2rem;
	padding-left: 1rem;
	border-left: 4px solid #B8945F;
}

.single .entry-content.single-content h3 {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1.15rem, 1.7vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.55;
	color: #0F0F0F;
	margin: 2.4rem 0 1rem;
}

.single .entry-content.single-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 2rem 0 0.8rem;
	color: #0F0F0F;
}

.single .entry-content.single-content a {
	color: #B8945F;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: color 0.25s ease;
}

.single .entry-content.single-content a:hover {
	color: #8E6E40;
}

.single .entry-content.single-content ul,
.single .entry-content.single-content ol {
	margin: 0 0 1.6rem;
	padding-left: 1.4em;
}

.single .entry-content.single-content li {
	font-size: clamp(0.94rem, 1.1vw, 1rem);
	line-height: 1.95;
	color: #1A1A1A;
	margin-bottom: 0.5rem;
}

.single .entry-content.single-content blockquote {
	background-color: #FFFFFF;
	border-left: 4px solid #B8945F;
	margin: 2rem 0;
	padding: 1.4rem 1.6rem;
	font-size: 0.96rem;
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.85);
	font-style: normal;
}

.single .entry-content.single-content blockquote p:last-child {
	margin-bottom: 0;
}

.single .entry-content.single-content img {
	max-width: 100%;
	height: auto;
	margin: 1.5rem auto;
	display: block;
}

.single .entry-content.single-content code {
	background-color: rgba(184, 148, 95, 0.1);
	padding: 0.15em 0.4em;
	font-size: 0.92em;
	color: #8E6E40;
	border-radius: 2px;
}

.single .entry-content.single-content pre {
	background-color: #1A1A1A;
	color: #FFFFFF;
	padding: 1.2rem 1.4rem;
	margin: 1.5rem 0;
	overflow-x: auto;
	font-size: 0.88rem;
	line-height: 1.7;
}

.single .entry-content.single-content hr {
	border: none;
	border-top: 1px solid rgba(37, 37, 37, 0.15);
	margin: 2.5rem 0;
}

/* 記事フッター（次/前ナビ、関連記事等） */
.single .entry-footer {
	max-width: 720px;
	margin: 2rem auto 0 !important;
	padding: 2rem 0;
	border-top: 1px solid rgba(37, 37, 37, 0.15);
}

/* 投稿一覧／個別投稿の親 article 背景を透明に */
article.entry.content-bg {
	background-color: transparent !important;
}

@media (max-width: 720px) {
	.loop-entry .entry-content-wrap {
		padding: 1.1rem 1.1rem 1.3rem !important;
	}
	.single .entry-content.single-content h2 {
		padding-left: 0.8rem;
	}
}

/* ============================================================================
   Legal ページ専用：Privacy Policy / 特商法
   読みやすい本文 + 番号付き見出し + テーブル表記
   ============================================================================ */

.fff-legal-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: clamp(1.25rem, 5vw, 4rem) !important;
	padding-right: clamp(1.25rem, 5vw, 4rem) !important;
}

.fff-legal,
.fff-legal__article {
	max-width: 880px;
	margin: 0 auto;
}

/* ヘッダー */
.fff-legal__header {
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.12);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	margin-bottom: 2rem;
}

.fff-legal__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: rgba(37, 37, 37, 0.55);
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.fff-legal__title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: #0F0F0F;
	margin: 0 0 1rem;
}

.fff-legal__meta {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	color: rgba(37, 37, 37, 0.55);
	margin: 0 0 1.5rem;
}

.fff-legal__lead {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.95;
	color: rgba(37, 37, 37, 0.85);
	margin: 0;
}

/* 各セクション：左に番号、右に本文。本文部分は白カードで読みやすく */
.fff-legal__article {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: clamp(1rem, 3vw, 2.5rem);
	align-items: start;
}

.fff-legal__body {
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.12);
	padding: clamp(1.5rem, 3vw, 2.2rem);
}

.fff-legal__num {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #B8945F;
	padding-top: 0.3rem;
	border-top: 2px solid #B8945F;
	display: inline-block;
	align-self: start;
}

.fff-legal__h2 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #0F0F0F;
	line-height: 1.5;
	margin: 0 0 1rem;
}

.fff-legal__body p {
	font-size: 0.96rem;
	line-height: 2;
	color: rgba(37, 37, 37, 0.85);
	margin: 0 0 0.9rem;
}

.fff-legal__body p:last-child {
	margin-bottom: 0;
}

.fff-legal__body ul {
	margin: 0.6rem 0 1rem 0;
	padding-left: 1.2em;
}

.fff-legal__body ul li {
	font-size: 0.94rem;
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.85);
	margin-bottom: 0.4rem;
}

.fff-legal__body a {
	color: #B8945F;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.fff-legal__body a:hover {
	color: #8E6E40;
}

.fff-legal__body--full {
	grid-column: 1 / -1;
}

/* 連絡先用 dl */
.fff-legal__dl {
	margin: 0;
	display: grid;
	gap: 0.7rem;
	border-top: 1px dashed rgba(37, 37, 37, 0.2);
	border-bottom: 1px dashed rgba(37, 37, 37, 0.2);
	padding: 1.2rem 0;
}

.fff-legal__dl > div {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 1rem;
	font-size: 0.92rem;
}

.fff-legal__dl dt {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-legal__dl dd {
	margin: 0;
	color: rgba(37, 37, 37, 0.9);
}

.fff-legal__article--contact {
	padding-top: 1rem;
}

/* 特商法のテーブル */
.fff-legal-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.12);
	border-top: 2px solid #1A1A1A;
	border-bottom: 2px solid #1A1A1A;
}

.fff-legal-table th,
.fff-legal-table td {
	padding: 1.3rem 1.2rem;
	font-size: 0.94rem;
	line-height: 1.85;
	vertical-align: top;
	text-align: left;
	border-bottom: 1px solid rgba(37, 37, 37, 0.12);
}

.fff-legal-table tr:last-child th,
.fff-legal-table tr:last-child td {
	border-bottom: none;
}

.fff-legal-table th {
	width: 220px;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #B8945F;
	background-color: transparent;
	border-right: 1px solid rgba(37, 37, 37, 0.12);
}

.fff-legal-table td {
	color: #1A1A1A;
}

.fff-legal-table td a {
	color: #B8945F;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.fff-legal-table__note {
	display: inline-block;
	font-size: 0.78rem;
	color: rgba(37, 37, 37, 0.55);
	margin-top: 0.3rem;
}

/* レスポンシブ */
@media (max-width: 720px) {
	.fff-legal__article {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	.fff-legal__num {
		font-size: 1.1rem;
		padding-top: 0.3rem;
	}
	.fff-legal__dl > div {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}
	.fff-legal-table th,
	.fff-legal-table td {
		display: block;
		width: 100%;
		border-right: none;
		padding: 0.8rem 1rem;
	}
	.fff-legal-table th {
		padding-top: 1.2rem;
		padding-bottom: 0.2rem;
		border-bottom: none;
	}
	.fff-legal-table td {
		padding-top: 0;
		padding-bottom: 1.2rem;
	}
}

/* ============================================================================
   Contact ページ専用：2 カラムレイアウト（左テキスト / 右フォーム）
   Thorne 風のミニマル下線インプット + ベージュSubmit
   ============================================================================ */

.fff-contact-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: clamp(1.25rem, 5vw, 4rem) !important;
	padding-right: clamp(1.25rem, 5vw, 4rem) !important;
}

.fff-contact {
	display: grid;
	grid-template-columns: 4fr 7fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: stretch;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

/* 中央の縦区切り線 */
.fff-contact::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 2rem;
	width: 1px;
	background-color: rgba(37, 37, 37, 0.3);
}

.fff-contact__copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.4rem;
	padding-right: clamp(1rem, 3vw, 2.5rem);
}

.fff-contact__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: rgba(37, 37, 37, 0.55);
	text-transform: uppercase;
	margin: 0;
}

.fff-contact__title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #0F0F0F;
	margin: 0;
}

.fff-contact__lead {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.95;
	color: rgba(37, 37, 37, 0.78);
	margin: 0;
}

.fff-contact__meta {
	font-size: 0.92rem;
	line-height: 1.85;
	color: rgba(37, 37, 37, 0.7);
	margin: 0;
}

.fff-contact__meta strong {
	color: #1A1A1A;
}

.fff-contact__channels {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 0.5rem;
}

.fff-contact__channel {
	display: flex;
	flex-direction: column;
	padding: 0.9rem 1.1rem;
	background-color: transparent;
	border: 1.5px solid #1A1A1A;
	color: #252525;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.fff-contact__channel:hover {
	background-color: #1A1A1A;
	color: #FFFFFF;
	border-color: #1A1A1A;
}

.fff-contact__channel-label {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-contact__channel-name {
	font-size: 0.95rem;
	font-weight: 600;
	margin-top: 0.2rem;
}

.fff-contact__arrow {
	color: #1A1A1A;
	margin-top: 1rem;
}

.fff-contact__arrow svg {
	width: 60px;
	height: 16px;
}

/* 右カラム：フォーム */

.fff-contact__form {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	padding-left: clamp(1rem, 3vw, 2.5rem);
}

.fff-contact__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.6rem;
}

.fff-contact__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	position: relative;
}

.fff-contact__field-label {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(37, 37, 37, 0.75);
}

.fff-contact__field-label em {
	color: #B8945F;
	font-style: normal;
	margin-left: 0.15em;
}

.fff-contact__field input,
.fff-contact__field textarea {
	width: 100%;
	background-color: #FFFFFF;
	border: 1.5px solid #1A1A1A;
	padding: 0.85rem 1rem;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: 1rem;
	color: #1A1A1A;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	resize: vertical;
	box-shadow: 0 1px 2px rgba(37, 37, 37, 0.03);
}

.fff-contact__field input:focus,
.fff-contact__field textarea:focus {
	outline: none;
	border-color: #B8945F;
	box-shadow: 0 0 0 3px rgba(184, 148, 95, 0.15);
}

.fff-contact__field input::placeholder,
.fff-contact__field textarea::placeholder {
	color: rgba(37, 37, 37, 0.4);
}

.fff-contact__field textarea {
	min-height: 8rem;
	line-height: 1.7;
}

.fff-contact__submit {
	margin-top: 0.5rem;
	align-self: flex-start;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	background-color: #B8945F;
	color: #FFFFFF;
	border: none;
	padding: 0.85em 2.4em;
	cursor: pointer;
	box-shadow: 4px 4px 0 0 #1A1A1A;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fff-contact__submit:hover {
	background-color: #1A1A1A;
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 0 #B8945F;
}

.fff-contact__submit:active {
	transform: translate(0, 0);
	box-shadow: 2px 2px 0 0 #1A1A1A;
}

.fff-contact__note {
	font-size: 0.78rem;
	line-height: 1.7;
	color: rgba(37, 37, 37, 0.55);
	margin: 0;
}

@media (max-width: 800px) {
	.fff-contact {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.fff-contact::before {
		display: none;
	}
	.fff-contact__copy,
	.fff-contact__form {
		padding-left: 0;
		padding-right: 0;
	}
	.fff-contact__row {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}
}

/* ============================================================================
   Counseling ページ専用：Programプラン / Voice引用 / Bookingフロー
   ============================================================================ */

/* ── Program プラン（単発セッションの強調カード） ───────── */

.fff-program-plan {
	max-width: 720px;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
	padding: 2.5rem clamp(1.8rem, 4vw, 3rem);
	background-color: #FFFFFF;
	border: 1px solid #1A1A1A;
	box-shadow: 12px 12px 0 0 #B8945F, 22px 22px 40px rgba(37, 37, 37, 0.1);
	position: relative;
}

.fff-program-plan__tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #B8945F;
	text-transform: uppercase;
	border: 1px solid #B8945F;
	padding: 0.4em 0.8em;
	margin-bottom: 1.2rem;
}

.fff-program-plan__title {
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	font-weight: 700;
	color: #0F0F0F;
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin: 0 0 1rem;
}

.fff-program-plan__desc {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.95;
	color: rgba(37, 37, 37, 0.78);
	margin: 0 0 1.8rem;
}

.fff-program-plan__meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem 1.8rem;
	margin: 0 0 1.8rem;
	border-top: 1px dashed rgba(37, 37, 37, 0.2);
	border-bottom: 1px dashed rgba(37, 37, 37, 0.2);
	padding: 1.2rem 0;
}

.fff-program-plan__meta div {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 0.6rem;
	font-size: 0.92rem;
	color: rgba(37, 37, 37, 0.85);
	line-height: 1.6;
}

.fff-program-plan__meta strong {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #B8945F;
	text-transform: uppercase;
	align-self: center;
}

.fff-program-plan__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #1A1A1A;
	text-decoration: none;
	padding: 1em 1.8em;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.fff-program-plan__btn:hover {
	background-color: #B8945F;
	transform: translateX(3px);
}

@media (max-width: 640px) {
	.fff-program-plan__meta {
		grid-template-columns: 1fr;
	}
	.fff-program-plan__meta div {
		grid-template-columns: 80px 1fr;
	}
}

/* ── Voice（受講者の声） ───────────────────────────────── */

.fff-voice-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	margin: var(--wp--preset--spacing--l, 3rem) 0 0;
}

.fff-voice-item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.8rem 1.6rem;
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fff-voice-item:hover {
	transform: translateY(-3px);
	box-shadow: 6px 6px 0 0 rgba(184, 148, 95, 0.5);
}

.fff-voice-item__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #B8945F;
	display: grid;
	place-items: center;
	border: 1px solid rgba(184, 148, 95, 0.4);
}

.fff-voice-item__avatar svg {
	width: 70%;
	height: 70%;
}

.fff-voice-item__quote {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.9;
	color: #252525;
	font-style: normal;
	position: relative;
	padding-left: 1rem;
	border-left: 2px solid #B8945F;
}

.fff-voice-item__author {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(37, 37, 37, 0.55);
	margin-top: auto;
}

@media (max-width: 900px) {
	.fff-voice-list {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ── Booking フロー（4 ステップ） ───────────────────── */

.fff-booking-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
	margin: var(--wp--preset--spacing--l, 3rem) 0;
	counter-reset: booking-counter;
	position: relative;
}

/* ステップ間の点線つなぎ */
.fff-booking-flow::before {
	content: '';
	position: absolute;
	top: 1.6rem;
	left: 8%;
	right: 8%;
	height: 1px;
	border-top: 1px dashed rgba(184, 148, 95, 0.5);
	z-index: 0;
}

.fff-booking-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.4rem 1.2rem;
	background-color: #FFFFFF;
	border: 1px solid rgba(37, 37, 37, 0.18);
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fff-booking-step:hover {
	transform: translateY(-3px);
	box-shadow: 6px 6px 0 0 #B8945F;
}

.fff-booking-step--final {
	background-color: #1A1A1A;
	color: #FFFFFF;
	border-color: #1A1A1A;
}

.fff-booking-step__num {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #B8945F;
	text-transform: uppercase;
}

.fff-booking-step__title {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	color: #252525;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.fff-booking-step--final .fff-booking-step__title {
	color: #FFFFFF;
}

.fff-booking-step__desc {
	font-size: 0.85rem;
	line-height: 1.75;
	color: rgba(37, 37, 37, 0.7);
	margin: 0;
}

.fff-booking-step--final .fff-booking-step__desc {
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
	.fff-booking-flow {
		grid-template-columns: repeat(2, 1fr);
	}
	.fff-booking-flow::before {
		display: none;
	}
}

@media (max-width: 540px) {
	.fff-booking-flow {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ============================================================================
   Activities ページ専用：代表カード / カレンダー / LINE 誘導
   ============================================================================ */

.fff-rep-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	max-width: 900px;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
	padding: 2rem;
	border: 1px solid #1A1A1A;
	background-color: #FFFFFF;
	box-shadow: 10px 10px 0 0 #B8945F;
}

.fff-rep-card__avatar {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #252525;
	overflow: hidden;
}

.fff-rep-card__avatar svg {
	width: 70%;
	height: 70%;
}

.fff-rep-card__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #B8945F;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.4rem;
}

.fff-rep-card__name {
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	font-weight: 700;
	color: #252525;
	margin: 0 0 0.4rem;
	letter-spacing: 0.04em;
}

.fff-rep-card__role {
	font-size: 0.95rem;
	color: rgba(37, 37, 37, 0.7);
	margin: 0 0 1rem;
}

.fff-rep-card__bio {
	font-size: 0.92rem;
	line-height: 1.9;
	color: rgba(37, 37, 37, 0.78);
	margin: 0 0 1.2rem;
}

.fff-rep-card__meta {
	display: grid;
	gap: 0.4rem;
	border-top: 1px dashed rgba(37, 37, 37, 0.2);
	padding-top: 1rem;
}

.fff-rep-card__meta div {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 1rem;
	font-size: 0.85rem;
	color: rgba(37, 37, 37, 0.78);
}

.fff-rep-card__meta strong {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #B8945F;
	text-transform: uppercase;
}

@media (max-width: 720px) {
	.fff-rep-card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 1.5rem;
	}
	.fff-rep-card__avatar {
		max-width: 140px;
		margin: 0 auto;
	}
	.fff-rep-card__meta div {
		grid-template-columns: 1fr;
		gap: 0.2rem;
		text-align: left;
	}
}

/* カレンダー */

.fff-calendar-frame {
	max-width: 900px;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
}

.fff-calendar-frame__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem 1.6rem;
	margin-bottom: 1rem;
	font-size: 0.82rem;
	color: rgba(37, 37, 37, 0.72);
}

.fff-calendar-frame__legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.fff-cal-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.fff-cal-dot--live { background-color: #B8945F; }
.fff-cal-dot--workshop { background-color: #1A1A1A; }
.fff-cal-dot--counseling { background-color: #6F8E8F; }
.fff-cal-dot--other { background-color: rgba(37, 37, 37, 0.4); }

.fff-calendar-frame__placeholder {
	aspect-ratio: 4 / 3;
	max-height: 540px;
	border: 1px dashed rgba(37, 37, 37, 0.35);
	background-color: #FFFFFF;
	display: grid;
	place-items: center;
}

.fff-calendar-frame__placeholder-inner {
	text-align: center;
	padding: 2rem;
	color: rgba(37, 37, 37, 0.55);
	max-width: 420px;
}

.fff-calendar-frame__placeholder-inner svg {
	width: 80px;
	height: 80px;
	color: #B8945F;
	margin-bottom: 1rem;
}

.fff-calendar-frame__placeholder-inner p {
	margin: 0.4rem 0;
	font-size: 0.92rem;
}

.fff-calendar-frame__note {
	font-size: 0.82rem !important;
	line-height: 1.7;
	color: rgba(37, 37, 37, 0.55) !important;
}

/* LINE 誘導 */

.fff-line-cta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	max-width: 900px;
	margin: var(--wp--preset--spacing--l, 3rem) auto 0;
	padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
	background-color: #1A1A1A;
	color: #FFFFFF;
	box-shadow: 10px 10px 0 0 #B8945F;
}

.fff-line-cta__icon {
	width: 80px;
	height: 80px;
	color: #B8945F;
}

.fff-line-cta__icon svg {
	width: 100%;
	height: 100%;
}

.fff-line-cta__eyebrow {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #B8945F;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.6rem;
}

.fff-line-cta__title {
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 0.8rem;
	color: #FFFFFF;
}

.fff-line-cta__desc {
	font-size: 0.95rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 1.4rem;
}

.fff-line-cta__btn {
	display: inline-flex;
	align-items: center;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #1A1A1A;
	background-color: #B8945F;
	text-decoration: none;
	padding: 1em 2em;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fff-line-cta__btn:hover {
	background-color: #FFFFFF;
	color: #1A1A1A;
	transform: translateX(3px);
}

@media (max-width: 640px) {
	.fff-line-cta {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 2rem 1.5rem;
	}
	.fff-line-cta__icon {
		margin: 0 auto;
		width: 64px;
		height: 64px;
	}
}

/* ローディング表示（ブログ動的取得中） */
.fff-blog-grid.is-loading {
	min-height: 320px;
	position: relative;
}

.fff-blog-grid.is-loading::after {
	content: 'Loading...';
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(37, 37, 37, 0.45);
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

/* 動的取得した画像表示用 */
.fff-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* グリッドカードに画像入る場合は SVG 非表示 */
.fff-blog-card__image:has(img) svg {
	display: none;
}

/* ── ブログカードのサムネ（既存：旧3カード用、残しておく） ──────── */

.fff-card__thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	width: calc(100% + 2 * var(--wp--preset--spacing--m, 1.5rem));
	margin:
		calc(var(--wp--preset--spacing--m, 1.5rem) * -1)
		calc(var(--wp--preset--spacing--m, 1.5rem) * -1)
		var(--wp--preset--spacing--m, 1.5rem);
	background:
		linear-gradient(135deg, rgba(184, 148, 95, 0.10), rgba(37, 37, 37, 0.04)),
		repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 14px);
	border-bottom: 1px solid rgba(37, 37, 37, 0.12);
	overflow: hidden;
	display: grid;
	place-items: center;
	color: #B8945F;
}

.fff-card__thumb svg {
	width: 38%;
	height: auto;
}

/* バリエーション01：円の中の点（感情の言語化 = 「中心を見る」） */
.fff-card__thumb--01 {
	background:
		radial-gradient(circle at 70% 30%, rgba(184, 148, 95, 0.18), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(250, 250, 247, 1));
}

/* バリエーション02：斜めの線 + 三角（判断・矢印） */
.fff-card__thumb--02 {
	background:
		repeating-linear-gradient(35deg, rgba(184, 148, 95, 0.12) 0 1px, transparent 1px 22px),
		linear-gradient(160deg, rgba(245, 244, 240, 1), rgba(250, 250, 247, 1));
}

/* バリエーション03：同心円（自己理解 = 「観察→分解→翻訳」） */
.fff-card__thumb--03 {
	background:
		radial-gradient(circle at center, transparent 18%, rgba(184, 148, 95, 0.08) 19%, transparent 22%, rgba(184, 148, 95, 0.06) 32%, transparent 34%, rgba(184, 148, 95, 0.05) 46%, transparent 48%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(250, 250, 247, 1));
}

.fff-card__thumb-cat {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(37, 37, 37, 0.55);
	background-color: rgba(255, 255, 255, 0.92);
	padding: 0.25rem 0.55rem;
	border: 1px solid rgba(184, 148, 95, 0.45);
}

/* ── VIDEO リスト ─────────────────────────────────────── */

.fff-video-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin: var(--wp--preset--spacing--l, 3rem) 0 0;
}

.fff-video-item {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(37, 37, 37, 0.18);
	background-color: #FFFFFF;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fff-video-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(37, 37, 37, 0.1);
}

.fff-video-item__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(184, 148, 95, 0.12), rgba(37, 37, 37, 0.06)),
		repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 14px);
	display: grid;
	place-items: center;
	color: #B8945F;
}

.fff-video-item__play {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.95);
	color: #B8945F;
	display: grid;
	place-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	padding-left: 0.2em;
	box-shadow: 0 6px 18px rgba(37, 37, 37, 0.18);
	transition: transform 0.3s ease;
}

.fff-video-item:hover .fff-video-item__play {
	transform: scale(1.08);
}

.fff-video-item__body {
	padding: 1.2rem 1.4rem 1.4rem;
}

.fff-video-item__type {
	display: inline-block;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #B8945F;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
}

.fff-video-item__title {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 700;
	color: #252525;
	letter-spacing: 0.02em;
	line-height: 1.5;
	margin: 0 0 0.5rem 0;
}

.fff-video-item__desc {
	font-size: 0.85rem;
	line-height: 1.75;
	color: rgba(37, 37, 37, 0.7);
	margin: 0 0 0.9rem 0;
}

.fff-video-item__link {
	color: #B8945F;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(184, 148, 95, 0.4);
	padding-bottom: 0.15em;
}

.fff-video-item__link:hover {
	border-bottom-color: #B8945F;
}

@media (max-width: 720px) {
	.fff-upcoming-item {
		grid-template-columns: 80px 1fr;
		gap: 1rem;
		padding: 1.1rem 1.2rem;
	}
	.fff-upcoming-item__link {
		grid-column: 1 / -1;
		text-align: center;
		margin-top: 0.5rem;
	}
	.fff-upcoming-item__day {
		font-size: 1.6rem;
	}
}

/* ============================================================================
   II — VALUE PROPOSITION：アイソメトリック風の 5 ステップ図解
   各ステップを skewY で斜めに傾け、右下にゴールドの影で立体感
   ============================================================================ */

/* ステップ群の上に置く「FFF Process — 5 ステップ」ラベル */
.fff-about-section h3.fff-iso-process-label {
	display: inline-flex !important;
	align-items: center;
	gap: 0.9rem;
	padding: 0.65rem 1.3rem 0.65rem 1rem;
	border: 1px solid #252525;
	border-left: 4px solid #B8945F;
	background-color: #FFFFFF;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em;
	line-height: 1.4;
	color: #252525;
	/* 左寄せに：親の > * { margin: auto } を打ち消す */
	margin-left: 0 !important;
	margin-right: auto !important;
}

.fff-about-section h3.fff-iso-process-label > span {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-weight: 600;
	color: #B8945F;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	padding-right: 0.9rem;
	border-right: 1px solid rgba(37, 37, 37, 0.18);
}

/* 2 カラム：左に人型シルエット、右に階段配置のステップ群 */
.fff-iso-process {
	display: grid;
	grid-template-columns: clamp(180px, 22vw, 280px) 1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
	margin: var(--wp--preset--spacing--l, 3rem) 0 var(--wp--preset--spacing--m, 2rem);
	padding: 1.5rem 0 2rem;
}

.fff-iso-figure {
	position: sticky;
	top: 12vh;
	width: 100%;
	max-width: 260px;
	aspect-ratio: 100 / 220;
	color: #252525;
	justify-self: center;
}

.fff-iso-figure__body {
	width: 100%;
	height: 100%;
	display: block;
}

/* 豆電球：人型の頭の右上にポップアップ。初期は非表示 */
.fff-iso-figure__bulb {
	position: absolute;
	top: -8%;
	right: -10%;
	width: 32%;
	height: auto;
	color: #B8945F;
	opacity: 0;
	transform: scale(0) rotate(-25deg);
	transform-origin: bottom left;
	transition:
		opacity 0.5s ease,
		transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 0 0 rgba(184, 148, 95, 0));
}

.fff-iso-figure.is-celebrate .fff-iso-figure__bulb {
	opacity: 1;
	transform: scale(1) rotate(0deg);
	animation: fff-iso-bulb-pulse 1.6s ease-in-out 0.7s infinite alternate;
}

@keyframes fff-iso-bulb-pulse {
	from {
		filter: drop-shadow(0 0 4px rgba(184, 148, 95, 0.35));
		transform: scale(1) rotate(0deg);
	}
	to {
		filter: drop-shadow(0 0 16px rgba(184, 148, 95, 0.85));
		transform: scale(1.06) rotate(2deg);
	}
}

.fff-iso-steps {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.4rem;
}

.fff-iso-step {
	position: relative;
	width: min(560px, 92%);
	padding: 2rem 2.4rem 2rem 2rem;
	border: 1px solid #252525;
	background-color: #FFFFFF;
	display: grid;
	grid-template-columns: clamp(72px, 9vw, 96px) 1fr;
	column-gap: clamp(1.5rem, 3vw, 2.4rem);
	row-gap: 0.4rem;
	align-items: center;
	box-shadow:
		10px 10px 0 0 #B8945F,
		18px 18px 36px rgba(37, 37, 37, 0.08);
	/* 初期：右側にいて、スクロールで左へスライドイン */
	opacity: 0;
	transform: translateX(140px);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s ease;
}

/* 階段配置：人型カラムから離れていく感じで、下に行くほど右にずれる */
.fff-iso-step:nth-of-type(1) { margin-left: 0%;  }
.fff-iso-step:nth-of-type(2) { margin-left: 5%;  }
.fff-iso-step:nth-of-type(3) { margin-left: 10%; }
.fff-iso-step:nth-of-type(4) { margin-left: 15%; }
.fff-iso-step:nth-of-type(5) { margin-left: 18%; }

/* 左端のゴールドアクセント帯（縦に） */
.fff-iso-step::before {
	content: '';
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	width: 5px;
	background: #B8945F;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

/* スクロールで現れた時に着地（左→0 へスライド） + ゴールド帯が上から伸びる */
.fff-iso-step.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.fff-iso-step.is-visible::before {
	transform: scaleY(1);
}

/* stagger：上から順番に 0.12 秒ずつ遅らせる */
.fff-iso-step:nth-of-type(1) { transition-delay: 0s; }
.fff-iso-step:nth-of-type(2) { transition-delay: 0.12s; }
.fff-iso-step:nth-of-type(3) { transition-delay: 0.24s; }
.fff-iso-step:nth-of-type(4) { transition-delay: 0.36s; }
.fff-iso-step:nth-of-type(5) { transition-delay: 0.48s; }

/* 着地後（is-floating）に浮遊アニメ開始。位相をずらして波打たせる */
.fff-iso-step.is-floating {
	animation: fff-iso-step-float 7s ease-in-out infinite;
}
.fff-iso-step:nth-of-type(1).is-floating { animation-delay: 0s;   }
.fff-iso-step:nth-of-type(2).is-floating { animation-delay: 1.0s; }
.fff-iso-step:nth-of-type(3).is-floating { animation-delay: 2.0s; }
.fff-iso-step:nth-of-type(4).is-floating { animation-delay: 3.0s; }
.fff-iso-step:nth-of-type(5).is-floating { animation-delay: 4.0s; }

@keyframes fff-iso-step-float {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(-3px, -4px); }
}

.fff-iso-step:hover {
	animation-play-state: paused;
	transform: translate(-4px, -4px) !important;
	box-shadow:
		14px 14px 0 0 #B8945F,
		24px 24px 40px rgba(37, 37, 37, 0.15);
}

/* 最終ステップ（適用）は色を反転させて「到達点」を強調 */
.fff-iso-step--final {
	background-color: #252525;
	color: #FFFFFF;
	box-shadow:
		10px 10px 0 0 #B8945F,
		18px 18px 36px rgba(37, 37, 37, 0.14);
}

/* グリッド内の各要素の配置：
   左列にアイコン（行スパン3つ）、右列に番号→タイトル→説明 */
.fff-iso-step__icon {
	grid-column: 1;
	grid-row: 1 / span 3;
	width: clamp(72px, 9vw, 96px) !important;
	height: clamp(72px, 9vw, 96px) !important;
	margin: 0 !important;
}

.fff-iso-step__num,
.fff-iso-step__title,
.fff-iso-step__desc {
	grid-column: 2;
}

.fff-iso-step > * {
	display: block;
}

/* SVG アイコン：黒線 + ゴールドアクセント */
.fff-iso-step__icon {
	display: inline-flex !important;
	width: clamp(38px, 4.4vw, 50px);
	height: clamp(38px, 4.4vw, 50px);
	margin-bottom: 0.2rem;
	color: #252525;
}

.fff-iso-step__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.fff-iso-step__icon .fff-iso-icon-accent {
	color: #B8945F;
	stroke: #B8945F;
	fill: #B8945F;
}

.fff-iso-step--final .fff-iso-step__icon {
	color: #FFFFFF;
}

.fff-iso-step__num {
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: clamp(0.78rem, 1vw, 0.92rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #B8945F;
	margin-bottom: 0.1rem;
}

.fff-iso-step--final .fff-iso-step__num {
	color: #B8945F;
}

.fff-iso-step__title {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 700;
	color: #252525;
	letter-spacing: 0.04em;
	line-height: 1.3;
	margin-bottom: 0.3rem;
}

.fff-iso-step--final .fff-iso-step__title {
	color: #FFFFFF;
}

.fff-iso-step__desc {
	font-size: clamp(0.9rem, 1.15vw, 1rem);
	line-height: 1.75;
	color: rgba(37, 37, 37, 0.72);
}

.fff-iso-step--final .fff-iso-step__desc {
	color: rgba(255, 255, 255, 0.78);
}

/* 矢印：ゴールドの太字。縦並びなので下向きに。reveal が終わってから現れる */
.fff-iso-arrow {
	display: block;
	align-self: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #B8945F;
	line-height: 1;
	transform: rotate(90deg) scale(0);
	opacity: 0;
	transition:
		transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.6s ease;
}

.fff-iso-arrow.is-visible {
	transform: rotate(90deg) scale(1);
	opacity: 1;
	animation: fff-iso-arrow-flow 1.8s ease-in-out infinite;
	animation-delay: 0.6s;
}

.fff-iso-arrow:nth-of-type(1) { transition-delay: 0.18s; }
.fff-iso-arrow:nth-of-type(2) { transition-delay: 0.30s; }
.fff-iso-arrow:nth-of-type(3) { transition-delay: 0.42s; }
.fff-iso-arrow:nth-of-type(4) { transition-delay: 0.54s; }

@keyframes fff-iso-arrow-flow {
	0%, 100% { transform: rotate(90deg) translateX(-4px); opacity: 0.5; }
	50%      { transform: rotate(90deg) translateX(4px);  opacity: 1;   }
}

/* タブレット以下：人型を小さくし、階段オフセットを抑える */
@media (max-width: 900px) {
	.fff-iso-process {
		grid-template-columns: clamp(120px, 18vw, 180px) 1fr;
		gap: 1.2rem;
	}
	.fff-iso-figure {
		max-width: 180px;
		top: 14vh;
	}
	.fff-iso-step { width: min(520px, 92%); }
	.fff-iso-step:nth-of-type(1) { margin-left: 0%; }
	.fff-iso-step:nth-of-type(2) { margin-left: 2%; }
	.fff-iso-step:nth-of-type(3) { margin-left: 4%; }
	.fff-iso-step:nth-of-type(4) { margin-left: 6%; }
	.fff-iso-step:nth-of-type(5) { margin-left: 8%; }
}

/* スマホでは人型を上に小さく配置 + 階段撤廃。カードは幅を狭めて中央寄せ */
@media (max-width: 640px) {
	.fff-iso-process {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.fff-iso-figure {
		position: static;
		max-width: 110px;
		margin: 0 auto 0.5rem;
	}
	.fff-iso-steps {
		align-items: center;
	}
	.fff-iso-step {
		grid-template-columns: clamp(48px, 14vw, 60px) 1fr;
		column-gap: 0.85rem;
		padding: 1.1rem 1rem;
		width: min(82%, 320px);
		/* スマホでは下からスライドインに切替（横スライドだと狭くて見づらい） */
		transform: translateY(40px);
	}
	.fff-iso-step.is-visible {
		transform: translateY(0);
	}
	.fff-iso-step:nth-of-type(n) { margin-left: 0; }
	.fff-iso-step__icon {
		width: clamp(48px, 14vw, 60px) !important;
		height: clamp(48px, 14vw, 60px) !important;
	}
	.fff-iso-step__title {
		font-size: 1.15rem !important;
	}
	.fff-iso-step__desc {
		font-size: 0.82rem !important;
	}
}

/* reduced-motion 設定では振動を止め、最初から表示 */
@media (prefers-reduced-motion: reduce) {
	.fff-iso-step,
	.fff-iso-arrow {
		animation: none !important;
		opacity: 1 !important;
		transition: none !important;
	}
	.fff-iso-step {
		transform: translate(0, 0) !important;
	}
	.fff-iso-step::before {
		transform: scaleY(1) !important;
	}
	.fff-iso-arrow {
		transform: rotate(90deg) scale(1) !important;
	}
}

/* セクション内の色違いは廃止（背景透明） */
.fff-bg-stone,
.fff-bg-paper,
.fff-bg-warm {
	background-color: transparent !important;
}

/* STATEMENT/PHILOSOPHY/VALUE/VALUES セクションの区切り線を非表示
   （ひと続きの流れにするため） */
.entry-content > hr.wp-block-separator {
	display: none !important;
}

/* 連続したセクションの padding を圧縮（ひと続き感） */
.fff-about-section {
	padding-top: var(--wp--preset--spacing--xl, 6rem) !important;
	padding-bottom: var(--wp--preset--spacing--xl, 6rem) !important;
	position: relative;
}

/* ----------------------------------------------------------------------------
   各カラム（カード）ごとに「タイトル + ボックス + 円」のセット
   ・セクション全体の円は廃止
   ・wp-block-column を縦並びジグザグに
   ・各 column の隣に円が並んで流れる
   ---------------------------------------------------------------------------- */

/* セクション全体の円は非表示 */
.fff-section-orb {
	display: none;
}

/* セクション見出し（eyebrow + fff-section-heading = "II — PHILOSOPHY" 等）を大きく */
.fff-about-section .fff-section-heading {
	display: block !important;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif) !important;
	font-size: clamp(2rem, 5vw, 3.5rem) !important;
	font-weight: 400 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: #252525 !important;
	line-height: 1.2 !important;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem) !important;
}

/* セクション見出しの ::before の細い金線も非表示 */
.fff-about-section .fff-section-heading::before {
	display: none !important;
}

/* セクションのリード文（見出し下の大きめ日本語） */
.fff-about-section .fff-section-lead {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif) !important;
	font-size: clamp(1.4rem, 2.8vw, 2rem) !important;
	font-weight: 700 !important;
	line-height: 1.55 !important;
	letter-spacing: 0.04em !important;
	color: #252525 !important;
	margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
	max-width: 700px;
}

/* セクションのサブリード（説明文） */
.fff-about-section .fff-section-sublead {
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif) !important;
	font-size: clamp(0.92rem, 1.4vw, 1rem) !important;
	line-height: 1.95 !important;
	color: rgba(37, 37, 37, 0.68) !important;
	margin-bottom: clamp(2rem, 4vw, 3.5rem) !important;
	max-width: 640px;
}

/* ----------------------------------------------------------------------------
   COMPANY テーブル：黒縁のモダンで知的なデザイン
   ・くっきりした黒い外枠
   ・項目名 (左列) は薄いグレー + 英字風 letter-spacing
   ・値 (右列) はくっきり黒
   ・縞模様じゃなく、罫線で区切る
   ---------------------------------------------------------------------------- */

.fff-about-section .wp-block-table.fff-company-table {
	max-width: 900px;
	margin-left: auto !important;
	margin-right: auto !important;
}

.fff-about-section .fff-company-table table {
	border: 1px solid #252525 !important;
	background-color: transparent !important;
	border-collapse: collapse !important;
	width: 100%;
	font-family: var(--wp--preset--font-family--ja, "Noto Sans JP", system-ui, sans-serif);
}

.fff-about-section .fff-company-table tbody {
	background-color: transparent !important;
}

.fff-about-section .fff-company-table tbody tr {
	background-color: transparent !important;
}

.fff-about-section .fff-company-table tbody tr:not(:last-child) {
	border-bottom: 1px solid rgba(37, 37, 37, 0.15) !important;
}

.fff-about-section .fff-company-table td {
	padding: 1.25rem 1.75rem !important;
	border: none !important;
	font-size: 0.92rem !important;
	line-height: 1.7 !important;
	vertical-align: middle !important;
}

/* 左列（項目名）— 薄いグレー、英字風大文字、letter-spacing */
.fff-about-section .fff-company-table td:first-child {
	width: 28%;
	min-width: 140px;
	color: rgba(37, 37, 37, 0.55) !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	border-right: 1px solid rgba(37, 37, 37, 0.15) !important;
	background-color: transparent !important;
}

.fff-about-section .fff-company-table td:first-child strong {
	font-weight: 600 !important;
}

/* 右列（値）— くっきり黒、読みやすく */
.fff-about-section .fff-company-table td:last-child {
	color: #252525 !important;
	font-weight: 400 !important;
}

/* 縞模様スタイルを無効化（is-style-stripes と相殺） */
.fff-about-section .fff-company-table.is-style-stripes tbody tr:nth-child(2n) {
	background-color: transparent !important;
}

/* レスポンシブ */
@media (max-width: 640px) {
	.fff-about-section .fff-company-table td {
		padding: 1rem 1rem !important;
		font-size: 0.85rem !important;
		display: block;
		border-right: none !important;
	}
	.fff-about-section .fff-company-table td:first-child {
		width: 100%;
		border-bottom: 1px solid rgba(37, 37, 37, 0.08) !important;
		padding-bottom: 0.5rem !important;
	}
	.fff-about-section .fff-company-table td:last-child {
		padding-top: 0.5rem !important;
		padding-bottom: 1.25rem !important;
	}
}

/* ============================================================================
   COMPANY セクション専用：白背景 + ゴールド項目名 + 濃い黒文字 + ゴールド厚影
   サイトの白基調を保ちつつ、ゴールドアクセントで存在感を出す
   ============================================================================ */

.fff-about-section--company .fff-company-table table {
	background-color: #FFFFFF !important;
	border: 1px solid #1A1A1A !important;
	box-shadow: 14px 14px 0 0 #B8945F, 24px 24px 40px rgba(15, 15, 17, 0.10);
}

.fff-about-section--company .fff-company-table tbody,
.fff-about-section--company .fff-company-table tbody tr {
	background-color: transparent !important;
}

.fff-about-section--company .fff-company-table tbody tr:not(:last-child) {
	border-bottom: 1px solid rgba(37, 37, 37, 0.15) !important;
}

.fff-about-section--company .fff-company-table td {
	padding: 1.6rem 2.1rem !important;
	font-size: 1.02rem !important;
	line-height: 1.8 !important;
}

.fff-about-section--company .fff-company-table td:first-child {
	color: #B8945F !important;
	font-size: 0.78rem !important;
	letter-spacing: 0.2em !important;
	border-right-color: rgba(37, 37, 37, 0.15) !important;
}

.fff-about-section--company .fff-company-table td:last-child {
	color: #1A1A1A !important;
	font-weight: 500 !important;
}

@media (max-width: 640px) {
	.fff-about-section--company .fff-company-table td {
		padding: 1.1rem 1.2rem !important;
		font-size: 0.95rem !important;
	}
	.fff-about-section--company .fff-company-table td:first-child {
		border-bottom: 1px solid rgba(37, 37, 37, 0.12) !important;
		font-size: 0.72rem !important;
	}
}

/* セクション内の columns を縦並びに（円が被らないよう間隔広め） */
.fff-about-section .wp-block-columns {
	display: flex !important;
	flex-direction: column !important;
	gap: 12rem !important;
	margin-top: 4rem !important;
	max-width: 1100px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* 各 column = タイトル + ボックス + 円 のセット (column 自体は背景なし) */
.fff-about-section .wp-block-column {
	position: relative;
	flex: none !important;
	width: 40% !important;
	max-width: 360px !important;
	padding: 0 !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	overflow: visible;
}

/* ジグザグ配置: 奇数 (Purpose, Vision) = 左、偶数 (Mission) = 右 */
.fff-about-section .wp-block-column:nth-child(odd) {
	margin-left: 8% !important;
	margin-right: auto !important;
}

/* 偶数 (Mission) は Page Rail のスペース + 円のはみ出し分を確保して右余白を取る */
.fff-about-section .wp-block-column:nth-child(even) {
	margin-left: auto !important;
	margin-right: clamp(8rem, 18%, 14rem) !important;
}

/* eyebrow を大きなタイトルとして上に表示 */
.fff-about-section .wp-block-column .fff-eyebrow {
	display: block;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif) !important;
	font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
	font-weight: 300 !important;
	color: #252525 !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	margin: 0 0 0.75rem !important;
	padding: 0 !important;
	background: transparent !important;
	line-height: 1.2 !important;
	position: relative;
	z-index: 2;
}

/* eyebrow の前の細い金線 (元のスタイル) を非表示 */
.fff-about-section .wp-block-column .fff-eyebrow::before {
	display: none !important;
}

/* h3 がメインボックス：灰色背景、文字の長さに合わせてサイズ調整 */
.fff-about-section .wp-block-column > .wp-block-heading,
.fff-about-section .wp-block-column h3 {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	margin: 0 0 1.25rem !important;
	padding: 1.75rem 2rem !important;
	background-color: rgba(240, 238, 232, 0.85) !important;
	border: 1px solid rgba(184, 148, 95, 0.18) !important;
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	line-height: 2 !important;
	color: #252525 !important;
	white-space: normal !important;
	text-align: left !important;
	z-index: 2;
	letter-spacing: 0.02em !important;
	display: inline-block !important;
	width: auto !important;
	max-width: 100% !important;
}

/* dark カード（Mission）の h3 は黒背景に */
.fff-about-section .wp-block-column.fff-card--dark > .wp-block-heading,
.fff-about-section .wp-block-column.fff-card--dark h3 {
	background-color: rgba(26, 26, 26, 0.9) !important;
	color: rgba(255, 254, 248, 0.92) !important;
	border-color: rgba(184, 148, 95, 0.3) !important;
}

/* 説明文 (p) はボックスの下、小さく */
.fff-about-section .wp-block-column p:not(.fff-eyebrow) {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	font-size: 0.78rem !important;
	line-height: 1.85 !important;
	color: rgba(37, 37, 37, 0.62) !important;
	position: relative;
	z-index: 2;
}

.fff-about-section .wp-block-column.fff-card--dark p:not(.fff-eyebrow) {
	color: rgba(37, 37, 37, 0.62) !important;
}

/* 各 column の隣に大きな円（::after）— ジグザグでクリア画像 */
.fff-about-section .wp-block-column::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background-image: url( 'https://blog.feelfreetofeeling.com/wp-content/uploads/2026/05/hero-stone-1.jpg' );
	background-size: cover;
	background-position: center;
	top: 20%;
	z-index: 1;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	opacity: 1;
}

/* 奇数番目 (Purpose, Vision) = 円が右、ボックス右側に重なる */
.fff-about-section .wp-block-column:nth-child(odd)::after {
	right: -180px;
	left: auto;
}

/* 偶数番目 (Mission) = 円は右だが画面外にはみ出さないように引き気味 */
.fff-about-section .wp-block-column:nth-child(even)::after {
	right: -120px;
	left: auto;
}

/* レスポンシブ: タブレットでは円小さく、column 幅を広げる */
@media (max-width: 1023px) {
	.fff-about-section .wp-block-columns {
		gap: 9rem !important;
	}
	.fff-about-section .wp-block-column {
		width: 55% !important;
		max-width: 380px !important;
	}
	.fff-about-section .wp-block-column:nth-child(even) {
		margin-right: 8% !important; /* Page Rail がないので元のマージンに */
	}
	.fff-about-section .wp-block-column::after {
		width: 220px;
		height: 220px;
	}
	.fff-about-section .wp-block-column:nth-child(odd)::after {
		right: -120px;
		left: auto;
	}
	.fff-about-section .wp-block-column:nth-child(even)::after {
		right: -80px;
		left: auto;
	}
}

/* スマホでは円を背景に小さく、column はフル幅 */
@media (max-width: 640px) {
	.fff-about-section .wp-block-columns {
		gap: 5rem !important;
	}
	.fff-about-section .wp-block-column {
		width: 88% !important;
		max-width: 100% !important;
		margin-left: 6% !important;
		margin-right: 6% !important;
		padding: 0 !important;
	}
	.fff-about-section .wp-block-column:nth-child(odd),
	.fff-about-section .wp-block-column:nth-child(even) {
		margin-left: 6% !important;
		margin-right: 6% !important;
	}
	.fff-about-section .wp-block-column .fff-eyebrow {
		font-size: 1.5rem !important;
	}
	.fff-about-section .wp-block-column > .wp-block-heading,
	.fff-about-section .wp-block-column h3 {
		font-size: 0.92rem !important;
		padding: 1.25rem 1.25rem !important;
	}
	.fff-about-section .wp-block-column::after {
		width: 180px;
		height: 180px;
		opacity: 0.5;
		top: auto;
		bottom: -60px;
		right: -40px;
		left: auto;
	}
	.fff-about-section .wp-block-column:nth-child(odd)::after,
	.fff-about-section .wp-block-column:nth-child(even)::after {
		right: -40px;
		left: auto;
	}
}

/* ----------------------------------------------------------------------------
   2. スクロールフェードイン
   ---------------------------------------------------------------------------- */

.fff-fade-in {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1),
	            transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
	will-change: opacity, transform;
}

.fff-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ----------------------------------------------------------------------------
   ストリームスクロール（参考: kaitonote.com / lenz-co.jp）
   ・要素がスクロールで「下→中央→上」と流れる
   ・画面中央でくっきり、上下端でフェード
   ・JS で opacity と translateY を毎フレーム計算
   ---------------------------------------------------------------------------- */

.fff-stream {
	will-change: transform, opacity;
	transition: none; /* JS で直接 style を当てるので transition なし */
}

/* 連続要素にディレイ（スタガー） */
.fff-fade-in.is-visible.fff-stagger-1 { transition-delay: 0.1s; }
.fff-fade-in.is-visible.fff-stagger-2 { transition-delay: 0.2s; }
.fff-fade-in.is-visible.fff-stagger-3 { transition-delay: 0.3s; }
.fff-fade-in.is-visible.fff-stagger-4 { transition-delay: 0.4s; }
.fff-fade-in.is-visible.fff-stagger-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------------------------
   3. ヒーロー（最初に見える要素）はすぐにフェードイン
   ---------------------------------------------------------------------------- */

.fff-about-hero .fff-eyebrow,
.fff-about-hero h1,
.fff-about-hero p {
	animation: fff-fade-up 1.1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.fff-about-hero .fff-eyebrow { animation-delay: 0.1s; }
.fff-about-hero h1           { animation-delay: 0.3s; }
.fff-about-hero p            { animation-delay: 0.6s; }

@keyframes fff-fade-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ----------------------------------------------------------------------------
   4. カード（fff-card）のホバー浮き上がり
   ---------------------------------------------------------------------------- */

.fff-card {
	transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
	            box-shadow 0.4s ease,
	            border-color 0.4s ease;
	will-change: transform;
}

.fff-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(15, 15, 15, 0.08);
	border-color: var(--wp--preset--color--gold) !important;
}

/* プロセスステップカードのホバー（番号が金色から濃ゴールドに） */
.fff-process-step:hover .fff-eyebrow {
	color: #8B7355 !important;
	letter-spacing: 0.3em;
	transition: color 0.4s ease, letter-spacing 0.4s ease;
}

/* ----------------------------------------------------------------------------
   5. SVG 線アニメ（separator が中央から左右に伸びる）
   ---------------------------------------------------------------------------- */

.wp-block-separator,
hr.wp-block-separator {
	background: transparent !important;
	border: none !important;
	height: 1px !important;
	position: relative !important;
	overflow: hidden;
	margin: var(--wp--preset--spacing--l, 4rem) auto !important;
	max-width: 60%;
	opacity: 1;
}

.wp-block-separator::before,
hr.wp-block-separator::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 0;
	height: 1px;
	background: var(--wp--preset--color--gold, #B8945F);
	transform: translateX(-50%);
	transition: width 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wp-block-separator.is-visible::before,
hr.wp-block-separator.is-visible::before {
	width: 100%;
}

/* ----------------------------------------------------------------------------
   6. リンクの下線がスーッと伸びる
   ---------------------------------------------------------------------------- */

.entry-content a:not(.wp-block-button__link):not(.fff-footer__list a):not(.fff-footer__col--single-link) {
	position: relative;
	text-decoration: none;
	background-image: linear-gradient(to right, var(--wp--preset--color--gold, #B8945F) 0%, var(--wp--preset--color--gold, #B8945F) 100%);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.5s ease, color 0.3s ease;
	padding-bottom: 2px;
}

.entry-content a:not(.wp-block-button__link):not(.fff-footer__list a):not(.fff-footer__col--single-link):hover {
	background-size: 100% 1px;
	color: var(--wp--preset--color--gold, #B8945F);
}

/* ----------------------------------------------------------------------------
   7. ボタンの hover：背景色がスーッと左から右に変わる
   ---------------------------------------------------------------------------- */

.wp-block-button .wp-block-button__link {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.wp-block-button .wp-block-button__link::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--wp--preset--color--gold, #B8945F);
	transition: left 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	z-index: -1;
}

.wp-block-button .wp-block-button__link:hover::after {
	left: 0;
}

.wp-block-button .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--gold, #B8945F) !important;
}

/* ----------------------------------------------------------------------------
   8. 見出しの左に細い金線（h2 だけ）
   ---------------------------------------------------------------------------- */

.fff-about-section > h2.wp-block-heading {
	position: relative;
	padding-left: 1.5rem;
}

.fff-about-section > h2.wp-block-heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0;
	height: 1px;
	background: var(--wp--preset--color--gold, #B8945F);
	transition: width 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.fff-about-section.is-visible > h2.wp-block-heading::before {
	width: 1rem;
}

/* ----------------------------------------------------------------------------
   10. 浮遊する円（ブロブ）— ヒーロー背景に動的な「光る玉」
   ・複数の円が異なる速度・軌道でゆっくり浮遊
   ・blur でぼかして光ってる感じ
   ・mix-blend-mode で背景に馴染ませる
   ---------------------------------------------------------------------------- */

.fff-about-hero {
	position: relative;
	overflow: hidden; /* 浮遊する円を内側に閉じ込める */
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* 石材テクスチャ背景 + 半透明オーバーレイ（文字を読みやすく） */
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.75)),
		url( 'https://blog.feelfreetofeeling.com/wp-content/uploads/2026/05/hero-stone-1.jpg' );
	background-size: cover;
	background-position: center;
}

@media (min-width: 1024px) {
	.fff-about-hero {
		background-attachment: fixed; /* PC でだけスクロール固定（モバイルは挙動が違う） */
	}
}

.fff-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.7;
}

.fff-about-hero > * {
	position: relative;
	z-index: 2;
}

.fff-orb-1 {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(60, 60, 60, 0.22) 0%, rgba(60, 60, 60, 0) 70%);
	top: -120px;
	left: -120px;
	animation: fff-orb-float-1 18s ease-in-out infinite;
}

.fff-orb-2 {
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(37, 37, 37, 0.18) 0%, rgba(37, 37, 37, 0) 70%);
	top: 30%;
	right: -100px;
	animation: fff-orb-float-2 22s ease-in-out infinite;
}

.fff-orb-3 {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(80, 80, 80, 0.18) 0%, rgba(80, 80, 80, 0) 70%);
	bottom: -60px;
	left: 30%;
	animation: fff-orb-float-3 26s ease-in-out infinite;
}

@keyframes fff-orb-float-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25%      { transform: translate(60px, 40px) scale(1.05); }
	50%      { transform: translate(30px, 80px) scale(0.95); }
	75%      { transform: translate(-20px, 40px) scale(1.02); }
}

@keyframes fff-orb-float-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(-50px, 30px) scale(1.08); }
	66%      { transform: translate(-30px, -40px) scale(0.92); }
}

@keyframes fff-orb-float-3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	20%      { transform: translate(40px, -20px) scale(1.1); }
	50%      { transform: translate(80px, -50px) scale(0.9); }
	80%      { transform: translate(20px, -30px) scale(1.05); }
}

/* マウス追従で動くアウトライン円 */
.fff-cursor-orb {
	position: fixed;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	border: 1px solid rgba(184, 148, 95, 0.7);
	box-shadow: 0 0 14px rgba(184, 148, 95, 0.25);
	pointer-events: none;
	z-index: 5;
	transform: translate(-50%, -50%);
	transition: transform 0.18s cubic-bezier(0.215, 0.61, 0.355, 1),
	            opacity 0.3s ease,
	            width 0.3s ease,
	            height 0.3s ease;
	opacity: 0;
}

.fff-cursor-orb.is-active {
	opacity: 1;
}

/* タッチデバイスでは非表示（hover ない） */
@media (hover: none) {
	.fff-cursor-orb {
		display: none !important;
	}
}

/* ----------------------------------------------------------------------------
   11. スクロール進捗表示（右下に固定）
   ---------------------------------------------------------------------------- */

.fff-scroll-progress {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 60;
	font-family: var(--wp--preset--font-family--en, "Inter", sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--wp--preset--color--ink, #252525);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	mix-blend-mode: difference;
	pointer-events: none;
}

.fff-scroll-progress__label {
	color: rgba(37, 37, 37, 0.5);
}

.fff-scroll-progress__value {
	font-variant-numeric: tabular-nums;
	min-width: 2.5em;
	text-align: right;
}

.fff-scroll-progress__bar {
	width: 60px;
	height: 1px;
	background: rgba(184, 148, 95, 0.3);
	position: relative;
	overflow: hidden;
}

.fff-scroll-progress__bar::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: var(--fff-progress, 0%);
	height: 100%;
	background: #B8945F;
	transition: width 0.15s ease-out;
}

@media (max-width: 640px) {
	.fff-scroll-progress {
		display: none;
	}
}

/* ----------------------------------------------------------------------------
   12. パララックス（要素がスクロール量に応じて少し動く）
   ---------------------------------------------------------------------------- */

[data-fff-parallax] {
	will-change: transform;
}

/* ----------------------------------------------------------------------------
   9. reduced-motion 対応
   ---------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.fff-fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.fff-about-hero .fff-eyebrow,
	.fff-about-hero h1,
	.fff-about-hero p {
		animation: none;
	}
	.wp-block-separator::before,
	hr.wp-block-separator::before {
		width: 100%;
		transition: none;
	}
	.fff-card {
		transition: none;
	}
	.fff-card:hover {
		transform: none;
	}
	.fff-orb {
		animation: none !important;
	}
	.fff-cursor-orb {
		display: none !important;
	}
	.fff-global-bg__drop,
	.fff-global-bg__ripple,
	.fff-global-bg__gold-line {
		animation: none !important;
		opacity: 0 !important;
	}
}

/* ============================================================================
   グローバル背景の動き：縦ラインの中で
   ・波紋（黒の細い実線円が、点 → 拡大 → フェード）
   ・ゴールドの玉が上から下にゆっくり落ちる
   ・ゴールドの縦ラインが 1〜2 本、たまにフッと光る
   ============================================================================ */

/* ── ゴールドの縦ライン（縦グリッドの一部をアクセントに） ──────────── */
.fff-global-bg__gold-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(184, 148, 95, 0) 8%,
		rgba(184, 148, 95, 0.55) 50%,
		rgba(184, 148, 95, 0) 92%,
		transparent 100%
	);
	opacity: 0;
	animation: fff-bg-gold-pulse 22s ease-in-out infinite;
}

/* グリッド線（160px 間隔）の上にぴったり乗せる */
.fff-global-bg__gold-line--1 {
	left: 480px;
	animation-delay: 0s;
}

.fff-global-bg__gold-line--2 {
	left: 1120px;
	animation-delay: 11s;
}

@keyframes fff-bg-gold-pulse {
	0%, 100% { opacity: 0; }
	30%, 70% { opacity: 0.8; }
}

/* ── ゴールドの落下玉 ─────────────────────────────────────── */
.fff-global-bg__drops {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* 縦グリッドラインの間隔（160px）にぴったり乗せる */
.fff-global-bg__drop {
	position: absolute;
	top: -20px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #B8945F;
	box-shadow: 0 0 12px rgba(184, 148, 95, 0.7);
	opacity: 0;
	will-change: transform, opacity;
	transform: translateX(-50%);
	animation: fff-bg-drop-fall linear infinite;
}

@keyframes fff-bg-drop-fall {
	0%   { transform: translateX(-50%) translateY(0)                  scale(0.85); opacity: 0; }
	8%   {                                                                          opacity: 0.95; }
	92%  {                                                                          opacity: 0.95; }
	100% { transform: translateX(-50%) translateY(calc(100vh + 60px)) scale(1);    opacity: 0; }
}

/* 各 drop の left / width / duration / delay は JS が画面幅に応じて動的に設定 */

/* ── 波紋（点から大きく広がる細い実線円） ───────────────────────── */
.fff-global-bg__ripples {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* 波紋は width/height アニメで拡大（scale だと線がぼやけるため） */
.fff-global-bg__ripple {
	position: absolute;
	width: 0;
	height: 0;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.45);
	transform: translate(-50%, -50%);
	opacity: 0;
	animation: fff-bg-ripple 5s ease-out forwards;
	pointer-events: none;
	box-sizing: border-box;
}

/* ゴールド波紋（混ぜる） */
.fff-global-bg__ripple--gold {
	border-color: rgba(184, 148, 95, 0.65);
}

@keyframes fff-bg-ripple {
	0%   { width: 0;     height: 0;     opacity: 0; }
	8%   {                              opacity: 0.7; }
	100% { width: 540px; height: 540px; opacity: 0; }
}

@media (max-width: 768px) {
	/* スマホでは縦線の間隔を狭めて密度を保つ */
	.fff-global-bg__grid {
		background-size: 100px 100%;
	}
	.fff-global-bg__gold-line--1 { left: 100px; }
	.fff-global-bg__gold-line--2 { left: 300px; }
	.fff-global-bg__drop {
		width: 6px;
		height: 6px;
	}
}

/* ============================================================
   GAP — 市場のギャップ（DEMAND と APPROACH の橋渡し）
   ============================================================ */
.fff-gap {
	background: #FFFFFF;
	color: #0E0E0E;
	padding: 6rem 1.5rem 6.5rem;
	position: relative;
}
/* ---- Mobile: stack rows as cards ---- */
@media (max-width: 720px) {
	.fff-gap {
		padding: 4.5rem 1.25rem 5rem;
	}

	.fff-gap__lead {
		margin-bottom: 2.25rem;
	}

	.fff-gap__table-wrap {
		border: none;
		overflow: visible;
	}

	.fff-gap__table,
	.fff-gap__table thead,
	.fff-gap__table tbody,
	.fff-gap__table tr,
	.fff-gap__table th,
	.fff-gap__table td {
		display: block;
		width: 100%;
	}

	.fff-gap__table thead {
		position: absolute;
		left: -9999px;
	}

	.fff-gap__table tbody tr {
		border: 1px solid rgba(14, 14, 14, 0.1);
		border-radius: 4px;
		padding: 1.25rem 1.25rem 0.5rem;
		margin-bottom: 1rem;
		background: rgba(184, 153, 104, 0.025);
	}

	.fff-gap__table tbody tr:hover {
		background: rgba(184, 153, 104, 0.05);
	}

	.fff-gap__table th[scope="row"] {
		padding: 0 0 0.75rem;
		font-size: 1.1rem;
		color: #B89968;
		letter-spacing: 0.04em;
		border-bottom: 1px solid rgba(184, 153, 104, 0.25);
		margin-bottom: 0.85rem;
		white-space: normal;
	}

	.fff-gap__table td {
		padding: 0 0 0.85rem;
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.fff-gap__table td::before {
		content: attr(data-label);
		display: block;
		font-size: 0.7rem;
		letter-spacing: 0.16em;
		font-weight: 600;
		color: #B89968;
		text-transform: uppercase;
		margin-bottom: 0.25rem;
	}

	.fff-gap__closing-quote {
		padding: 1rem 0.5rem;
	}
}

/* ============================================================
   WHY FFF — VOICE / MARKET / GAP を 1 セクションに統合（業界の現在地）
   1 本の曲線が 3 つの背景帯（白 → 黒 → 白）を貫通し
   11 ボードを縫う構成。スクロール連動描画 + カードフェードイン
   ============================================================ */

.fff-why {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	/* 背景は透明 → body 直下の .fff-global-bg（縦線・玉・波紋・ゴールドライン）が透ける
	   intro / outro エリアではグローバル背景がフルで見える
	   stage の zone（白/黒/白）だけが background-color で上塗り */
	background-color: transparent;
	color: #0a0a0a;
	overflow: hidden;
}

/* ===== Intro（全幅バナー背景 + 中央オーバーレイ）===== */
.fff-why__intro {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(4rem, 9vw, 7rem) clamp(2rem, 5vw, 3.5rem) 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	text-align: left;
	z-index: 2;
}

/* バナー画像を全幅で背景に敷き、中央上の余白に見出し+リード文をオーバーレイ */
.fff-why__intro--banner {
	display: block;
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	background-image: url('img/headings/landscape.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 2508 / 627;
	min-height: 320px;
}

.fff-why__intro--banner .fff-why__intro-overlay {
	position: absolute;
	top: 50%;
	left: 34%;
	transform: translateY(-50%);
	width: min(36%, 460px);
	text-align: left;
	pointer-events: auto;
}

.fff-why__intro--banner .fff-why__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: clamp(1rem, 1.9vw, 1.6rem);
	line-height: 1.55;
	letter-spacing: 0.08em;
	color: #0a0a0a;
	margin: 0 0 0.9rem;
	text-align: left;
}

.fff-why__intro--banner .fff-why__lead {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(0.7rem, 1.05vw, 0.92rem);
	line-height: 1.85;
	letter-spacing: 0.04em;
	color: rgba(20, 20, 22, 0.78);
	margin: 0;
	text-align: left;
	text-shadow: 0 1px 2px rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
	.fff-why__intro--banner {
		min-height: 200px;
	}
	.fff-why__intro--banner .fff-why__intro-overlay {
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(82%, 380px);
		text-align: center;
	}
	.fff-why__intro--banner .fff-why__title {
		font-size: clamp(0.95rem, 3vw, 1.2rem);
		margin-bottom: 0.4rem;
		text-align: center;
	}
	.fff-why__intro--banner .fff-why__lead {
		font-size: clamp(0.62rem, 1.8vw, 0.78rem);
		line-height: 1.65;
		text-align: center;
	}
}

.fff-why__intro-text {
	max-width: 640px;
	min-width: 0;
}

/* WHY FFF を矢印型タグに */
.fff-why__eyebrow {
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: clamp(0.85rem, 1vw, 1rem);
	margin: 0 0 1.8rem;
	padding: 0.55rem 1.8rem 0.55rem 1.4rem;
	background: #0a0a0a;
	color: #ffffff;
	line-height: 1;
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.fff-why__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: clamp(1.8rem, 3.6vw, 2.7rem);
	line-height: 1.45;
	letter-spacing: 0.04em;
	margin: 0 0 1.6rem;
	color: #141414;
}

/* sub は使わない（B案で削除）*/
.fff-why__sub {
	display: none;
}

.fff-why__lead {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: clamp(0.94rem, 1.2vw, 1.05rem);
	line-height: 2;
	letter-spacing: 0.04em;
	opacity: 0.82;
	margin: 0;
}

/* 右カラム：大きな歩く人 */
.fff-why__intro-figure {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	align-self: end;
}

.fff-why__intro-walker {
	width: clamp(120px, 14vw, 200px);
	height: auto;
	color: #0a0a0a;
	animation: fffWhyWalkIntro 2.6s ease-in-out infinite;
	transform-origin: center;
}

/* intro walker は左向き（line の流れと向き合わせる）+ 上下に揺れる */
@keyframes fffWhyWalkIntro {
	0%, 100% { transform: scaleX(-1) translateY(0); }
	50%      { transform: scaleX(-1) translateY(-4px); }
}

/* SP：1 カラムに、左寄せのまま（歩く人は非表示） */
@media (max-width: 900px) {
	.fff-why__intro {
		grid-template-columns: 1fr;
	}
	.fff-why__intro-text {
		max-width: none;
	}
	.fff-why__intro-figure {
		display: none;
	}
}

/* ===== Stage（3 zone を縦積み・曲線が貫通）===== */
.fff-why__stage {
	position: relative;
	width: 100%;
	height: clamp(3000px, 340vh, 4200px);
	overflow: hidden;
}

/* ゾーン：背景帯と中身の入れ物（カードは zone 内の子）
   z-index を指定しない → stacking context を作らず、子のカードが
   stage レベルの z-index で評価される（カードが線より前に出る） */
.fff-why-zone {
	position: absolute;
	left: 0;
	right: 0;
}

/* zone の bg を半透明にして、グローバル背景の縦線・球・波紋が透けて見える */
.fff-why-zone--voice {
	top: 0;
	height: 33.333%;
	background-color: rgba(255, 255, 255, 0.82);
	color: #0a0a0a;
}

.fff-why-zone--market {
	top: 33.333%;
	height: 33.334%;
	background-color: rgba(0, 0, 0, 0.82);
	color: #f4f1ea;
}

.fff-why-zone--gap {
	top: 66.667%;
	height: 33.333%;
	background-color: rgba(255, 255, 255, 0.82);
	color: #0a0a0a;
}

/* ===== 曲線（stage 直下に絶対配置、3 zone を貫通・カードより後ろ）===== */
.fff-why__line {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: visible;
}

.fff-why__line-stroke {
	fill: none;
	stroke: url(#fffWhyStroke);
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	will-change: stroke-dashoffset;
}

/* 描画進行中の線の先端を示すゴールドの点 */
.fff-why__line-tip {
	position: absolute;
	width: 14px;
	height: 14px;
	margin: 0;
	border-radius: 50%;
	background: var(--wp--preset--color--gold, #c8a44b);
	pointer-events: none;
	z-index: 1;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	box-shadow:
		0 0 18px rgba(200, 164, 75, 0.55),
		0 0 0 5px rgba(200, 164, 75, 0.18);
	will-change: left, top, opacity;
}

.fff-why__line-tip.is-visible {
	opacity: 1;
}

/* tip にやさしい脈動 */
.fff-why__line-tip.is-visible::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px solid rgba(200, 164, 75, 0.5);
	animation: fffWhyTipPulse 1.8s ease-out infinite;
}

@keyframes fffWhyTipPulse {
	0%   { transform: scale(0.6); opacity: 0.8; }
	100% { transform: scale(1.8); opacity: 0; }
}

/* ===== 出発点の歩く人 ===== */
.fff-why__walker {
	position: absolute;
	left: 3.5%;
	top: 1.5%;
	width: clamp(36px, 3.4vw, 50px);
	height: auto;
	color: #0a0a0a;
	z-index: 3;
	transform: translate(-50%, -50%);
	animation: fffWhyWalk 2.6s ease-in-out infinite;
}

@keyframes fffWhyWalk {
	0%, 100% { transform: translate(-50%, -50%) translateY(0); }
	50%      { transform: translate(-50%, -50%) translateY(-3px); }
}

/* ===== ゾーン見出し（矢印型ラベル — 英語ラベル + 日本語サブタイトルが一つに統合）===== */
.fff-why-zone__heading {
	position: absolute;
	left: -4rem;
	top: clamp(2.5rem, 5vw, 4rem);
	z-index: 2;
}

.fff-why-zone__label {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: clamp(0.95rem, 1.2vw, 1.18rem);
	letter-spacing: 0.12em;
	margin: 0;
	padding: 0.75rem 2.8rem 0.75rem 7.5rem;
	line-height: 1.3;
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

/* ゾーン説明文（heading の下、画面左寄せ・PC 横長で自然に wrap） */
.fff-why-zone__intro {
	position: absolute;
	left: clamp(1.5rem, 4vw, 3rem);
	top: calc(clamp(2.5rem, 5vw, 4rem) + 4.5rem);
	max-width: clamp(420px, 38vw, 620px);
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: clamp(0.92rem, 1.05vw, 1.02rem);
	line-height: 1.95;
	letter-spacing: 0.04em;
	color: #0a0a0a;
	z-index: 2;
}

.fff-why-zone--market .fff-why-zone__intro {
	color: rgba(244, 241, 234, 0.88);
}

/* 白背景：黒ベタ＋白文字 */
.fff-why-zone--voice .fff-why-zone__label,
.fff-why-zone--gap .fff-why-zone__label {
	background: #0a0a0a;
	color: #ffffff;
}

/* 黒背景：白ベタ＋黒文字 */
.fff-why-zone--market .fff-why-zone__label {
	background: #ffffff;
	color: #0a0a0a;
}

/* ===== ボード共通 ===== */
.fff-why-card {
	position: absolute;
	left: var(--fff-x, 50%);
	top: var(--fff-y, 50%);
	z-index: 3;
	width: clamp(240px, 22vw, 320px);
	padding: 1.6rem 1.45rem 1.7rem;
	border: 1px solid;
	background: var(--card-bg);
	color: var(--card-color);
	border-color: var(--card-border);
	border-radius: 4px;
	/* 上端中央 (= dot 位置 = path 通過点) を起点に下にぶら下がる「看板」スタイル */
	transform: translate(-50%, 0) translateY(22px);
	opacity: 0;
	transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
	box-shadow: 0 24px 50px -36px rgba(0, 0, 0, 0.45);
	box-sizing: border-box;
}

.fff-why-card.is-in-view {
	opacity: 1;
	transform: translate(-50%, 0) translateY(0);
}

/* 看板スイング — tip が通過した瞬間に dot を支点にぶらーんと揺れる */
.fff-why-card {
	transform-origin: 50% 0;
}

.fff-why-card.is-swinging {
	animation: fffWhyCardSwing 1.4s cubic-bezier(0.36, 1.4, 0.6, 1) forwards;
}

@keyframes fffWhyCardSwing {
	0%   { transform: translate(-50%, 0) rotate(0deg); }
	15%  { transform: translate(-50%, 0) rotate(-3.5deg); }
	35%  { transform: translate(-50%, 0) rotate(2.2deg); }
	55%  { transform: translate(-50%, 0) rotate(-1.4deg); }
	75%  { transform: translate(-50%, 0) rotate(0.7deg); }
	100% { transform: translate(-50%, 0) rotate(0deg); }
}

/* 曲線との接点を視覚化するドット — box の上端中央 (= path 通過点) に配置
   ここから box が看板のように下にぶら下がる */
.fff-why-card__dot {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--wp--preset--color--gold, #c8a44b);
	box-shadow:
		0 0 0 3px var(--card-bg),
		0 0 12px rgba(200, 164, 75, 0.45);
	z-index: 10;
	pointer-events: none;
}

/* VOICE — 白背景の上に黒カード（反転）/ サイズは MARKET と統一 */
.fff-why-card--voice {
	--card-bg: #0a0a0a;
	--card-color: #f4f1ea;
	--card-border: rgba(244, 241, 234, 0.45);
	width: clamp(220px, 19vw, 280px);
	padding: 1.4rem 1.3rem 1.5rem;
}

/* MARKET — 黒背景の上に白カード（反転）/ サイズ基準 */
.fff-why-card--market {
	--card-bg: #ffffff;
	--card-color: #0a0a0a;
	--card-border: rgba(10, 10, 10, 0.5);
	width: clamp(220px, 19vw, 280px);
	padding: 1.4rem 1.3rem 1.5rem;
}

/* GAP — 白背景の上に黒カード（反転）/ サイズは MARKET と統一 */
.fff-why-card--gap {
	--card-bg: #0a0a0a;
	--card-color: #f4f1ea;
	--card-border: rgba(244, 241, 234, 0.35);
	width: clamp(220px, 19vw, 280px);
	padding: 1.4rem 1.3rem 1.5rem;
}

/* ラベル（VOICE 01 / MARKET 02 / GAP 03） */
.fff-why-card__label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: clamp(0.66rem, 0.78vw, 0.78rem);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	opacity: 0.62;
	margin: 0 0 1rem;
}

.fff-why-card--market .fff-why-card__label {
	color: var(--wp--preset--color--gold, #c8a44b);
	opacity: 0.88;
}

/* アイコン（線画） */
.fff-why-card__icon {
	display: block;
	width: 36px;
	height: 36px;
	margin: 0 0 1rem;
	stroke: currentColor;
	stroke-width: 1.3;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	opacity: 0.88;
}

/* プレースホルダ用の小さな線円アイコン */
.fff-why-card__icon--placeholder {
	width: 26px;
	height: 26px;
	border: 1px solid currentColor;
	border-radius: 50%;
	margin-bottom: 1rem;
	opacity: 0.35;
}

/* VOICE カードの画像エリア（線画イラスト） */
.fff-why-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 1.2rem;
	overflow: hidden;
	display: block;
	background: transparent;
}

.fff-why-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

/* VOICE / GAP は黒カード地で、線画を白く見せるため反転処理
   MARKET は白カード地なので画像はそのまま黒線画 */
.fff-why-card--voice .fff-why-card__image img,
.fff-why-card--gap .fff-why-card__image img {
	filter: invert(1);
}

/* VOICE：catch + lead + desc */
.fff-why-card__catch {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 1.45vw, 1.32rem);
	line-height: 1.55;
	letter-spacing: 0.02em;
	margin: 0 0 0.95rem;
	color: var(--card-color);
}

.fff-why-card__lead {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: clamp(0.9rem, 1.02vw, 1.02rem);
	line-height: 1.75;
	letter-spacing: 0.02em;
	margin: 0 0 0.7rem;
	opacity: 0.92;
}

.fff-why-card__desc {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: clamp(0.84rem, 0.96vw, 0.94rem);
	line-height: 1.85;
	letter-spacing: 0.03em;
	margin: 0;
	opacity: 0.78;
}

/* MARKET / GAP：title + desc */
.fff-why-card__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: clamp(1.02rem, 1.32vw, 1.2rem);
	line-height: 1.55;
	letter-spacing: 0.04em;
	margin: 0 0 0.85rem;
	color: var(--card-color);
	position: relative;
}

.fff-why-card__title::after {
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	background: var(--wp--preset--color--gold, #c8a44b);
	margin-top: 0.65rem;
	opacity: 0.75;
}

/* ============================================================
   横長カードレイアウト（PC のみ）
   画像左 + テキスト右、画像とテキストを上下センター揃え
   ============================================================ */
@media (min-width: 901px) {
	.fff-why-card {
		display: flex;
		align-items: center;
		gap: 1.5rem;
	}

	.fff-why-card--voice,
	.fff-why-card--market,
	.fff-why-card--gap {
		width: clamp(420px, 36vw, 560px);
	}

	.fff-why-card__image {
		flex: 0 0 clamp(160px, 22vw, 240px);
		margin: 0;
	}

	.fff-why-card__body {
		flex: 1 1 auto;
		min-width: 0;
	}

	/* body 内のテキスト要素の余白を最適化 */
	.fff-why-card__body .fff-why-card__label {
		margin-bottom: 0.8rem;
	}

	.fff-why-card__body .fff-why-card__catch,
	.fff-why-card__body .fff-why-card__title {
		margin-bottom: 0.7rem;
	}

	.fff-why-card__body .fff-why-card__desc {
		margin-bottom: 0;
	}
}

/* ===== Outro（到着点 — frame が stage の下端に直接接続）=====
   outro 全体に半透明白を当てて、frame の左右余白も同じ透明度で
   グローバル背景がうっすら透ける。zone と同じ仕組み。 */
.fff-why__outro {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(5rem, 9vw, 7rem);
	background: rgba(255, 255, 255, 0.82);
	z-index: 2;
}

/* stage の line が直接 frame の上端まで届くため outro-line は不要 */
.fff-why__outro-line {
	display: none;
}

.fff-why__outro-frame {
	position: relative;
	display: block;
	max-width: 820px;
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 4.5rem);
	background-color: transparent;
	background-image: none;
	color: #0a0a0a;
	border: none;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(1.1rem, 1.5vw, 1.32rem);
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: 0.05em;
	box-shadow: none;
	opacity: 0;
	transform: translateY(28px);
	z-index: 1;
}

.fff-why__outro.is-arrived .fff-why__outro-frame {
	animation: fffWhyFrameArrival 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}

/* フェードイン → 着地 → ジャンプ（一瞬拡大）→ ふっと落ち着く */
@keyframes fffWhyFrameArrival {
	0%   { opacity: 0; transform: translateY(28px) scale(1); }
	50%  { opacity: 1; transform: translateY(0) scale(1); }
	68%  { opacity: 1; transform: translateY(-5px) scale(1.028); }
	82%  { opacity: 1; transform: translateY(0) scale(1.008); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ::before を紙テクスチャ用に転用、外側に展開 */
.fff-why__outro-frame::before {
	content: '';
	position: absolute;
	top: clamp(-4.5rem, -5vw, -2.5rem);
	bottom: clamp(-4.5rem, -5vw, -2.5rem);
	left: clamp(-4.5rem, -6vw, -2.5rem);
	right: clamp(-4.5rem, -6vw, -2.5rem);
	background-image: url('img/boxes/box-11.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-color: transparent;
	border: none;
	width: auto;
	height: auto;
	z-index: -1;
	transition: none;
	pointer-events: none;
}

/* ::after（ゴールドL字下右）は非表示 */
.fff-why__outro-frame::after {
	display: none;
}

/* スマホ：紙画像をさらに大きく（縦も横も）＋フォント縮小＋ARRIVALタグ非表示 */
@media (max-width: 600px) {
	.fff-why__outro-frame::before {
		top: -6rem;
		bottom: -6rem;
		left: -3rem;
		right: -3rem;
	}
	.fff-why__outro-frame {
		font-size: 0.92rem;
		line-height: 1.75;
	}
	.fff-why__outro-accent {
		font-size: 1.1rem;
		line-height: 1.7;
	}
	.fff-why__outro-tag {
		display: none;
	}
}

/* 旧L字コーナーアニメは紙背景化に伴い無効化 */

/* 到着ラベル（box 上端から少しはみ出す）— outro の bg を継承 + ゴールド枠 */
.fff-why__outro-tag {
	position: absolute;
	top: -0.85em;
	left: 50%;
	transform: translateX(-50%) scale(0.5);
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.6rem;
	background: transparent;
	color: var(--wp--preset--color--gold, #b8945f);
	border: 1.5px solid var(--wp--preset--color--gold, #b8945f);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: clamp(0.72rem, 0.85vw, 0.85rem);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.5s ease 1.2s,
	            transform 0.7s cubic-bezier(0.34, 1.7, 0.64, 1) 1.2s;
}

.fff-why__outro.is-arrived .fff-why__outro-tag {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

.fff-why__outro-accent {
	display: block;
	margin-top: 1.2rem;
	color: var(--wp--preset--color--gold, #b8945f);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	line-height: 1.7;
	letter-spacing: 0.04em;
}

@media (max-width: 900px) {
	.fff-why__outro {
		padding: 0 1.75rem clamp(4rem, 10vw, 6rem);
	}

	.fff-why__outro-frame {
		max-width: 440px;
		padding: clamp(2rem, 7vw, 3rem) clamp(1.25rem, 5vw, 1.9rem);
		font-size: clamp(1.05rem, 3.8vw, 1.22rem);
	}

	.fff-why__outro-accent {
		font-size: clamp(1.4rem, 5.5vw, 1.75rem);
		margin-top: 1rem;
	}

	/* 旧L字コーナー設定（紙背景化に伴い無効化） */

	.fff-why__outro-tag {
		font-size: clamp(0.72rem, 3vw, 0.88rem);
		padding: 0.5rem 1.3rem;
		letter-spacing: 0.28em;
	}

	/* SP の outro frame：PC のジャンプアニメじゃなく、左→右スライドに統一
	   スッと入ってきて、最後にふわっと着地 */
	.fff-why__outro-frame {
		animation: none;
		transform: translateX(-32px);
		transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
		            transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
	}

	.fff-why__outro.is-arrived .fff-why__outro-frame {
		animation: none;
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===== SP（左に縦線、看板が右に伸びる横長レイアウト）===== */
@media (max-width: 900px) {
	.fff-why__stage {
		height: auto;
		overflow: visible;
	}

	.fff-why__line,
	.fff-why__walker {
		display: none;
	}

	/* zone：左 padding を増やして全体を右寄りに */
	.fff-why-zone {
		position: relative;
		top: auto !important;
		height: auto !important;
		padding: clamp(3.5rem, 9vw, 5rem) 1.25rem clamp(3.5rem, 9vw, 5rem) 5rem;
	}

	/* SP の zone heading: 通常フローに戻す */
	.fff-why-zone__heading {
		position: relative;
		left: auto;
		top: auto;
		display: block;
		margin: 0 0 1rem;
	}

	/* SP のラベル：左端見切れ、長文対応 */
	.fff-why-zone__label {
		left: -6rem;
		padding: 0.5rem 1.4rem 0.5rem 4rem;
		font-size: clamp(0.72rem, 3vw, 0.9rem);
		letter-spacing: 0.08em;
		text-align: left;
		clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
	}

	/* SP の zone intro：heading の下に流れる */
	.fff-why-zone__intro {
		position: relative;
		left: auto;
		top: auto;
		max-width: none;
		margin: 0 0 2.5rem;
		font-size: clamp(0.8rem, 3.2vw, 0.92rem);
		line-height: 1.85;
	}

	/* zone 個別の縦線は廃止 → stage に貫通する 2 本（ベース + ゴールド進行線）に統合 */
	.fff-why-zone::after {
		display: none;
	}

	/* ベース縦線：stage 全長を貫通する薄いグレー */
	.fff-why__stage::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 2.25rem;
		width: 1px;
		background: rgba(0, 0, 0, 0.18);
		pointer-events: none;
		z-index: 1;
	}

	/* 進行線：スクロール連動で上から下へ伸びる（太く黒く） */
	.fff-why__stage::after {
		content: "";
		position: absolute;
		top: 0;
		left: calc(2.25rem - 1px);
		width: 2.5px;
		height: var(--fff-mobile-line-progress, 0%);
		background: linear-gradient(
			to bottom,
			rgba(10, 10, 10, 0.95),
			rgba(10, 10, 10, 0.95) 92%,
			transparent 100%
		);
		pointer-events: none;
		z-index: 2;
		will-change: height;
	}

	/* カード：横長（画像左 + テキスト右）、dot は box 左外 = 縦線上
	   フェードイン：スッと素早く入ってきて、最後にふわっと着地（expoOut） */
	.fff-why-card {
		position: relative;
		left: auto !important;
		top: auto !important;
		width: 100%;
		max-width: 560px;
		margin: 0 0 1.6rem 0;
		padding: 0.9rem 0.95rem 0.95rem;
		transform: translateX(-32px);
		opacity: 0;
		display: flex;
		align-items: center;
		gap: 0.9rem;
		transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
		            transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.fff-why-card:last-child {
		margin-bottom: 0;
	}

	.fff-why-card.is-in-view {
		transform: translateX(0);
		opacity: 1;
	}

	/* SP では swing 無効化 → 代わりに dot にぽわっと出現アニメ */
	.fff-why-card.is-swinging {
		animation: none;
	}

	.fff-why-card__image {
		flex: 0 0 32%;
		margin: 0;
		aspect-ratio: 1 / 1;
	}

	.fff-why-card__body {
		flex: 1 1 auto;
		min-width: 0;
	}

	.fff-why-card__title,
	.fff-why-card__catch {
		font-size: clamp(0.95rem, 3.8vw, 1.1rem);
		margin-bottom: 0.5rem;
	}

	.fff-why-card__desc {
		font-size: clamp(0.78rem, 3.2vw, 0.9rem);
		line-height: 1.75;
	}

	/* dot は box 左外 -2.75rem（= 画面 2.25rem 位置、縦線上）、垂直中央
	   カード進入時にスケール 0.4 → 1 でぽわっと現れる（ゆっくりめ） */
	.fff-why-card__dot {
		left: -2.75rem;
		top: 50%;
		transform: translate(-50%, -50%) scale(0.4);
		opacity: 0;
		transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.34, 1.55, 0.64, 1);
	}

	.fff-why-card.is-in-view .fff-why-card__dot {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
		transition-delay: 0.55s;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fff-why__walker {
		animation: none;
	}
	.fff-why-card {
		opacity: 1;
		transform: translate(-50%, 0);
	}
	.fff-why-card.is-in-view {
		transform: translate(-50%, 0);
	}
	.fff-why__line-stroke {
		stroke-dashoffset: 0 !important;
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 900px) {
	.fff-why-card,
	.fff-why-card.is-in-view {
		transform: none;
	}
}

/* ============================================================
   セクション見出し（背景画像バナー + 中央に日本語 h2）
   ============================================================ */

/* バナー（タイポ+イラスト焼き込み済み画像）— 全幅背景 + 左寄せオーバーレイ */
.fff-section-banner {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	margin-bottom: clamp(2rem, 5vw, 4rem);
	aspect-ratio: 2508 / 627;
	min-height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* .fff-about-section > * の max-width:1100px / margin:auto を打ち消して全幅化 */
.fff-about-section > .fff-section-banner,
.fff-about-section .fff-section-banner {
	max-width: none !important;
	width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}

.fff-section-banner__overlay {
	position: absolute;
	top: 50%;
	left: 34%;
	transform: translateY(-50%);
	width: min(36%, 460px);
	text-align: left;
	z-index: 2;
}

.fff-section-banner__title {
	margin: 0 0 0.9rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: clamp(1rem, 1.9vw, 1.6rem);
	line-height: 1.55;
	letter-spacing: 0.08em;
	color: #0a0a0a;
	text-align: left;
}

.fff-section-banner__lead {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(0.7rem, 1.05vw, 0.92rem);
	line-height: 1.85;
	letter-spacing: 0.04em;
	color: rgba(20, 20, 22, 0.78);
	text-align: left;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
	.fff-section-banner {
		min-height: 200px;
		margin-bottom: 1.5rem;
	}
	.fff-section-banner__overlay {
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(80%, 360px);
		text-align: center;
	}
	.fff-section-banner__title {
		font-size: clamp(0.95rem, 3vw, 1.2rem);
		margin-bottom: 0.4rem;
		text-align: center;
	}
	.fff-section-banner__lead {
		font-size: clamp(0.62rem, 1.8vw, 0.78rem);
		line-height: 1.65;
		text-align: center;
	}
}

/* 個別画像（assets/img/headings/ 配下） */
.fff-section-banner--landscape { background-image: url('img/headings/landscape.png'); }
.fff-section-banner--approach  { background-image: url('img/headings/approach.png'); }
.fff-section-banner--programs  { background-image: url('img/headings/programs.png'); }
.fff-section-banner--insights  { background-image: url('img/headings/insights.png'); }
.fff-section-banner--profile   { background-image: url('img/headings/profile.png'); }
.fff-section-banner--connect   { background-image: url('img/headings/connect.png'); }

@media (max-width: 640px) {
	.fff-section-banner {
		margin-bottom: 1.5rem;
	}
	.fff-section-banner__title {
		font-size: clamp(0.85rem, 3vw, 1.05rem);
		letter-spacing: 0.06em;
	}
}

/* 画像化されてないセクション（NEWS / CONNECT 仮）は通常 eyebrow テキスト表示 */
.fff-eyebrow.fff-section-heading {
	font-family: 'Inter', 'Helvetica Neue', sans-serif;
	font-weight: 600;
	font-size: clamp(0.78rem, 1vw, 0.95rem);
	line-height: 1.4;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(20, 20, 22, 0.7);
	text-align: center;
	margin: 0 0 0.6rem;
}

.fff-eyebrow.fff-section-heading .fff-letter {
	display: inline-block;
	line-height: 1;
}

.fff-eyebrow.fff-section-heading .fff-letter--odd {
	color: #0a0a0a;
	-webkit-text-stroke: 0;
}

.fff-eyebrow.fff-section-heading .fff-letter--even {
	color: transparent;
	-webkit-text-stroke: 1.6px #0a0a0a;
	text-stroke: 1.6px #0a0a0a;
}

/* 縦線セパレーター + 日本語 h2 */
.fff-section-head .fff-section-title,
.fff-section-head .fff-news__title,
.fff-section-head .fff-why__title {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: clamp(1rem, 1.5vw, 1.3rem);
	line-height: 1.55;
	letter-spacing: 0.12em;
	color: rgba(20, 20, 22, 0.8);
	flex: 1 1 auto;
	border-left: 1px solid rgba(20, 20, 22, 0.22);
	padding-left: clamp(1rem, 2vw, 1.6rem);
	align-self: stretch;
	display: flex;
	align-items: center;
	text-align: left;
}

@media (max-width: 640px) {
	.fff-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}
	.fff-section-head .fff-section-title,
	.fff-section-head .fff-news__title,
	.fff-section-head .fff-why__title {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(20, 20, 22, 0.22);
		padding-top: 0.7rem;
		align-self: stretch;
		font-size: 1rem;
	}
	.fff-eyebrow.fff-section-heading .fff-letter--even {
		-webkit-text-stroke-width: 1.2px;
		text-stroke-width: 1.2px;
	}
}

/* ============================================================
   PROFILE セクション
   ============================================================ */
/* ============================================================
   HOME PROFILE — 二重枠 + 左画像 + 右本文 + 装飾アクセント
   ============================================================ */
.fff-home-profile {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 4rem) 0;
}

.fff-home-profile__inner {
	position: relative;
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: start;
	padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
	border: 3px solid #0a0a0a;
	background: #ffffff;
}

/* 外側の二重枠（オフセットされた背景フレーム） */
.fff-home-profile__inner::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 14px;
	right: -14px;
	bottom: -14px;
	border: 2px solid rgba(10, 10, 10, 0.3);
	z-index: -1;
	pointer-events: none;
}

/* === 左カラム：画像 + 資格ボックス === */
.fff-home-profile__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 2.5vw, 2.2rem);
}

.fff-home-profile__frame {
	position: relative;
	border: 3px solid #0a0a0a;
	background: rgba(255, 255, 255, 0.6);
	overflow: visible;
}

.fff-home-profile__photo {
	display: block;
	width: 100%;
	height: auto;
	margin-top: -10%;
	position: relative;
	z-index: 2;
}

/* 装飾：点線円・ハーフトーン点・斜め線 */
.fff-home-profile__dot {
	position: absolute;
	pointer-events: none;
}

.fff-home-profile__dot--ring {
	top: -28px;
	right: -28px;
	width: clamp(70px, 9vw, 110px);
	height: clamp(70px, 9vw, 110px);
	border: 1px dashed rgba(10, 10, 10, 0.5);
	border-radius: 50%;
	z-index: 1;
}

.fff-home-profile__dot--halftone {
	bottom: 12%;
	left: -22px;
	width: clamp(60px, 8vw, 90px);
	height: clamp(60px, 8vw, 90px);
	background-image: radial-gradient(circle, rgba(10, 10, 10, 0.55) 1px, transparent 1.5px);
	background-size: 8px 8px;
	z-index: 0;
}

.fff-home-profile__dot--line {
	bottom: -22px;
	left: 30%;
	width: clamp(60px, 8vw, 110px);
	height: 1px;
	background: rgba(10, 10, 10, 0.4);
	z-index: 1;
}

/* === 右カラム：本文 === */
.fff-home-profile__content {
	font-family: 'Noto Sans JP', sans-serif;
	color: #0a0a0a;
}

.fff-home-profile__eyebrow {
	display: inline-block;
	margin: 0 0 1.2rem;
	padding: 0.35rem 0.9rem;
	background: #0a0a0a;
	color: #ffffff;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: clamp(0.7rem, 0.85vw, 0.8rem);
	letter-spacing: 0.18em;
}

.fff-home-profile__title {
	margin: 0 0 0.3rem;
	font-size: clamp(1.7rem, 2.8vw, 2.4rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	display: flex;
	align-items: baseline;
	gap: 0.6em;
	flex-wrap: wrap;
}

.fff-home-profile__role-prefix {
	font-size: 0.5em;
	font-weight: 500;
	color: rgba(20, 20, 22, 0.6);
	letter-spacing: 0.18em;
}

.fff-home-profile__title strong {
	font-weight: 700;
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	letter-spacing: 0.04em;
}

.fff-home-profile__role {
	margin: 0 0 1.8rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid rgba(10, 10, 10, 0.85);
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	color: rgba(20, 20, 22, 0.7);
	letter-spacing: 0.06em;
}

.fff-home-profile__body p {
	margin: 0 0 1.2rem;
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	line-height: 2;
	letter-spacing: 0.04em;
	color: rgba(20, 20, 22, 0.88);
}

.fff-home-profile__body p:last-child {
	margin-bottom: 1.8rem;
}

.fff-home-profile__credentials {
	position: relative;
	margin: 0;
	padding: 1rem 1.2rem;
	border: 2px solid #0a0a0a;
	background: rgba(255, 255, 255, 0.7);
}

.fff-home-profile__credentials::after {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	width: 18px;
	height: 18px;
	background: #0a0a0a;
	clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.fff-home-profile__credentials-label {
	display: inline-block;
	margin: 0 0 0.6rem;
	padding: 0.2rem 0.7rem;
	background: #0a0a0a;
	color: #ffffff;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.fff-home-profile__credentials-list {
	margin: 0;
	font-size: clamp(0.78rem, 0.92vw, 0.88rem);
	line-height: 1.85;
	letter-spacing: 0.03em;
	color: rgba(20, 20, 22, 0.8);
}

/* SNS リンク（YouTube / Instagram / X / TikTok）— 中央寄せ＋広めのgap */
.fff-home-profile__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.4rem, 2.5vw, 2rem);
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.fff-home-profile__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(46px, 4.5vw, 54px);
	height: clamp(46px, 4.5vw, 54px);
	border: 2.5px solid #0a0a0a;
	border-radius: 50%;
	color: #0a0a0a;
	background: transparent;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fff-home-profile__social-link svg {
	width: 45%;
	height: 45%;
	display: block;
}

.fff-home-profile__social-link:hover,
.fff-home-profile__social-link:focus-visible {
	background: #0a0a0a;
	color: #ffffff;
	transform: translateY(-2px);
}

.fff-home-profile__social-link:focus-visible {
	outline: 2px solid var(--wp--preset--color--gold, #b8945f);
	outline-offset: 3px;
}

/* スマホ：1カラム積み戻し */
@media (max-width: 768px) {
	.fff-home-profile__inner {
		grid-template-columns: 1fr;
		gap: clamp(1.5rem, 4vw, 2.5rem);
		padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
	}
	.fff-home-profile__inner::before {
		top: 10px;
		left: 10px;
		right: -10px;
		bottom: -10px;
	}
	/* 画像枠を小さく中央寄せ（顔が大きすぎ問題対策） */
	.fff-home-profile__frame {
		width: 55%;
		max-width: 260px;
		margin: 0 auto;
	}
	.fff-home-profile__photo {
		margin-top: -8%;
	}
	.fff-home-profile__dot--ring {
		top: -12px;
		right: 8%;
		width: 50px;
		height: 50px;
	}
	.fff-home-profile__dot--halftone {
		bottom: 8%;
		left: 6%;
		width: 45px;
		height: 45px;
	}
	.fff-home-profile__dot--line {
		bottom: -10px;
	}
	.fff-home-profile__title {
		font-size: clamp(1.4rem, 5vw, 1.8rem);
		margin-bottom: 0.3rem;
	}
	.fff-home-profile__role {
		margin-bottom: 1.4rem;
		padding-bottom: 0.9rem;
	}
	.fff-home-profile__body p {
		font-size: 0.88rem;
		line-height: 1.9;
	}
}

/* ============================================================
   サイトマップ（CONNECT セクション内、5 つのリンク）
   ============================================================ */
.fff-home-sitemap {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(0.5rem, 1.5vw, 1.4rem);
	max-width: 1100px;
	margin: 0 auto 3rem;
	padding: 0;
	list-style: none;
}

.fff-home-sitemap__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	padding: 1.5rem 0.75rem;
	border: 1px solid rgba(20, 20, 22, 0.15);
	background: rgba(255, 255, 255, 0.7);
	color: #141414;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.fff-home-sitemap__item:hover {
	background: #0a0a0a;
	color: #f4f1ea;
	transform: translateY(-3px);
	border-color: #0a0a0a;
}

.fff-home-sitemap__en {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: clamp(0.92rem, 1.2vw, 1.1rem);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fff-home-sitemap__ja {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: clamp(0.7rem, 0.85vw, 0.82rem);
	letter-spacing: 0.04em;
	opacity: 0.72;
}

@media (max-width: 700px) {
	.fff-home-sitemap {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.6rem;
	}
	.fff-home-sitemap__item {
		padding: 1.1rem 0.5rem;
	}
}

