/* =========================================================
   Front Page
   オリーブ・マイスターへの道
========================================================= */

/* ---------------------------------------------------------
   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;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

body.home #main {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !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-main: #355c3a;
	--fp-color-main-dark: #203d28;
	--fp-color-main-deep: #162f20;
	--fp-color-accent: #a7b56f;
	--fp-color-accent-light: #dbe0b7;

	--fp-color-text: #26322a;
	--fp-color-text-soft: #647067;
	--fp-color-border: #e1e6df;

	--fp-color-white: #ffffff;
	--fp-color-bg: #f7f8f3;
	--fp-color-bg-green: #edf2e8;
	--fp-color-bg-deep: #1d3526;

	--fp-content-width: 1160px;

	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--fp-color-white);
	color: var(--fp-color-text);
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		"Yu Gothic Medium",
		"Yu Gothic",
		Meiryo,
		sans-serif;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.02em;
}

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 h1,
body.home .fp-root h2,
body.home .fp-root h3,
body.home .fp-root p {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
}

body.home .fp-root h1,
body.home .fp-root h2,
body.home .fp-root h3 {
	font-weight: 700;
	line-height: 1.45;
}

body.home .fp-root a {
	color: inherit;
	text-decoration: none;
}

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

body.home .fp-inner {
	width: min(var(--fp-content-width), calc(100% - 56px));
	margin-right: auto;
	margin-left: auto;
}

body.home .fp-section {
	position: relative;
	padding: 96px 0;
}


/* ---------------------------------------------------------
   共通見出し
--------------------------------------------------------- */

body.home .fp-section-heading {
	max-width: 760px;
	margin-bottom: 48px;
}

body.home .fp-section-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	max-width: none;
}

body.home .fp-section-heading-row > div {
	flex: 0 0 auto;
}

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

body.home .fp-section-label {
	margin-bottom: 12px;
	color: var(--fp-color-main);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.18em;
}

body.home .fp-section-title {
	color: var(--fp-color-text);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 700;
	letter-spacing: 0.01em;
}

body.home .fp-section-description {
	margin-top: 18px;
	color: var(--fp-color-text-soft);
	font-size: 16px;
	line-height: 1.9;
}

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

body.home .fp-section-heading-light .fp-section-description {
	opacity: 0.8;
}


/* ---------------------------------------------------------
   ボタン
--------------------------------------------------------- */

body.home .fp-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 13px 27px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.03em;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

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

body.home .fp-button-primary {
	background: var(--fp-color-accent);
	color: var(--fp-color-main-deep);
}

body.home .fp-button-primary:hover {
	background: #b9c77b;
	color: var(--fp-color-main-deep);
}

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

body.home .fp-button-outline:hover {
	border-color: var(--fp-color-white);
	background: var(--fp-color-white);
	color: var(--fp-color-main-deep);
}

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

body.home .fp-button-outline-light:hover {
	border-color: var(--fp-color-white);
	background: var(--fp-color-white);
	color: var(--fp-color-main-deep);
}

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

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


/* ---------------------------------------------------------
   ヒーロー
--------------------------------------------------------- */

body.home .fp-hero {
	position: relative;
	display: flex;
	min-height: min(720px, calc(100vh - 80px));
	align-items: center;
	overflow: hidden;
	background: var(--fp-color-main-deep);
}

body.home .fp-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

body.home .fp-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
}

body.home .fp-hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(14, 35, 23, 0.94) 0%,
			rgba(17, 40, 27, 0.82) 38%,
			rgba(18, 43, 29, 0.45) 68%,
			rgba(18, 43, 29, 0.26) 100%
		);
}

body.home .fp-hero-inner {
	position: relative;
	z-index: 2;
	padding-top: 90px;
	padding-bottom: 90px;
}

body.home .fp-hero-copy {
	max-width: 680px;
}

