/*
 * 秋田に行きたい！ トップページ専用CSS
 * 適用範囲：body.home
 */

/* =========================================================
   Cocoon本文レイアウトの解除
========================================================= */

body.home #content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.home #content-in {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.home #main {
	float: none !important;
	flex: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.home #sidebar {
	display: none !important;
}

/* =========================================================
   基本設定
========================================================= */

body.home .fp-root {
	--fp-color-primary: #173b35;
	--fp-color-primary-dark: #0d2824;
	--fp-color-primary-light: #e8f0ed;
	--fp-color-accent: #c49346;
	--fp-color-accent-light: #f4e8d3;
	--fp-color-text: #26312f;
	--fp-color-text-light: #66716f;
	--fp-color-white: #ffffff;
	--fp-color-off-white: #f8f7f3;
	--fp-color-surface: #f1f0eb;
	--fp-color-border: #deded6;
	--fp-color-dark-surface: #122c28;
	--fp-color-shadow: rgba(18, 44, 40, 0.12);
	--fp-inner-width: 1180px;
	--fp-inner-padding: clamp(20px, 4vw, 48px);
	--fp-section-space: clamp(72px, 9vw, 128px);
	--fp-radius-large: 28px;
	--fp-radius-medium: 18px;
	--fp-radius-small: 10px;

	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--fp-color-off-white);
	color: var(--fp-color-text);
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Helvetica Neue",
		"Yu Gothic",
		YuGothic,
		"ヒラギノ角ゴ ProN W3",
		"Hiragino Kaku Gothic ProN",
		Meiryo,
		sans-serif;
	font-size: 16px;
	line-height: 1.85;
	-webkit-font-smoothing: antialiased;
}

body.home .fp-root,
body.home .fp-root *,
body.home .fp-root *::before,
body.home .fp-root *::after {
	box-sizing: border-box;
}

body.home .fp-root :where(
	h1,
	h2,
	h3,
	p,
	ul,
	ol,
	li,
	figure,
	blockquote
) {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

body.home .fp-root :where(ul, ol) {
	list-style: none;
}

body.home .fp-root :where(h1, h2, h3) {
	color: inherit;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

body.home .fp-root :where(a) {
	color: inherit;
	text-decoration: none;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease,
		opacity 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

body.home .fp-root :where(img) {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.home .fp-root :where(a, button):focus-visible {
	outline: 3px solid var(--fp-color-accent);
	outline-offset: 4px;
}

body.home .fp-inner {
	position: relative;
	z-index: 2;
	width: min(100%, var(--fp-inner-width));
	margin: 0 auto;
	padding-right: var(--fp-inner-padding);
	padding-left: var(--fp-inner-padding);
}

/* =========================================================
   共通見出し
========================================================= */

body.home .fp-section-heading {
	margin-bottom: clamp(34px, 5vw, 60px);
}

body.home .fp-section-heading-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
	gap: 48px;
	align-items: end;
}

body.home .fp-section-heading-light {
	color: var(--fp-color-white);
}

body.home .fp-section-kicker {
	margin-bottom: 12px;
	color: var(--fp-color-accent);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

body.home .fp-section-title {
	color: var(--fp-color-primary-dark);
	font-size: clamp(2rem, 4vw, 3.55rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

body.home .fp-section-heading-light .fp-section-title {
	color: var(--fp-color-white);
}

body.home .fp-section-description {
	color: var(--fp-color-text-light);
	font-size: clamp(0.96rem, 1.25vw, 1.05rem);
	line-height: 1.9;
}

body.home .fp-section-heading-light .fp-section-description {
	color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   ボタン
========================================================= */

body.home .fp-button {
	display: inline-flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

body.home .fp-button:hover {
	transform: translateY(-2px);
}

body.home .fp-button-primary {
	background: var(--fp-color-accent);
	color: var(--fp-color-primary-dark);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body.home .fp-button-primary:hover {
	background: #d5a75e;
	color: var(--fp-color-primary-dark);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

body.home .fp-button-outline {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.07);
	color: var(--fp-color-white);
	backdrop-filter: blur(5px);
}

body.home .fp-button-outline:hover {
	border-color: var(--fp-color-white);
	background: rgba(255, 255, 255, 0.15);
	color: var(--fp-color-white);
}

body.home .fp-button-light {
	background: var(--fp-color-white);
	color: var(--fp-color-primary-dark);
}

body.home .fp-button-light:hover {
	background: var(--fp-color-accent-light);
	color: var(--fp-color-primary-dark);
}

body.home .fp-button-arrow {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	font-size: 0.9rem;
}

/* =========================================================
   ヒーロー
========================================================= */

body.home .fp-hero {
	position: relative;
	display: flex;
	min-height: clamp(680px, 82vh, 900px);
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background: var(--fp-color-primary-dark);
	color: var(--fp-color-white);
}

body.home .fp-hero-media,
body.home .fp-hero-shade {
	position: absolute;
	inset: 0;
}

body.home .fp-hero-media {
	z-index: -3;
}

body.home .fp-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 54%;
	animation: fp-hero-zoom 18s ease-out both;
}

body.home .fp-hero-shade {
	z-index: -2;
	background:
		linear-gradient(
			90deg,
			rgba(8, 31, 28, 0.94) 0%,
			rgba(8, 31, 28, 0.82) 40%,
			rgba(8, 31, 28, 0.38) 72%,
			rgba(8, 31, 28, 0.18) 100%
		),
		linear-gradient(
			0deg,
			rgba(8, 31, 28, 0.64) 0%,
			transparent 45%
		);
}

body.home .fp-hero::before {
	position: absolute;
	z-index: -1;
	right: -110px;
	bottom: -130px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 50%;
	content: "";
}

body.home .fp-hero::after {
	position: absolute;
	z-index: -1;
	right: 75px;
	bottom: -70px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
}

body.home .fp-hero-inner {
	display: flex;
	min-height: inherit;
	align-items: center;
	padding-top: clamp(70px, 9vw, 130px);
	padding-bottom: clamp(110px, 13vw, 170px);
}

body.home .fp-hero-content {
	width: min(100%, 760px);
	animation: fp-content-up 0.9s ease-out both;
}

body.home .fp-hero-label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	color: var(--fp-color-accent-light);
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.22em;
}

body.home .fp-hero-label::before {
	width: 44px;
	height: 1px;
	background: var(--fp-color-accent);
	content: "";
}

body.home .fp-hero-title {
	max-width: 740px;
	color: var(--fp-color-white);
	font-size: clamp(2.75rem, 6.4vw, 5.7rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0.025em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

body.home .fp-hero-lead {
	margin-top: clamp(25px, 4vw, 38px);
	color: var(--fp-color-white);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.025em;
}

body.home .fp-hero-description {
	max-width: 680px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.79);
	font-size: clamp(0.9rem, 1.25vw, 1rem);
	line-height: 2;
}

body.home .fp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

body.home .fp-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-top: clamp(42px, 6vw, 62px);
	border-top: 1px solid rgba(255, 255, 255, 0.24);
}

body.home .fp-hero-point {
	display: flex;
	min-width: 150px;
	align-items: center;
	gap: 12px;
	padding: 18px 28px 0 0;
}

body.home .fp-hero-point + .fp-hero-point {
	margin-left: 28px;
	padding-left: 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

body.home .fp-hero-point-number {
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.85rem;
	font-style: italic;
}

body.home .fp-hero-point-text {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* =========================================================
   クイックナビゲーション
========================================================= */

body.home .fp-quick-nav {
	position: relative;
	z-index: 5;
	margin-top: -58px;
}

body.home .fp-quick-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	background: var(--fp-color-white);
	border-radius: var(--fp-radius-medium);
	box-shadow: 0 20px 60px rgba(13, 40, 36, 0.18);
	overflow: hidden;
}

body.home .fp-quick-item {
	position: relative;
	display: flex;
	min-height: 116px;
	flex-direction: column;
	justify-content: center;
	padding: 20px 18px;
	border-right: 1px solid var(--fp-color-border);
	background: var(--fp-color-white);
}

body.home .fp-quick-item:last-child {
	border-right: 0;
}

body.home .fp-quick-item:hover {
	z-index: 2;
	background: var(--fp-color-primary);
	color: var(--fp-color-white);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(13, 40, 36, 0.22);
}

body.home .fp-quick-number {
	margin-bottom: 4px;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.75rem;
	font-style: italic;
	line-height: 1.3;
}

body.home .fp-quick-name {
	color: var(--fp-color-primary-dark);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.55;
}

body.home .fp-quick-item:hover .fp-quick-name {
	color: var(--fp-color-white);
}

body.home .fp-quick-arrow {
	position: absolute;
	right: 15px;
	bottom: 14px;
	color: var(--fp-color-text-light);
	font-size: 0.85rem;
}

body.home .fp-quick-item:hover .fp-quick-arrow {
	color: var(--fp-color-accent-light);
}

/* =========================================================
   導入
========================================================= */

body.home .fp-intro {
	padding: clamp(120px, 14vw, 190px) 0 var(--fp-section-space);
	background:
		linear-gradient(
			90deg,
			transparent 0,
			transparent 49.94%,
			rgba(23, 59, 53, 0.08) 50%,
			transparent 50.06%
		),
		var(--fp-color-off-white);
}

body.home .fp-intro-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(45px, 8vw, 100px);
	align-items: start;
}

body.home .fp-intro-copy {
	padding-top: 12px;
}

body.home .fp-intro-copy p {
	color: var(--fp-color-text-light);
	font-size: clamp(1rem, 1.45vw, 1.1rem);
	line-height: 2.15;
}

body.home .fp-intro-copy p + p {
	margin-top: 24px;
}

/* =========================================================
   記事一覧
========================================================= */

body.home .fp-post-section {
	padding: var(--fp-section-space) 0;
	background: var(--fp-color-white);
}

body.home .fp-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.72fr);
	gap: clamp(30px, 4vw, 52px);
	align-items: start;
}

body.home .fp-latest-panel {
	min-width: 0;
}

body.home .fp-panel-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--fp-color-border);
}

body.home .fp-panel-label {
	margin-bottom: 3px;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.75rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
}

body.home .fp-panel-title {
	color: var(--fp-color-primary-dark);
	font-size: clamp(1.3rem, 2vw, 1.65rem);
}

body.home .fp-panel-note {
	color: var(--fp-color-text-light);
	font-size: 0.78rem;
}

body.home .fp-latest-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 24px;
}

body.home .fp-post-item {
	min-width: 0;
}

body.home .fp-post-image-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--fp-radius-medium);
	background: var(--fp-color-surface);
	aspect-ratio: 16 / 10;
}