body.home .fp-hero-kicker {
	margin-bottom: 20px;
	color: var(--fp-color-accent-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.22em;
}

body.home .fp-hero-title {
	color: var(--fp-color-white);
	font-size: clamp(44px, 5.5vw, 76px);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.015em;
	text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

body.home .fp-hero-lead {
	max-width: 650px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 2;
}

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


/* ---------------------------------------------------------
   3ポイント
--------------------------------------------------------- */

body.home .fp-value-section {
	position: relative;
	z-index: 3;
	background: var(--fp-color-white);
	border-bottom: 1px solid var(--fp-color-border);
}

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

body.home .fp-value-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	min-width: 0;
	padding: 33px 30px;
	border-right: 1px solid var(--fp-color-border);
}

body.home .fp-value-item:first-child {
	padding-left: 0;
}

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

body.home .fp-value-number {
	flex: 0 0 auto;
	padding-top: 2px;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1;
}

body.home .fp-value-copy {
	min-width: 0;
}

body.home .fp-value-copy strong {
	display: block;
	color: var(--fp-color-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

body.home .fp-value-copy p {
	margin-top: 7px;
	color: var(--fp-color-text-soft);
	font-size: 13px;
	line-height: 1.75;
}


/* ---------------------------------------------------------
   サイト紹介
--------------------------------------------------------- */

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

body.home .fp-intro-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 70px;
	align-items: center;
}

body.home .fp-intro-image {
	position: relative;
	overflow: hidden;
	border-radius: 4px 56px 4px 4px;
}

body.home .fp-intro-image::after {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 120px;
	height: 120px;
	background: var(--fp-color-white);
	border-radius: 100% 0 0 0;
	content: "";
}

body.home .fp-intro-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

body.home .fp-intro-copy {
	color: var(--fp-color-text-soft);
	font-size: 16px;
}

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

body.home .fp-intro-note {
	margin-top: 30px;
	padding: 24px 26px;
	background: var(--fp-color-bg);
	border-left: 4px solid var(--fp-color-accent);
}

body.home .fp-intro-note strong {
	display: block;
	color: var(--fp-color-main-dark);
	font-size: 16px;
}

body.home .fp-intro-note p {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.85;
}


/* ---------------------------------------------------------
   クイックナビ
--------------------------------------------------------- */

body.home .fp-quick-section {
	background:
		linear-gradient(
			135deg,
			var(--fp-color-main-dark) 0%,
			#294c31 52%,
			#355c3a 100%
		);
}

body.home .fp-quick-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

body.home .fp-quick-item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	min-height: 84px;
	padding: 17px 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--fp-color-white);
	transition:
		background-color 0.25s ease,
		transform 0.25s ease,
		border-color 0.25s ease;
}

body.home .fp-quick-item:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.15);
}

body.home .fp-quick-icon {
	display: flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	font-size: 20px;
}

body.home .fp-quick-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

body.home .fp-quick-arrow {
	color: var(--fp-color-accent-light);
	font-size: 17px;
}


/* ---------------------------------------------------------
   新着記事
--------------------------------------------------------- */

body.home .fp-latest-section {
	background: var(--fp-color-bg);
}

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

body.home .fp-post-item {
	min-width: 0;
	overflow: hidden;
	background: var(--fp-color-white);
	border: 1px solid var(--fp-color-border);
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(30, 52, 36, 0.045);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

body.home .fp-post-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 42px rgba(30, 52, 36, 0.09);
}

body.home .fp-post-image-link {
	display: block;
	overflow: hidden;
	background: #e7ebe4;
}

body.home .fp-post-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

body.home .fp-post-body {
	padding: 23px 24px 25px;
}

body.home .fp-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-items: center;
	margin-bottom: 14px;
}

body.home .fp-post-category {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 3px 9px;
	border-radius: 99px;
	background: var(--fp-color-bg-green);
	color: var(--fp-color-main);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
}

body.home .fp-post-date {
	color: #909990;
	font-size: 11px;
	line-height: 1.4;
}

body.home .fp-post-title {
	color: var(--fp-color-text);
	font-size: 18px;
	line-height: 1.65;
}

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

body.home .fp-post-excerpt {
	margin-top: 13px;
	color: var(--fp-color-text-soft);
	font-size: 13px;
	line-height: 1.85;
}

body.home .fp-post-more {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin-top: 18px;
	color: var(--fp-color-main);
	font-size: 13px;
	font-weight: 700;
}

body.home .fp-post-more span {
	transition: transform 0.2s ease;
}

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

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


/* ---------------------------------------------------------
   初心者ガイド
--------------------------------------------------------- */

body.home .fp-beginner-section {
	padding-top: 110px;
	padding-bottom: 110px;
	background: var(--fp-color-white);
}

body.home .fp-beginner-box {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: stretch;
	overflow: hidden;
	background: var(--fp-color-bg-green);
	border-radius: 12px;
}

body.home .fp-beginner-image {
	min-height: 470px;
}

body.home .fp-beginner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.home .fp-beginner-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 58px 58px;
}

body.home .fp-beginner-title {
	margin-bottom: 24px;
	color: var(--fp-color-text);
	font-size: clamp(28px, 3vw, 40px);
}