body.home .fp-post-image-link::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 55%,
		rgba(13, 40, 36, 0.16) 100%
	);
	content: "";
	pointer-events: none;
}

body.home .fp-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

body.home .fp-post-item:hover .fp-post-image {
	transform: scale(1.055);
}

body.home .fp-post-body {
	padding-top: 18px;
}

body.home .fp-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
}

body.home .fp-post-category {
	display: inline-flex;
	align-items: center;
	color: var(--fp-color-primary);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

body.home .fp-post-category::before {
	width: 18px;
	height: 1px;
	margin-right: 8px;
	background: var(--fp-color-accent);
	content: "";
}

body.home .fp-post-category:hover {
	color: var(--fp-color-accent);
}

body.home .fp-post-date {
	flex-shrink: 0;
	color: #89918f;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.72rem;
	font-style: italic;
	line-height: 1.5;
}

body.home .fp-post-title {
	color: var(--fp-color-primary-dark);
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.65;
}

body.home .fp-post-title a:hover {
	color: var(--fp-color-accent);
}

body.home .fp-post-excerpt {
	display: -webkit-box;
	margin-top: 10px;
	overflow: hidden;
	color: var(--fp-color-text-light);
	font-size: 0.85rem;
	line-height: 1.85;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.home .fp-post-more {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 14px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--fp-color-primary);
	color: var(--fp-color-primary);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

body.home .fp-post-more:hover {
	border-color: var(--fp-color-accent);
	color: var(--fp-color-accent);
}

body.home .fp-post-more-arrow {
	transition: transform 0.25s ease;
}

body.home .fp-post-more:hover .fp-post-more-arrow {
	transform: translateX(4px);
}

body.home .fp-featured-panel {
	position: sticky;
	top: 24px;
	padding: clamp(25px, 3.5vw, 38px);
	border-radius: var(--fp-radius-large);
	background: var(--fp-color-dark-surface);
	color: var(--fp-color-white);
	box-shadow: 0 22px 60px rgba(13, 40, 36, 0.17);
}

body.home .fp-panel-heading-dark {
	border-color: rgba(255, 255, 255, 0.14);
}

body.home .fp-panel-heading-dark .fp-panel-title {
	color: var(--fp-color-white);
}

body.home .fp-featured-list {
	display: grid;
	gap: 22px;
}

body.home .fp-post-item-compact {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 17px;
	align-items: start;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.home .fp-post-item-compact:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

body.home .fp-post-item-compact .fp-post-image-link {
	border-radius: var(--fp-radius-small);
	aspect-ratio: 1 / 1;
}

body.home .fp-post-item-compact .fp-post-body {
	padding-top: 0;
}

body.home .fp-post-item-compact .fp-post-meta {
	margin-bottom: 7px;
}

body.home .fp-post-item-compact .fp-post-category {
	color: var(--fp-color-accent-light);
	font-size: 0.62rem;
}

body.home .fp-post-item-compact .fp-post-date {
	display: none;
}

body.home .fp-post-item-compact .fp-post-title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--fp-color-white);
	font-size: 0.92rem;
	line-height: 1.62;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body.home .fp-post-item-compact .fp-post-title a:hover {
	color: var(--fp-color-accent-light);
}

body.home .fp-post-item-compact .fp-post-excerpt,
body.home .fp-post-item-compact .fp-post-more {
	display: none;
}

body.home .fp-empty-message {
	padding: 32px;
	border: 1px solid var(--fp-color-border);
	border-radius: var(--fp-radius-medium);
	background: var(--fp-color-off-white);
	color: var(--fp-color-text-light);
	text-align: center;
}

body.home .fp-empty-message-dark {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   目的から探す
========================================================= */

body.home .fp-purpose-section {
	position: relative;
	padding: var(--fp-section-space) 0;
	isolation: isolate;
	overflow: hidden;
	background: var(--fp-color-primary-dark);
}

body.home .fp-purpose-media,
body.home .fp-purpose-shade {
	position: absolute;
	inset: 0;
}

body.home .fp-purpose-media {
	z-index: -3;
}

body.home .fp-purpose-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

body.home .fp-purpose-shade {
	z-index: -2;
	background:
		linear-gradient(
			90deg,
			rgba(9, 35, 31, 0.97) 0%,
			rgba(9, 35, 31, 0.91) 48%,
			rgba(9, 35, 31, 0.76) 100%
		),
		linear-gradient(
			0deg,
			rgba(9, 35, 31, 0.45),
			rgba(9, 35, 31, 0.45)
		);
}

body.home .fp-purpose-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

body.home .fp-purpose-item {
	position: relative;
	display: flex;
	min-height: 330px;
	flex-direction: column;
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--fp-radius-medium);
	background: rgba(255, 255, 255, 0.07);
	color: var(--fp-color-white);
	backdrop-filter: blur(7px);
}

body.home .fp-purpose-item:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.13);
	color: var(--fp-color-white);
	transform: translateY(-5px);
}