body.home .fp-beginner-copy > p:not(.fp-section-label) {
	color: var(--fp-color-text-soft);
	font-size: 15px;
	line-height: 1.95;
}

body.home .fp-beginner-copy > p:not(.fp-section-label) + p {
	margin-top: 17px;
}

body.home .fp-beginner-copy .fp-button {
	margin-top: 30px;
}


/* ---------------------------------------------------------
   カテゴリー
--------------------------------------------------------- */

body.home .fp-category-section {
	background: var(--fp-color-bg);
}

body.home .fp-category-feature {
	position: relative;
	height: 310px;
	margin-bottom: 38px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--fp-color-main-dark);
}

body.home .fp-category-feature::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(24, 48, 31, 0.86) 0%,
			rgba(24, 48, 31, 0.52) 50%,
			rgba(24, 48, 31, 0.16) 100%
		);
	content: "";
}

body.home .fp-category-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.home .fp-category-feature-copy {
	position: absolute;
	top: 50%;
	left: 55px;
	z-index: 2;
	width: min(620px, calc(100% - 110px));
	transform: translateY(-50%);
	color: var(--fp-color-white);
}

body.home .fp-category-feature-copy p {
	margin-bottom: 11px;
	color: var(--fp-color-accent-light);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
}

body.home .fp-category-feature-copy strong {
	display: block;
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.55;
}

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

body.home .fp-category-item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--fp-color-white);
	border: 1px solid var(--fp-color-border);
	border-radius: 10px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

body.home .fp-category-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 17px 38px rgba(35, 56, 40, 0.08);
}

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

body.home .fp-category-image-link {
	display: block;
	overflow: hidden;
	background: #e7ebe4;
}

body.home .fp-category-item:not(.fp-category-item-wide) .fp-category-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

body.home .fp-category-item-wide .fp-category-image-link {
	height: 100%;
}

body.home .fp-category-item-wide .fp-category-image {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

body.home .fp-category-image {
	transition: transform 0.4s ease;
}

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

body.home .fp-category-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 27px 27px 29px;
}

body.home .fp-category-item-wide .fp-category-body {
	justify-content: center;
	padding: 45px 52px;
}

body.home .fp-category-heading {
	display: flex;
	gap: 12px;
	align-items: center;
}

body.home .fp-category-icon {
	display: flex;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--fp-color-bg-green);
	font-size: 19px;
}

body.home .fp-category-title {
	color: var(--fp-color-text);
	font-size: 19px;
	line-height: 1.55;
}

body.home .fp-category-description {
	margin-top: 17px;
	color: var(--fp-color-text-soft);
	font-size: 13px;
	line-height: 1.85;
}

body.home .fp-category-link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin-top: auto;
	padding-top: 21px;
	color: var(--fp-color-main);
	font-size: 13px;
	font-weight: 700;
}

body.home .fp-category-link span {
	transition: transform 0.2s ease;
}

body.home .fp-category-link:hover span {
	transform: translateX(4px);
}


/* ---------------------------------------------------------
   読み方ガイド
--------------------------------------------------------- */

body.home .fp-use-section {
	background: var(--fp-color-white);
}

body.home .fp-use-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--fp-color-border);
	border-left: 1px solid var(--fp-color-border);
}

body.home .fp-use-item {
	min-width: 0;
	padding: 38px 30px 40px;
	border-right: 1px solid var(--fp-color-border);
	border-bottom: 1px solid var(--fp-color-border);
}

body.home .fp-use-number {
	display: block;
	margin-bottom: 25px;
	color: var(--fp-color-accent);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	line-height: 1;
}

body.home .fp-use-title {
	color: var(--fp-color-text);
	font-size: 18px;
}

body.home .fp-use-item p {
	margin-top: 15px;
	color: var(--fp-color-text-soft);
	font-size: 13px;
	line-height: 1.85;
}


/* ---------------------------------------------------------
   編集方針
--------------------------------------------------------- */

body.home .fp-policy-section {
	background: var(--fp-color-bg-green);
}

body.home .fp-policy-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 90px;
	align-items: start;
}

body.home .fp-policy-heading {
	position: sticky;
	top: 30px;
}

body.home .fp-policy-points {
	border-top: 1px solid rgba(53, 92, 58, 0.2);
}

body.home .fp-policy-item {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 22px;
	padding: 30px 0;
	border-bottom: 1px solid rgba(53, 92, 58, 0.2);
}

body.home .fp-policy-mark {
	padding-top: 4px;
	color: var(--fp-color-main);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
}

body.home .fp-policy-title {
	color: var(--fp-color-text);
	font-size: 18px;
}