body.home .fp-purpose-number {
	margin-bottom: auto;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	font-style: italic;
}

body.home .fp-purpose-title {
	display: block;
	margin-top: 42px;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 700;
	line-height: 1.55;
}

body.home .fp-purpose-text {
	display: block;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.88rem;
	line-height: 1.85;
}

body.home .fp-purpose-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--fp-color-accent-light);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* =========================================================
   カテゴリー
========================================================= */

body.home .fp-category-section {
	padding: var(--fp-section-space) 0;
	background: var(--fp-color-off-white);
}

body.home .fp-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

body.home .fp-category-item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--fp-color-border);
	border-radius: var(--fp-radius-large);
	background: var(--fp-color-white);
	box-shadow: 0 12px 40px rgba(18, 44, 40, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

body.home .fp-category-item:hover {
	border-color: rgba(196, 147, 70, 0.5);
	transform: translateY(-7px);
	box-shadow: 0 24px 55px rgba(18, 44, 40, 0.12);
}

body.home .fp-category-image-link {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--fp-color-surface);
	aspect-ratio: 16 / 10;
}

body.home .fp-category-image-link::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 50%,
		rgba(13, 40, 36, 0.4) 100%
	);
	content: "";
	pointer-events: none;
}

body.home .fp-category-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s ease;
}