body.home .fp-policy-item p {
	margin-top: 9px;
	color: var(--fp-color-text-soft);
	font-size: 14px;
	line-height: 1.9;
}

body.home .fp-policy-note {
	margin-top: 50px;
	padding: 24px 28px;
	background: rgba(255, 255, 255, 0.65);
	border-left: 4px solid var(--fp-color-main);
}

body.home .fp-policy-note p {
	color: var(--fp-color-text-soft);
	font-size: 13px;
	line-height: 1.85;
}


/* ---------------------------------------------------------
   運営情報
--------------------------------------------------------- */

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

body.home .fp-about-box {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 70px;
	align-items: center;
	padding: 54px;
	border: 1px solid var(--fp-color-border);
	border-radius: 12px;
	background: var(--fp-color-white);
	box-shadow: 0 15px 50px rgba(33, 55, 39, 0.05);
}

body.home .fp-about-logo-area {
	padding: 32px;
	background: var(--fp-color-bg);
	border-radius: 8px;
	text-align: center;
}

body.home .fp-about-logo-label {
	margin-bottom: 18px;
	color: var(--fp-color-main);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.2em;
}

body.home .fp-about-logo {
	width: 100%;
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
	object-fit: contain;
}

body.home .fp-about-title {
	margin-bottom: 22px;
	color: var(--fp-color-text);
	font-size: clamp(22px, 2.5vw, 30px);
}

body.home .fp-about-copy p {
	color: var(--fp-color-text-soft);
	font-size: 14px;
	line-height: 1.95;
}

body.home .fp-about-copy p + p {
	margin-top: 17px;
}


/* ---------------------------------------------------------
   クロージング
--------------------------------------------------------- */

body.home .fp-closing-section {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			#172f20 0%,
			#274a30 54%,
			#345c3b 100%
		);
}

body.home .fp-closing-section::before {
	position: absolute;
	top: -170px;
	right: -80px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

body.home .fp-closing-section::after {
	position: absolute;
	right: 180px;
	bottom: -240px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
}

body.home .fp-closing-box {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

body.home .fp-closing-label {
	margin-bottom: 14px;
	color: var(--fp-color-accent-light);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
}

body.home .fp-closing-title {
	color: var(--fp-color-white);
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.55;
}

body.home .fp-closing-description {
	max-width: 650px;
	margin: 20px auto 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.95;
}

body.home .fp-closing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 34px;
}


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

@media screen and (max-width: 1024px) {

	body.home .fp-inner {
		width: min(var(--fp-content-width), calc(100% - 44px));
	}

	body.home .fp-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}

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

	body.home .fp-hero-shade {
		background:
			linear-gradient(
				90deg,
				rgba(14, 35, 23, 0.92) 0%,
				rgba(17, 40, 27, 0.76) 55%,
				rgba(18, 43, 29, 0.42) 100%
			);
	}

	body.home .fp-value-item {
		padding: 28px 20px;
	}

	body.home .fp-intro-layout {
		gap: 45px;
	}

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

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

	body.home .fp-beginner-copy {
		padding: 42px;
	}

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

	body.home .fp-category-item-wide {
		grid-column: span 2;
	}

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

	body.home .fp-policy-layout {
		gap: 55px;
	}

	body.home .fp-about-box {
		gap: 45px;
		padding: 42px;
	}

}


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

@media screen and (max-width: 820px) {

	body.home .fp-section-heading-row {
		display: block;
	}

	body.home .fp-section-heading-row .fp-section-description {
		max-width: 650px;
		margin-top: 18px;
	}

	body.home .fp-value-grid {
		grid-template-columns: 1fr;
	}

	body.home .fp-value-item {
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid var(--fp-color-border);
	}

	body.home .fp-value-item:first-child,
	body.home .fp-value-item:last-child {
		padding-right: 0;
		padding-left: 0;
	}

	body.home .fp-value-item:last-child {
		border-bottom: 0;
	}

	body.home .fp-intro-layout {
		grid-template-columns: 1fr;
	}

	body.home .fp-intro-image {
		max-height: 500px;
	}

	body.home .fp-beginner-box {
		grid-template-columns: 1fr;
	}

	body.home .fp-beginner-image {
		min-height: 0;
	}

	body.home .fp-beginner-image img {
		aspect-ratio: 16 / 9;
	}

	body.home .fp-category-feature {
		height: 280px;
	}

	body.home .fp-policy-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	body.home .fp-policy-heading {
		position: static;
	}

	body.home .fp-about-box {
		grid-template-columns: 1fr;
	}

	body.home .fp-about-logo-area {
		max-width: 480px;
		width: 100%;
	}

}


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