body.home .fp-category-item:hover .fp-category-image {
	transform: scale(1.06);
}

body.home .fp-category-image-number {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 15px;
	color: var(--fp-color-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-style: italic;
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

body.home .fp-category-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(24px, 3.5vw, 34px);
}

body.home .fp-category-label {
	margin-bottom: 4px;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.68rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
}

body.home .fp-category-title {
	color: var(--fp-color-primary-dark);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

body.home .fp-category-title a:hover {
	color: var(--fp-color-accent);
}

body.home .fp-category-description {
	margin-top: 16px;
	color: var(--fp-color-text-light);
	font-size: 0.87rem;
	line-height: 1.9;
}

body.home .fp-category-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 24px;
	color: var(--fp-color-primary);
	font-size: 0.79rem;
	font-weight: 700;
	letter-spacing: 0.025em;
}

body.home .fp-category-button span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--fp-color-border);
	border-radius: 50%;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

body.home .fp-category-button:hover {
	color: var(--fp-color-accent);
}

body.home .fp-category-button:hover span {
	border-color: var(--fp-color-primary);
	background: var(--fp-color-primary);
	color: var(--fp-color-white);
	transform: translateX(3px);
}

body.home .fp-category-item-wide {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

body.home .fp-category-item-wide .fp-category-image-link {
	height: 100%;
	min-height: 360px;
	aspect-ratio: auto;
}

body.home .fp-category-item-wide .fp-category-body {
	justify-content: center;
	padding: clamp(34px, 6vw, 70px);
}

/* =========================================================
   運営組織
========================================================= */

body.home .fp-about-section {
	padding: var(--fp-section-space) 0;
	background: var(--fp-color-white);
}

body.home .fp-about-box {
	display: grid;
	grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
	min-height: 540px;
	overflow: hidden;
	border-radius: var(--fp-radius-large);
	background: var(--fp-color-dark-surface);
	box-shadow: 0 26px 70px rgba(13, 40, 36, 0.16);
}

body.home .fp-about-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(45px, 7vw, 90px);
	background:
		radial-gradient(
			circle at 50% 45%,
			rgba(255, 255, 255, 0.12),
			transparent 52%
		),
		var(--fp-color-primary);
}

body.home .fp-about-logo {
	width: min(100%, 310px);
	max-height: 310px;
	object-fit: contain;
	border-radius: 20px;
	background: var(--fp-color-white);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

body.home .fp-about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(42px, 7vw, 88px);
	color: var(--fp-color-white);
}

body.home .fp-about-title {
	color: var(--fp-color-white);
	font-size: clamp(2rem, 4vw, 3.2rem);
}

body.home .fp-about-lead {
	margin-top: 27px;
	color: var(--fp-color-white);
	font-size: clamp(1.02rem, 1.5vw, 1.18rem);
	font-weight: 600;
	line-height: 1.9;
}

body.home .fp-about-text {
	margin-top: 17px;
	color: rgba(255, 255, 255, 0.71);
	font-size: 0.93rem;
	line-height: 2;
}

body.home .fp-about-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 24px;
	margin-top: 35px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.home .fp-about-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.8rem;
	font-weight: 700;
}

body.home .fp-about-link:hover {
	color: var(--fp-color-accent-light);
	padding-left: 5px;
}

/* =========================================================
   最下部ビジュアル
========================================================= */