@media screen and (max-width: 600px) {

	body.home .fp-root {
		font-size: 15px;
	}

	body.home .fp-inner {
		width: calc(100% - 32px);
	}

	body.home .fp-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	body.home .fp-section-heading {
		margin-bottom: 34px;
	}

	body.home .fp-section-label {
		margin-bottom: 9px;
		font-size: 10px;
	}

	body.home .fp-section-title {
		font-size: 27px;
		line-height: 1.55;
	}

	body.home .fp-section-description {
		margin-top: 13px;
		font-size: 14px;
		line-height: 1.85;
	}

	body.home .fp-button {
		min-height: 50px;
		padding: 12px 22px;
		font-size: 14px;
	}

	/* Hero */

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

	body.home .fp-hero-media img {
		object-position: 58% center;
	}

	body.home .fp-hero-shade {
		background:
			linear-gradient(
				90deg,
				rgba(15, 36, 24, 0.92) 0%,
				rgba(16, 39, 26, 0.83) 62%,
				rgba(17, 41, 28, 0.59) 100%
			);
	}

	body.home .fp-hero-inner {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	body.home .fp-hero-copy {
		max-width: 100%;
	}

	body.home .fp-hero-kicker {
		margin-bottom: 15px;
		font-size: 10px;
		letter-spacing: 0.17em;
	}

	body.home .fp-hero-title {
		font-size: clamp(37px, 11vw, 50px);
		line-height: 1.3;
	}

	body.home .fp-hero-lead {
		margin-top: 22px;
		font-size: 14px;
		line-height: 1.9;
	}

	body.home .fp-hero-actions {
		gap: 10px;
		margin-top: 29px;
	}

	body.home .fp-hero-actions .fp-button {
		flex: 1 1 150px;
	}

	/* Value */

	body.home .fp-value-item {
		gap: 15px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	body.home .fp-value-number {
		font-size: 19px;
	}

	body.home .fp-value-copy strong {
		font-size: 14px;
	}

	body.home .fp-value-copy p {
		font-size: 12px;
	}

	/* Intro */

	body.home .fp-intro-layout {
		gap: 31px;
	}

	body.home .fp-intro-image {
		border-radius: 3px 30px 3px 3px;
	}

	body.home .fp-intro-image::after {
		width: 70px;
		height: 70px;
	}

	body.home .fp-intro-copy {
		font-size: 14px;
		line-height: 1.9;
	}

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

	body.home .fp-intro-note {
		margin-top: 22px;
		padding: 20px;
	}

	body.home .fp-intro-note strong {
		font-size: 14px;
	}

	body.home .fp-intro-note p {
		font-size: 13px;
	}

	/* Quick */

	body.home .fp-quick-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	body.home .fp-quick-item {
		min-height: 70px;
		padding: 13px 15px;
	}

	body.home .fp-quick-icon {
		width: 38px;
		height: 38px;
		font-size: 18px;
	}

	body.home .fp-quick-title {
		font-size: 13px;
	}

	/* Posts */

	body.home .fp-post-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.home .fp-post-body {
		padding: 20px 19px 22px;
	}

	body.home .fp-post-title {
		font-size: 17px;
	}

	body.home .fp-post-excerpt {
		font-size: 12.5px;
	}

	/* Beginner */

	body.home .fp-beginner-section {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	body.home .fp-beginner-box {
		border-radius: 8px;
	}

	body.home .fp-beginner-image img {
		aspect-ratio: 4 / 3;
	}

	body.home .fp-beginner-copy {
		padding: 31px 23px 34px;
	}

	body.home .fp-beginner-title {
		margin-bottom: 19px;
		font-size: 26px;
	}

	body.home .fp-beginner-copy > p:not(.fp-section-label) {
		font-size: 13.5px;
	}

	body.home .fp-beginner-copy .fp-button {
		width: 100%;
		margin-top: 25px;
	}

	/* Category */

	body.home .fp-category-feature {
		height: 260px;
		margin-bottom: 25px;
		border-radius: 8px;
	}

	body.home .fp-category-feature::after {
		background:
			linear-gradient(
				90deg,
				rgba(24, 48, 31, 0.87) 0%,
				rgba(24, 48, 31, 0.67) 70%,
				rgba(24, 48, 31, 0.45) 100%
			);
	}

	body.home .fp-category-feature-copy {
		left: 22px;
		width: calc(100% - 44px);
	}

	body.home .fp-category-feature-copy strong {
		font-size: 23px;
		line-height: 1.55;
	}

	body.home .fp-category-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

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

	body.home .fp-category-item-wide .fp-category-image-link {
		height: auto;
	}

	body.home .fp-category-item-wide .fp-category-image,
	body.home .fp-category-item:not(.fp-category-item-wide) .fp-category-image {
		width: 100%;
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
		object-fit: cover;
	}

	body.home .fp-category-body,
	body.home .fp-category-item-wide .fp-category-body {
		padding: 22px 20px 24px;
	}

	body.home .fp-category-icon {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
		font-size: 17px;
	}

	body.home .fp-category-title {
		font-size: 17px;
	}

	body.home .fp-category-description {
		margin-top: 14px;
		font-size: 12.5px;
	}

	/* Use */

	body.home .fp-use-grid {
		grid-template-columns: 1fr;
	}

	body.home .fp-use-item {
		padding: 27px 23px;
	}

	body.home .fp-use-number {
		margin-bottom: 15px;
		font-size: 25px;
	}

	body.home .fp-use-title {
		font-size: 16px;
	}

	body.home .fp-use-item p {
		margin-top: 10px;
		font-size: 12.5px;
	}

	/* Policy */

	body.home .fp-policy-layout {
		gap: 30px;
	}

	body.home .fp-policy-item {
		grid-template-columns: 43px minmax(0, 1fr);
		gap: 13px;
		padding: 23px 0;
	}

	body.home .fp-policy-mark {
		font-size: 18px;
	}

	body.home .fp-policy-title {
		font-size: 16px;
	}

	body.home .fp-policy-item p {
		font-size: 12.5px;
	}

	body.home .fp-policy-note {
		margin-top: 32px;
		padding: 19px 18px;
	}

	body.home .fp-policy-note p {
		font-size: 12px;
	}

	/* About */

	body.home .fp-about-box {
		gap: 30px;
		padding: 22px;
		border-radius: 8px;
	}

	body.home .fp-about-logo-area {
		padding: 24px 20px;
	}

	body.home .fp-about-logo {
		max-width: 240px;
	}

	body.home .fp-about-title {
		margin-bottom: 17px;
		font-size: 21px;
	}

	body.home .fp-about-copy p {
		font-size: 13px;
	}

	body.home .fp-about-copy p + p {
		margin-top: 13px;
	}

	/* Closing */

	body.home .fp-closing-section {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	body.home .fp-closing-title {
		font-size: 27px;
	}

	body.home .fp-closing-description {
		font-size: 13px;
	}

	body.home .fp-closing-actions {
		flex-direction: column;
		margin-top: 27px;
	}

	body.home .fp-closing-actions .fp-button {
		width: 100%;
	}

}


/* =========================================================
   極小画面
========================================================= */

@media screen and (max-width: 380px) {

	body.home .fp-inner {
		width: calc(100% - 32px);
	}

	body.home .fp-hero-title {
		font-size: 35px;
	}

	body.home .fp-hero-actions {
		flex-direction: column;
	}

	body.home .fp-hero-actions .fp-button {
		width: 100%;
		flex-basis: auto;
	}

	body.home .fp-category-feature-copy strong {
		font-size: 21px;
	}

}

/* =========================================================
   文字の視認性調整
   濃色・画像背景では白文字を基本にする
========================================================= */

/* ---------------------------------------------------------
   ヒーロー
--------------------------------------------------------- */

body.home .fp-root .fp-hero,
body.home .fp-root .fp-hero h1,
body.home .fp-root .fp-hero h2,
body.home .fp-root .fp-hero h3,
body.home .fp-root .fp-hero p,
body.home .fp-root .fp-hero a,
body.home .fp-root .fp-hero span {
	color: #ffffff;
}

body.home .fp-root .fp-hero-kicker {
	color: #e4e9c8;
}

body.home .fp-root .fp-hero-title {
	color: #ffffff !important;
	text-shadow:
		0 2px 8px rgba(0, 0, 0, 0.5),
		0 4px 24px rgba(0, 0, 0, 0.35);
}

body.home .fp-root .fp-hero-lead {
	color: #ffffff !important;
	text-shadow:
		0 1px 5px rgba(0, 0, 0, 0.55),
		0 3px 16px rgba(0, 0, 0, 0.3);
}

/* 写真を少し暗くして白文字を読みやすく */
body.home .fp-root .fp-hero-shade {
	background:
		linear-gradient(
			90deg,
			rgba(12, 29, 19, 0.90) 0%,
			rgba(15, 35, 23, 0.78) 48%,
			rgba(17, 41, 27, 0.58) 100%
		);
}


/* ---------------------------------------------------------
   ヒーローボタン
--------------------------------------------------------- */

body.home .fp-root .fp-button-primary {
	background: #ffffff;
	color: #27442d !important;
	border-color: #ffffff;
}

body.home .fp-root .fp-button-primary:hover {
	background: #eef1e5;
	color: #1d3524 !important;
}

body.home .fp-root .fp-button-outline {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.8);
	color: #ffffff !important;
}

body.home .fp-root .fp-button-outline:hover {
	background: #ffffff;
	color: #27442d !important;
}


/* ---------------------------------------------------------
   クイックナビ
--------------------------------------------------------- */

body.home .fp-root .fp-quick-section,
body.home .fp-root .fp-quick-section h2,
body.home .fp-root .fp-quick-section h3,
body.home .fp-root .fp-quick-section p,
body.home .fp-root .fp-quick-section a,
body.home .fp-root .fp-quick-section span {
	color: #ffffff;
}

body.home .fp-root .fp-quick-section .fp-section-label {
	color: #e2e8c3 !important;
}

body.home .fp-root .fp-quick-section .fp-section-title {
	color: #ffffff !important;
}

body.home .fp-root .fp-quick-section .fp-section-description {
	color: rgba(255, 255, 255, 0.88) !important;
}

body.home .fp-root .fp-quick-item {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.24);
}

body.home .fp-root .fp-quick-item:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.55);
}