body.home .fp-closing-section {
	position: relative;
	display: flex;
	min-height: 620px;
	align-items: center;
	justify-content: center;
	isolation: isolate;
	overflow: hidden;
	background: var(--fp-color-primary-dark);
	color: var(--fp-color-white);
	text-align: center;
}

body.home .fp-closing-media,
body.home .fp-closing-shade {
	position: absolute;
	inset: 0;
}

body.home .fp-closing-media {
	z-index: -3;
}

body.home .fp-closing-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

body.home .fp-closing-shade {
	z-index: -2;
	background:
		linear-gradient(
			180deg,
			rgba(8, 31, 28, 0.62),
			rgba(8, 31, 28, 0.9)
		),
		rgba(8, 31, 28, 0.45);
}

body.home .fp-closing-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

body.home .fp-closing-label {
	margin-bottom: 18px;
	color: var(--fp-color-accent-light);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
}

body.home .fp-closing-title {
	color: var(--fp-color-white);
	font-size: clamp(2.3rem, 5vw, 4.6rem);
	line-height: 1.3;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

body.home .fp-closing-text {
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

body.home .fp-closing-section .fp-button {
	margin-top: 34px;
}

/* =========================================================
   アニメーション
========================================================= */

@keyframes fp-hero-zoom {
	from {
		transform: scale(1.06);
	}

	to {
		transform: scale(1);
	}
}

@keyframes fp-content-up {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================================================
   タブレット
========================================================= */

@media screen and (max-width: 1100px) {
	body.home .fp-quick-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.home .fp-quick-item {
		border-bottom: 1px solid var(--fp-color-border);
	}

	body.home .fp-quick-item:nth-child(4n) {
		border-right: 0;
	}

	body.home .fp-quick-item:nth-last-child(-n + 3) {
		border-bottom: 0;
	}

	body.home .fp-post-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .fp-featured-panel {
		position: static;
	}

	body.home .fp-featured-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 28px;
	}

	body.home .fp-post-item-compact:nth-last-child(2) {
		padding-bottom: 0;
		border-bottom: 0;
	}

	body.home .fp-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .fp-about-box {
		grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
	}

	body.home .fp-about-links {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media screen and (max-width: 900px) {
	body.home .fp-section-heading-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	body.home .fp-section-heading-row .fp-section-description {
		max-width: 680px;
	}

	body.home .fp-intro-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	body.home .fp-intro {
		background: var(--fp-color-off-white);
	}

	body.home .fp-purpose-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .fp-purpose-item {
		min-height: 260px;
	}

	body.home .fp-purpose-number {
		margin-bottom: 0;
	}

	body.home .fp-purpose-title {
		margin-top: 35px;
	}

	body.home .fp-about-box {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .fp-about-logo-wrap {
		min-height: 400px;
	}

	body.home .fp-about-logo {
		width: min(100%, 270px);
	}
}

/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 700px) {
	body.home .fp-root {
		--fp-inner-padding: 18px;
		--fp-section-space: 76px;
		--fp-radius-large: 21px;
		--fp-radius-medium: 15px;
	}

	body.home .fp-pc-break {
		display: none;
	}

	body.home .fp-section-kicker {
		font-size: 0.68rem;
		letter-spacing: 0.17em;
	}

	body.home .fp-section-title {
		font-size: clamp(1.75rem, 8vw, 2.45rem);
	}

	body.home .fp-hero {
		min-height: 720px;
	}

	body.home .fp-hero-inner {
		align-items: flex-end;
		padding-top: 80px;
		padding-bottom: 115px;
	}

	body.home .fp-hero-shade {
		background:
			linear-gradient(
				0deg,
				rgba(8, 31, 28, 0.97) 0%,
				rgba(8, 31, 28, 0.78) 58%,
				rgba(8, 31, 28, 0.35) 100%
			);
	}

	body.home .fp-hero-image {
		object-position: 61% center;
	}

	body.home .fp-hero::before {
		right: -180px;
		bottom: -120px;
	}

	body.home .fp-hero::after {
		display: none;
	}

	body.home .fp-hero-label {
		margin-bottom: 16px;
		font-size: 0.64rem;
		letter-spacing: 0.15em;
	}

	body.home .fp-hero-label::before {
		width: 28px;
	}

	body.home .fp-hero-title {
		font-size: clamp(2.45rem, 12vw, 3.7rem);
	}

	body.home .fp-hero-lead {
		margin-top: 22px;
		font-size: 1rem;
		line-height: 1.8;
	}

	body.home .fp-hero-description {
		margin-top: 14px;
		font-size: 0.84rem;
		line-height: 1.9;
	}

	body.home .fp-hero-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		margin-top: 26px;
	}

	body.home .fp-button {
		width: 100%;
		min-height: 54px;
	}

	body.home .fp-hero-points {
		display: none;
	}

	body.home .fp-quick-nav {
		margin-top: -48px;
	}

	body.home .fp-quick-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .fp-quick-item {
		min-height: 94px;
		padding: 16px;
	}

	body.home .fp-quick-item:nth-child(4n) {
		border-right: 1px solid var(--fp-color-border);
	}

	body.home .fp-quick-item:nth-child(2n) {
		border-right: 0;
	}

	body.home .fp-quick-item:nth-last-child(-n + 3) {
		border-bottom: 1px solid var(--fp-color-border);
	}

	body.home .fp-quick-item:last-child {
		grid-column: 1 / -1;
		border-right: 0;
		border-bottom: 0;
	}

	body.home .fp-quick-name {
		font-size: 0.82rem;
	}

	body.home .fp-intro {
		padding-top: 100px;
	}

	body.home .fp-intro-copy p {
		font-size: 0.94rem;
		line-height: 2;
	}

	body.home .fp-latest-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 38px;
	}

	body.home .fp-panel-heading {
		align-items: center;
	}

	body.home .fp-panel-note {
		font-size: 0.7rem;
	}

	body.home .fp-post-title {
		font-size: 1.08rem;
	}

	body.home .fp-featured-panel {
		padding: 24px 18px;
	}

	body.home .fp-featured-list {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .fp-post-item-compact {
		grid-template-columns: 98px minmax(0, 1fr);
		gap: 14px;
	}

	body.home .fp-post-item-compact:nth-last-child(2) {
		padding-bottom: 22px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	body.home .fp-purpose-item {
		min-height: 270px;
		padding: 27px 24px;
	}

	body.home .fp-purpose-title {
		font-size: 1.25rem;
	}

	body.home .fp-category-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	body.home .fp-category-item-wide {
		grid-column: auto;
		display: flex;
	}

	body.home .fp-category-item-wide .fp-category-image-link {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	body.home .fp-category-item-wide .fp-category-body {
		padding: 26px;
	}

	body.home .fp-about-logo-wrap {
		min-height: 320px;
		padding: 46px;
	}

	body.home .fp-about-logo {
		width: min(100%, 220px);
	}

	body.home .fp-about-content {
		padding: 36px 24px 42px;
	}

	body.home .fp-about-title {
		font-size: 2rem;
	}

	body.home .fp-about-lead {
		font-size: 0.98rem;
	}

	body.home .fp-about-text {
		font-size: 0.87rem;
	}

	body.home .fp-about-links {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .fp-closing-section {
		min-height: 540px;
	}

	body.home .fp-closing-title {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	body.home .fp-closing-section .fp-button {
		width: auto;
		min-width: 190px;
	}
}

/* =========================================================
   小型スマートフォン
========================================================= */

@media screen and (max-width: 390px) {
	body.home .fp-root {
		--fp-inner-padding: 16px;
	}

	body.home .fp-hero-title {
		font-size: 2.35rem;
	}

	body.home .fp-hero-description {
		font-size: 0.81rem;
	}

	body.home .fp-quick-item {
		padding-right: 13px;
		padding-left: 13px;
	}

	body.home .fp-post-item-compact {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	body.home .fp-post-item-compact .fp-post-title {
		font-size: 0.84rem;
	}
}

/* =========================================================
   動きを減らす設定
========================================================= */

@media (prefers-reduced-motion: reduce) {
	body.home .fp-root *,
	body.home .fp-root *::before,
	body.home .fp-root *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}