body.home .fp-root .fp-quick-title {
	color: #ffffff !important;
}

body.home .fp-root .fp-quick-arrow {
	color: #ffffff !important;
}


/* ---------------------------------------------------------
   カテゴリー上部の画像
--------------------------------------------------------- */

body.home .fp-root .fp-category-feature h2,
body.home .fp-root .fp-category-feature h3,
body.home .fp-root .fp-category-feature p,
body.home .fp-root .fp-category-feature strong,
body.home .fp-root .fp-category-feature span {
	color: #ffffff !important;
}

body.home .fp-root .fp-category-feature::after {
	background:
		linear-gradient(
			90deg,
			rgba(18, 39, 25, 0.90) 0%,
			rgba(20, 44, 28, 0.72) 55%,
			rgba(20, 44, 28, 0.42) 100%
		);
}

body.home .fp-root .fp-category-feature-copy p {
	color: #e4e9c8 !important;
}

body.home .fp-root .fp-category-feature-copy strong {
	color: #ffffff !important;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   クロージング
--------------------------------------------------------- */

body.home .fp-root .fp-closing-section,
body.home .fp-root .fp-closing-section h2,
body.home .fp-root .fp-closing-section h3,
body.home .fp-root .fp-closing-section p,
body.home .fp-root .fp-closing-section span {
	color: #ffffff;
}

body.home .fp-root .fp-closing-title {
	color: #ffffff !important;
}

body.home .fp-root .fp-closing-description {
	color: rgba(255, 255, 255, 0.9) !important;
}

body.home .fp-root .fp-closing-label {
	color: #e4e9c8 !important;
}

body.home .fp-root .fp-button-outline-light {
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.75);
}

body.home .fp-root .fp-button-outline-light:hover {
	background: #ffffff;
	color: #27442d !important;
}


/* ---------------------------------------------------------
   白背景・薄色背景
   ここは逆に濃色文字を明示して読みやすくする
--------------------------------------------------------- */

body.home .fp-root .fp-intro-section,
body.home .fp-root .fp-latest-section,
body.home .fp-root .fp-beginner-section,
body.home .fp-root .fp-category-section,
body.home .fp-root .fp-use-section,
body.home .fp-root .fp-policy-section,
body.home .fp-root .fp-about-section,
body.home .fp-root .fp-value-section {
	color: #26322a;
}

body.home .fp-root .fp-intro-section h2,
body.home .fp-root .fp-intro-section h3,
body.home .fp-root .fp-latest-section h2,
body.home .fp-root .fp-latest-section h3,
body.home .fp-root .fp-beginner-section h2,
body.home .fp-root .fp-beginner-section h3,
body.home .fp-root .fp-category-section > .fp-inner > .fp-section-heading h2,
body.home .fp-root .fp-category-item h3,
body.home .fp-root .fp-use-section h2,
body.home .fp-root .fp-use-section h3,
body.home .fp-root .fp-policy-section h2,
body.home .fp-root .fp-policy-section h3,
body.home .fp-root .fp-about-section h2,
body.home .fp-root .fp-about-section h3 {
	color: #26322a !important;
}

body.home .fp-root .fp-intro-section p,
body.home .fp-root .fp-latest-section p,
body.home .fp-root .fp-beginner-section p,
body.home .fp-root .fp-category-item p,
body.home .fp-root .fp-use-section p,
body.home .fp-root .fp-policy-section p,
body.home .fp-root .fp-about-section p {
	color: #5b685f;
}


/* ---------------------------------------------------------
   セクション英字ラベル
--------------------------------------------------------- */

body.home .fp-root .fp-intro-section .fp-section-label,
body.home .fp-root .fp-latest-section .fp-section-label,
body.home .fp-root .fp-beginner-section .fp-section-label,
body.home .fp-root .fp-category-section > .fp-inner > .fp-section-heading .fp-section-label,
body.home .fp-root .fp-use-section .fp-section-label,
body.home .fp-root .fp-policy-section .fp-section-label,
body.home .fp-root .fp-about-section .fp-section-label {
	color: #42694a !important;
}


/* ---------------------------------------------------------
   白背景カード内のリンク
--------------------------------------------------------- */

body.home .fp-root .fp-post-title a,
body.home .fp-root .fp-category-title {
	color: #26322a !important;
}

body.home .fp-root .fp-post-more,
body.home .fp-root .fp-category-link {
	color: #355c3a !important;
}

body.home .fp-root .fp-post-more:hover,
body.home .fp-root .fp-category-link:hover,
body.home .fp-root .fp-post-title a:hover {
	color: #1f4328 !important;
}


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

@media screen and (max-width: 600px) {

	body.home .fp-root .fp-hero-shade {
		background:
			linear-gradient(
				90deg,
				rgba(12, 29, 19, 0.92) 0%,
				rgba(15, 35, 23, 0.84) 70%,
				rgba(17, 41, 27, 0.70) 100%
			);
	}

	body.home .fp-root .fp-category-feature::after {
		background:
			linear-gradient(
				90deg,
				rgba(18, 39, 25, 0.92) 0%,
				rgba(20, 44, 28, 0.80) 72%,
				rgba(20, 44, 28, 0.60) 100%
			);
	}

}

/* =========================================================
   文言修正後の見え方調整
========================================================= */

/* ---------------------------------------------------------
   ヒーロー・クロージングのラベルを日本語でも見やすく
--------------------------------------------------------- */

body.home .fp-root .fp-hero-kicker,
body.home .fp-root .fp-closing-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.8;
}

body.home .fp-root .fp-closing-label {
	display: block;
	margin-bottom: 18px;
	color: #e4e9c8 !important;
	text-align: center;
}


/* ---------------------------------------------------------
   「栽培・育て方の記事を見る」ボタン文字色を白に固定
--------------------------------------------------------- */

body.home .fp-root .fp-beginner-copy .fp-button-dark,
body.home .fp-root .fp-beginner-copy .fp-button-dark:visited,
body.home .fp-root .fp-beginner-copy .fp-button-dark:hover,
body.home .fp-root .fp-beginner-copy .fp-button-dark:focus {
	color: #ffffff !important;
}


/* ---------------------------------------------------------
   最後のセクションの文字配置調整
--------------------------------------------------------- */

body.home .fp-root .fp-closing-box {
	max-width: 920px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

body.home .fp-root .fp-closing-title {
	max-width: 760px;
	margin: 0 auto;
	color: #ffffff !important;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.6;
	letter-spacing: 0.01em;
}

body.home .fp-root .fp-closing-description {
	max-width: 760px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.01em;
	word-break: normal;
	overflow-wrap: break-word;
}

body.home .fp-root .fp-closing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	align-items: center;
	margin-top: 34px;
}


/* ---------------------------------------------------------
   スマホ調整
--------------------------------------------------------- */

@media screen and (max-width: 600px) {

	body.home .fp-root .fp-hero-kicker,
	body.home .fp-root .fp-closing-label {
		font-size: 12px;
		letter-spacing: 0.04em;
		line-height: 1.7;
	}

	body.home .fp-root .fp-closing-box {
		max-width: 100%;
	}

	body.home .fp-root .fp-closing-title {
		max-width: 100%;
		font-size: 27px;
		line-height: 1.55;
	}

	body.home .fp-root .fp-closing-description {
		max-width: 100%;
		font-size: 14px;
		line-height: 1.9;
	}

	body.home .fp-root .fp-closing-actions {
		flex-direction: column;
		align-items: stretch;
	}

	body.home .fp-root .fp-closing-actions .fp-button {
		width: 100%;
	}
}