@charset "UTF-8";

/* =========================================================
   くろねこファーム
   1. 変数
   2. ベース
   3. レイアウト
   4. パーツ
   5. ヘッダー / フッター
   6. セクション
   7. 記事・フォーム
   8. レスポンシブ
   画像は相対パス（../images/）で参照し、絶対URLを書かない。
   ========================================================= */

/* 1. 変数 ------------------------------------------------ */
:root {
	--kf-green: #7fae3b;
	--kf-green-dark: #6b9730;
	--kf-deep: #345c2a;
	--kf-deep-soft: #47713a;
	--kf-bg: #faf9f2;
	--kf-bg-soft: #f1f4e6;
	--kf-white: #ffffff;
	--kf-text: #2c2c26;
	--kf-muted: #6c6c5f;
	--kf-border: #e3e1d3;
	--kf-cream: #fbf1c4;
	--kf-accent: #b8791f;
	--kf-border-soft: #eaeaea;
	--kf-blue: #6fa8c4;
	--kf-yellow: #e7b93f;

	--kf-font-sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", Meiryo, system-ui, sans-serif;
	--kf-font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", "Times New Roman", serif;

	--kf-container: 1180px;
	--kf-narrow: 760px;
	--kf-gutter: 24px;
	--kf-radius: 3px;
	--kf-section-y: 148px;
	--kf-shadow: 0 12px 32px rgba(52, 92, 42, 0.08);
}

/* 2. ベース ---------------------------------------------- */
/* 幅指定に padding / border を含める。これがないと padding のぶんだけ
   要素が横に膨らみ、狭い画面で横スクロールが発生する。 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background-color: var(--kf-bg);
	color: var(--kf-text);
	font-family: var(--kf-font-sans);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.02em;
	font-feature-settings: "palt";
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--kf-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--kf-green-dark);
}

h1,
h2,
h3,
h4 {
	font-family: var(--kf-font-serif);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.04em;
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1.4em;
}

ul,
ol {
	padding-left: 1.4em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--kf-white);
	box-shadow: var(--kf-shadow);
}

:focus-visible {
	outline: 2px solid var(--kf-deep);
	outline-offset: 3px;
}

/* 3. レイアウト ------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--kf-container);
	margin-inline: auto;
	padding-inline: var(--kf-gutter);
	box-sizing: border-box;
}

.container--narrow {
	max-width: var(--kf-narrow);
}

.site-main {
	display: block;
}

.section {
	padding-block: var(--kf-section-y);
}

.section--faq {
	background-color: var(--kf-bg-soft);
}

.section__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.section--reverse .section__inner {
	direction: rtl;
}

.section--reverse .section__inner > * {
	direction: ltr;
}

.section--no-media .section__inner {
	grid-template-columns: minmax(0, var(--kf-narrow));
	justify-content: center;
}

.section__media img {
	width: 100%;
	border-radius: var(--kf-radius);
	box-shadow: var(--kf-shadow);
}

.section__text {
	color: var(--kf-text);
}

.section__lead {
	max-width: 46em;
	margin-bottom: 3em;
	color: var(--kf-muted);
}

.section__note {
	margin-top: 1.5em;
	padding: 14px 18px;
	background: var(--kf-bg-soft);
	border-left: 3px solid var(--kf-green);
	font-size: 0.9rem;
	color: var(--kf-deep);
}

.section__more {
	margin-top: 48px;
	text-align: center;
}

/* 4. パーツ ---------------------------------------------- */
.section-title {
	margin-bottom: 2.2em;
}

.section-title--center {
	text-align: center;
}

.section-title__sub {
	display: block;
	font-family: var(--kf-font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--kf-green);
	margin-bottom: 1em;
}

.section-title__heading {
	font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.15rem);
	font-weight: 700;
	letter-spacing: 0.09em;
	color: var(--kf-accent);
	margin: 0;
}

.band--deep .section-title__heading,
.access .section-title__heading {
	color: var(--kf-white);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 15px 34px;
	background-color: var(--kf-deep);
	color: var(--kf-white);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border: 1px solid var(--kf-deep);
	border-radius: var(--kf-radius);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.button:hover {
	background-color: var(--kf-deep-soft);
	border-color: var(--kf-deep-soft);
	color: var(--kf-white);
}

.button--light {
	background-color: var(--kf-white);
	border-color: var(--kf-white);
	color: var(--kf-deep);
}

.button--light:hover {
	background-color: var(--kf-bg-soft);
	border-color: var(--kf-bg-soft);
	color: var(--kf-deep);
}

.button--outline-light {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.85);
	color: var(--kf-white);
}

.button--outline-light:hover {
	background-color: rgba(255, 255, 255, 0.14);
	color: var(--kf-white);
}

.button--small {
	padding: 10px 20px;
	font-size: 0.85rem;
}

.button--wide {
	width: 100%;
	max-width: 320px;
	padding-block: 18px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	color: var(--kf-deep);
	border-bottom: 1px solid currentColor;
	padding-bottom: 3px;
}

.link-arrow::after {
	content: "→";
	transition: transform 0.2s ease;
}

.link-arrow:hover::after {
	transform: translateX(4px);
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 2em 0;
	display: grid;
	gap: 0.9em;
}

.check-list__item {
	position: relative;
	padding-left: 1.9em;
	line-height: 1.7;
}

.check-list__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--kf-green);
}

.tag-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-list__item {
	padding: 7px 16px;
	background-color: var(--kf-bg-soft);
	border: 1px solid var(--kf-border);
	border-radius: 999px;
	font-size: 0.85rem;
}

.badge {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 12px;
	background-color: var(--kf-bg-soft);
	color: var(--kf-deep);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.thumb-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(127, 174, 59, 0.18), rgba(52, 92, 42, 0.12));
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
	gap: 40px 32px;
}

.card {
	background-color: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--kf-shadow);
}

.card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.card__media img,
.card__media .thumb-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.card__body {
	padding: 24px 24px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.78rem;
	color: var(--kf-muted);
	margin-bottom: 10px;
}

.card__category {
	padding: 2px 10px;
	background-color: var(--kf-bg-soft);
	border-radius: 999px;
	color: var(--kf-deep);
}

.card__title {
	font-size: 1.08rem;
	margin-bottom: 0.6em;
}

.card__excerpt {
	font-size: 0.9rem;
	color: var(--kf-muted);
	margin-bottom: 1em;
}

.card__actions {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding-top: 8px;
}

.spec-list {
	margin: 0 0 1.6em;
	border-top: 1px solid var(--kf-border);
	font-size: 0.9rem;
}

.spec-list__row {
	display: grid;
	grid-template-columns: 6.5em 1fr;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--kf-border);
}

.spec-list__label {
	color: var(--kf-muted);
	margin: 0;
}

.spec-list__value {
	margin: 0;
}

.notice {
	padding: 20px 24px;
	margin-bottom: 40px;
	border-radius: var(--kf-radius);
	border: 1px solid var(--kf-border);
	background-color: var(--kf-white);
}

.notice--success {
	border-color: var(--kf-green);
	background-color: var(--kf-bg-soft);
}

.notice--error {
	border-color: #c0563f;
	background-color: #fdf3f0;
}

.notice__title {
	font-weight: 700;
	margin-bottom: 0.4em;
}

.notice__list {
	margin: 0;
	padding-left: 1.3em;
	font-size: 0.9rem;
}

.notice p:last-child,
.notice ul:last-child {
	margin-bottom: 0;
}

.empty-message {
	text-align: center;
	color: var(--kf-muted);
}

/* 5. ヘッダー / フッター --------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
	background-color: rgba(250, 249, 242, 0.94);
	backdrop-filter: blur(8px);
	border-bottom-color: var(--kf-border);
	box-shadow: 0 8px 24px rgba(52, 92, 42, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.site-branding {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.custom-logo-link {
	display: block;
}

.site-logo-link {
	display: block;
	line-height: 0;
}

.custom-logo,
.site-logo {
	max-height: 52px;
	width: auto;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.site-logo {
	filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.72)) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.18));
}

.site-header.is-scrolled .site-logo,
.site-header.is-menu-open .site-logo {
	filter: none;
}

.site-title {
	font-family: var(--kf-font-serif);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0;
}

.site-title a {
	color: var(--kf-white);
	text-decoration: none;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.site-header.is-scrolled .site-title a,
.site-header.is-menu-open .site-title a {
	color: var(--kf-deep);
	text-shadow: none;
}

.site-description {
	margin: 2px 0 0;
	font-size: 0.7rem;
	color: var(--kf-muted);
	letter-spacing: 0.04em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--kf-white);
	white-space: nowrap;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--kf-cream);
}

.site-header.is-scrolled .site-nav__list a,
.site-header.is-menu-open .site-nav__list a {
	color: var(--kf-text);
	text-shadow: none;
}

.site-header.is-scrolled .site-nav__list a:hover,
.site-header.is-scrolled .site-nav__list .current-menu-item > a,
.site-header.is-menu-open .site-nav__list a:hover,
.site-header.is-menu-open .site-nav__list .current-menu-item > a {
	color: var(--kf-green-dark);
}

.site-nav__list .sub-menu {
	display: none;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	padding: 8px;
	font-family: inherit;
	font-size: 0.75rem;
	color: var(--kf-white);
	cursor: pointer;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--kf-white);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars {
	position: relative;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle {
	color: var(--kf-text);
	text-shadow: none;
}

.site-header.is-scrolled .nav-toggle__bars,
.site-header.is-scrolled .nav-toggle__bars::before,
.site-header.is-scrolled .nav-toggle__bars::after,
.site-header.is-menu-open .nav-toggle__bars,
.site-header.is-menu-open .nav-toggle__bars::before,
.site-header.is-menu-open .nav-toggle__bars::after {
	background-color: var(--kf-deep);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -7px;
}

.nav-toggle__bars::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
	background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
	transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
	background-color: var(--kf-deep);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.9rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--kf-white);
	text-decoration: underline;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 48px;
	padding-block: 72px 56px;
}

.site-footer__name {
	font-family: var(--kf-font-serif);
	font-size: 1.15rem;
	color: var(--kf-white);
	margin-bottom: 1em;
}

.site-footer__address,
.site-footer__tel,
.site-footer__hours {
	margin: 0 0 0.5em;
}

.site-footer__list,
.site-footer__link-list {
	list-style: none;
	margin: 0 0 1.6em;
	padding: 0;
	display: grid;
	gap: 0.8em;
}

.site-footer__links-title {
	font-weight: 700;
	color: var(--kf-white);
	margin-bottom: 0.8em;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-block: 22px;
	font-size: 0.78rem;
}

.site-footer__copyright,
.site-footer__line {
	margin: 0;
}

.site-footer__line a {
	color: rgba(255, 255, 255, 0.7);
}

/* 6. セクション ------------------------------------------ */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 64vh;
	padding-block: 96px;
	background-color: var(--kf-deep);
	color: var(--kf-white);
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
}

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

.hero--photo .hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(20, 45, 15, 0.72) 0%, rgba(20, 45, 15, 0.42) 55%, rgba(20, 45, 15, 0.2) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin-inline: auto 0;
	margin-inline-start: max(var(--kf-gutter), calc((100vw - var(--kf-container)) / 2 + var(--kf-gutter)));
	padding-inline: 0 var(--kf-gutter);
}

.hero__title {
	font-size: clamp(1.8rem, 1.1rem + 2.9vw, 3.1rem);
	line-height: 1.45;
	margin-bottom: 0.7em;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero__lead {
	font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.08rem);
	max-width: 34em;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 2.4em;
}

.process-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
	gap: 32px;
	counter-reset: process;
}

.process-list__item {
	background-color: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.process-list__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.process-list__body {
	padding: 24px;
}

.process-list__number {
	display: block;
	font-family: var(--kf-font-serif);
	font-size: 0.95rem;
	color: var(--kf-green);
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
}

.process-list__title {
	font-size: 1.05rem;
	margin-bottom: 0.5em;
}

.process-list__text {
	font-size: 0.88rem;
	color: var(--kf-muted);
	margin: 0;
}

.process-flow {
	margin: 0 auto;
	max-width: 1120px;
}

.process-flow__image {
	width: 100%;
	border-radius: var(--kf-radius);
	box-shadow: var(--kf-shadow);
	background-color: var(--kf-white);
}

.business__layout {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 64px;
	align-items: start;
}

.business__subheading {
	font-size: 1.05rem;
	margin-top: 2em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid var(--kf-border);
}

.business__media img {
	width: 100%;
	border-radius: var(--kf-radius);
	box-shadow: var(--kf-shadow);
	margin-bottom: 32px;
}

.business__case {
	margin-top: 2em;
	padding: 24px 28px;
	background-color: var(--kf-bg-soft);
	border-radius: var(--kf-radius);
}

.business__case-text:last-child {
	margin-bottom: 0;
}

.profile__name {
	font-family: var(--kf-font-serif);
	font-size: 1.3rem;
	margin-bottom: 1em;
}

.profile__license {
	font-size: 0.88rem;
	color: var(--kf-muted);
}

.profile__license-label {
	display: inline-block;
	margin-right: 0.8em;
	padding: 2px 10px;
	background-color: var(--kf-bg-soft);
	border-radius: 999px;
	color: var(--kf-deep);
	font-size: 0.75rem;
}

.shop-list {
	list-style: none;
	margin: 56px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: 20px;
}

.shop-list__link {
	display: block;
	padding: 26px 28px;
	background-color: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	text-decoration: none;
	color: var(--kf-text);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.shop-list__link:hover {
	border-color: var(--kf-green);
	transform: translateY(-3px);
}

.shop-list__label {
	display: block;
	font-family: var(--kf-font-serif);
	font-size: 1.05rem;
	margin-bottom: 0.3em;
}

.shop-list__note {
	display: block;
	font-size: 0.8rem;
	color: var(--kf-muted);
}

.faq {
	display: grid;
	gap: 14px;
}

.faq__item {
	background-color: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
}

.faq__question {
	position: relative;
	padding: 20px 56px 20px 24px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question::after {
	content: "";
	position: absolute;
	right: 26px;
	top: 50%;
	width: 10px;
	height: 10px;
	margin-top: -7px;
	border-right: 2px solid var(--kf-green);
	border-bottom: 2px solid var(--kf-green);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
	transform: rotate(-135deg);
	margin-top: -2px;
}

.faq__answer {
	padding: 0 24px 22px;
	font-size: 0.94rem;
	color: var(--kf-muted);
}

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

.cta {
	position: relative;
	padding-block: 88px;
	background-color: var(--kf-deep);
	background-size: cover;
	background-position: center;
	color: var(--kf-white);
	text-align: center;
}

.cta--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(20, 45, 15, 0.76);
}

.cta__inner {
	position: relative;
	z-index: 1;
}

.cta__heading {
	font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.95rem);
	margin-bottom: 0.7em;
}

.cta__text {
	max-width: 40em;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.9);
}

.cta__actions {
	margin-top: 2.4em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.cta__tel {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.82);
}

.cta__tel a {
	color: var(--kf-white);
	font-size: 1.15rem;
	font-weight: 700;
	margin-left: 0.6em;
	text-decoration: none;
}

/* 7. 記事・フォーム -------------------------------------- */
.page-header {
	position: relative;
	padding-block: 88px 72px;
	background-color: var(--kf-bg-soft);
	overflow: hidden;
}

.page-header--photo {
	background-color: var(--kf-deep);
	color: var(--kf-white);
}

.page-header__media {
	position: absolute;
	inset: 0;
}

.page-header__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header--photo .page-header__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(20, 45, 15, 0.6);
}

.page-header__inner {
	position: relative;
	z-index: 1;
}

.page-header__sub {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kf-green);
	margin-bottom: 0.9em;
}

.page-header--photo .page-header__sub {
	color: rgba(255, 255, 255, 0.85);
}

.page-header__title {
	font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem);
	margin: 0;
}

.page-header__lead {
	margin: 1em 0 0;
	max-width: 42em;
	color: var(--kf-muted);
}

.page-header--photo .page-header__lead {
	color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
	padding-block: 16px;
	border-bottom: 1px solid var(--kf-border);
	font-size: 0.78rem;
	color: var(--kf-muted);
}

.breadcrumb__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: "/";
	margin-right: 8px;
	color: var(--kf-border);
}

.breadcrumb a {
	color: var(--kf-muted);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--kf-deep);
}

.page-content {
	padding-block: 80px;
}

.page-content--contact-intro {
	padding-bottom: 20px;
}

.page-content--contact-intro + .section--contact {
	padding-top: 20px;
}

.entry-content {
	line-height: 2;
}

.entry-content > * {
	margin-bottom: 1.6em;
}

.entry-content h2 {
	margin-top: 2.2em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid var(--kf-green);
	font-size: 1.4rem;
}

.entry-content h3 {
	margin-top: 2em;
	font-size: 1.15rem;
}

.entry-content img {
	border-radius: var(--kf-radius);
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 18px 24px;
	background-color: var(--kf-bg-soft);
	border-left: 3px solid var(--kf-green);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--kf-border);
	text-align: left;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 32px;
	font-size: 0.82rem;
	color: var(--kf-muted);
}

.entry-meta__category {
	padding: 3px 12px;
	background-color: var(--kf-bg-soft);
	border-radius: 999px;
	color: var(--kf-deep);
	text-decoration: none;
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid var(--kf-border);
	font-size: 0.88rem;
}

.post-nav__next {
	margin-left: auto;
	text-align: right;
}

.category-nav {
	padding-block: 28px;
	border-bottom: 1px solid var(--kf-border);
	background-color: var(--kf-white);
}

.category-nav__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.category-nav__link {
	display: inline-block;
	padding: 7px 18px;
	border: 1px solid var(--kf-border);
	border-radius: 999px;
	font-size: 0.84rem;
	text-decoration: none;
	color: var(--kf-text);
	background-color: var(--kf-white);
}

.category-nav__link:hover,
.category-nav__link.is-current {
	background-color: var(--kf-deep);
	border-color: var(--kf-deep);
	color: var(--kf-white);
}

.pagination {
	margin-top: 64px;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	background-color: var(--kf-white);
	text-decoration: none;
	color: var(--kf-text);
	font-size: 0.88rem;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background-color: var(--kf-deep);
	border-color: var(--kf-deep);
	color: var(--kf-white);
}

.form {
	background-color: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	padding: 44px;
}

.form__hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form__row {
	margin-bottom: 28px;
}

.form__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	font-weight: 700;
}

.form__required {
	padding: 2px 9px;
	background-color: var(--kf-green);
	color: var(--kf-white);
	border-radius: 3px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.form__control {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	background-color: var(--kf-bg);
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.7;
	color: inherit;
	box-sizing: border-box;
}

.form__control:focus {
	border-color: var(--kf-green);
	background-color: var(--kf-white);
	outline: none;
	box-shadow: 0 0 0 3px rgba(127, 174, 59, 0.18);
}

textarea.form__control {
	resize: vertical;
}

.form__help {
	margin: 10px 0 0;
	font-size: 0.82rem;
	color: var(--kf-muted);
}

.form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	cursor: pointer;
}

.form__checkbox input {
	margin-top: 0.45em;
	width: 18px;
	height: 18px;
	accent-color: var(--kf-green);
}

.form__actions {
	margin-top: 36px;
	text-align: center;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-form__field {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius);
	background-color: var(--kf-white);
	font-family: inherit;
	font-size: 0.95rem;
	box-sizing: border-box;
}

.search-form-wrap {
	margin-top: 48px;
}

/* 8. レスポンシブ ---------------------------------------- */
@media (max-width: 1024px) {
	:root {
		--kf-section-y: 80px;
	}

	.section__inner,
	.business__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.section--reverse .section__inner {
		direction: ltr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 820px) {
	:root {
		--kf-section-y: 64px;
		--kf-gutter: 20px;
	}

	body {
		font-size: 15.5px;
		line-height: 1.85;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: 76px 0 auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		max-height: calc(100dvh - 76px);
		overflow-y: auto;
		padding: 8px var(--kf-gutter) 32px;
		background-color: var(--kf-bg);
		border-bottom: 1px solid var(--kf-border);
		box-shadow: var(--kf-shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list li {
		border-bottom: 1px solid var(--kf-border);
	}

	.site-nav__list a {
		display: block;
		padding: 16px 4px;
		font-size: 0.95rem;
		color: var(--kf-text);
		text-shadow: none;
	}

	.site-nav__list a:hover,
	.site-nav__list .current-menu-item > a {
		color: var(--kf-green-dark);
	}

	.hero {
		min-height: 100vh;
		min-height: 100svh;
		padding-block: 72px;
	}

	.hero__inner {
		margin-inline-start: var(--kf-gutter);
		padding-inline-end: var(--kf-gutter);
	}

	.hero__actions .button {
		flex: 1 1 100%;
	}

	.form {
		padding: 28px 20px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		padding-block: 56px 40px;
	}

	.post-nav {
		flex-direction: column;
	}

	.post-nav__next {
		text-align: left;
		margin-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* =========================================================
   9. 帯・区切り図形・カード
   参考サイトの「場面ごとに帯で区切り、写真を大きく見せる」構成に対応。
   ========================================================= */

/* --- 帯の背景 --- */
.section,
.band,
.hero,
.highlight,
.contact-cta,
.access {
	position: relative;
}

.band--white {
	background-color: var(--kf-white);
}

.band--bg {
	background-color: var(--kf-bg);
}

.band--soft {
	background-color: var(--kf-bg-soft);
}

.band--cream {
	background-color: var(--kf-cream);
}

.band--deep {
	background-color: var(--kf-deep);
	color: var(--kf-white);
}

/* --- 区切り図形 --- */
.shape {
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	pointer-events: none;
	z-index: 2;
}

.shape svg {
	display: block;
	width: 100%;
	height: clamp(42px, 5.5vw, 92px);
}

.shape--bottom {
	bottom: -1px;
}

.shape--top {
	top: -1px;
	transform: scaleY(-1);
}

.shape--to-bg {
	color: var(--kf-bg);
}

.shape--to-white {
	color: var(--kf-white);
}

.shape--to-deep {
	color: var(--kf-deep);
}

.shape--to-soft {
	color: var(--kf-bg-soft);
}

.shape--to-cream {
	color: var(--kf-cream);
}

.shape--to-green {
	color: var(--kf-green);
}

.section > .container,
.band > .container,
.hero__inner,
.highlight__inner,
.contact-cta__inner,
.access__inner {
	position: relative;
	z-index: 3;
}

/* 区切りがつくセクションは上下の余白を広めにとる */
.section--features,
.section--shop,
.contact-cta {
	padding-block: calc(var(--kf-section-y) + 3vw);
}

/* --- キャッチコピー帯 --- */
.band {
	padding-block: 88px 96px;
	background-image: linear-gradient(180deg, var(--kf-deep-soft) 0%, var(--kf-deep) 100%);
}

.band__inner {
	text-align: center;
}

.band__text {
	margin: 0;
	font-family: var(--kf-font-serif);
	font-size: clamp(1.25rem, 0.95rem + 1.4vw, 2rem);
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.1em;
	color: var(--kf-white);
}

/* --- アイコン --- */
.icon {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- ボタンの派生 --- */
.button--pill {
	border-radius: 999px;
	padding-inline: 40px;
}

.button--outline {
	background-color: transparent;
	color: var(--kf-deep);
}

.button--outline:hover {
	background-color: var(--kf-deep);
	color: var(--kf-white);
}

.button--compact {
	padding: 11px 22px;
	font-size: 0.84rem;
}

.button--wide-auto {
	min-width: min(360px, 100%);
}

/* --- こだわり（丸写真カード） --- */
.section__lead--center {
	margin-inline: auto;
	text-align: center;
}

.section__note--center {
	max-width: 46em;
	margin-inline: auto;
	text-align: left;
}

.check-list--center {
	max-width: 34em;
	margin-inline: auto;
}

.commitment-image {
	max-width: 880px;
	margin: 0 auto 56px;
}

.commitment-image__img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--kf-radius);
	box-shadow: var(--kf-shadow);
}

.feature-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: 56px 40px;
}

.feature {
	text-align: center;
}

.feature__media {
	width: min(230px, 72%);
	margin: 0 auto 26px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(52, 92, 42, 0.16);
	background-color: var(--kf-white);
}

.feature__media img,
.feature__media .thumb-placeholder {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.feature__title {
	font-size: 1.1rem;
	margin-bottom: 0.5em;
	color: var(--kf-deep);
}

.feature__text {
	margin: 0;
	font-size: 0.88rem;
	color: var(--kf-muted);
	line-height: 1.9;
}

/* --- 写真背景＋白カード --- */
.highlight {
	display: flex;
	align-items: center;
	padding-block: calc(var(--kf-section-y) + 2vw);
	background-color: var(--kf-bg-soft);
	overflow: hidden;
}

.highlight__media {
	position: absolute;
	inset: 0;
}

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

.highlight--photo .highlight__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 45, 15, 0.35) 0%, rgba(20, 45, 15, 0.1) 60%);
}

.highlight__inner {
	display: flex;
	justify-content: flex-end;
}

.highlight__card {
	width: min(560px, 100%);
	padding: 60px 56px;
	background-color: rgba(255, 255, 255, 0.96);
	border-radius: 28px;
	box-shadow: 0 20px 50px rgba(30, 55, 22, 0.18);
}

.highlight__card .section-title {
	margin-bottom: 1.4em;
}

.highlight__text:last-of-type {
	margin-bottom: 0;
}

.highlight__actions {
	margin-top: 2em;
}

/* --- 工程 --- */
.section--process {
	background-color: var(--kf-bg);
}

/* --- 商品カード --- */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 48px 36px;
	margin-bottom: 64px;
}

.product-card {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.product-card__media {
	margin-bottom: 22px;
	border: 10px solid var(--kf-border-soft);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(52, 92, 42, 0.12);
}

.product-card__media img,
.product-card__media .thumb-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-card .badge {
	align-self: center;
}

.product-card__title {
	font-size: 1.08rem;
	margin-bottom: 0.5em;
}

.product-card__text {
	font-size: 0.88rem;
	color: var(--kf-muted);
	margin-bottom: 1.4em;
}

.product-card__actions {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.shop-list__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	border-radius: 50%;
	background-color: var(--kf-bg-soft);
	color: var(--kf-deep);
	font-size: 20px;
}

/* --- ブログ2カラム --- */
.post-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}

.post-columns--single {
	grid-template-columns: minmax(0, 720px);
	justify-content: center;
}

.post-column__title {
	font-size: 1.05rem;
	margin-bottom: 1em;
	padding-bottom: 0.6em;
	border-bottom: 2px solid var(--kf-green);
	color: var(--kf-deep);
}

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

.post-row + .post-row {
	border-top: 1px solid var(--kf-border);
}

.post-row__link {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 4px;
	color: inherit;
	text-decoration: none;
}

.post-row__link:hover .post-row__title {
	color: var(--kf-green-dark);
}

.post-row__media {
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--kf-bg-soft);
}

.post-row__media img,
.post-row__media .thumb-placeholder {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.post-row__body {
	display: block;
	min-width: 0;
}

.post-row__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	font-size: 0.75rem;
	color: var(--kf-muted);
}

.post-row__category {
	padding: 2px 10px;
	background-color: var(--kf-bg-soft);
	border-radius: 999px;
	color: var(--kf-deep);
}

.post-row__title {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.7;
}

/* --- お問い合わせ導線 --- */
.contact-cta {
	background-color: var(--kf-deep);
	color: var(--kf-white);
	text-align: center;
	overflow: hidden;
}

.contact-cta__media {
	position: absolute;
	inset: 0;
}

.contact-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-cta--photo .contact-cta__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(20, 45, 15, 0.7);
}

.contact-cta__heading {
	font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
	margin-bottom: 0.7em;
}

.contact-cta__text {
	max-width: 40em;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.92);
}

.pill-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 32px;
	max-width: 900px;
	margin: 3em auto 0;
}

.pill-grid--single {
	max-width: 460px;
}

.pill-card {
	position: relative;
	padding: 54px 36px 44px;
	background-color: var(--kf-white);
	border-radius: 100px;
	color: var(--kf-text);
	box-shadow: 0 18px 40px rgba(20, 45, 15, 0.22);
}

.pill-card__icon {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--kf-green);
	color: var(--kf-white);
	font-size: 26px;
	box-shadow: 0 8px 18px rgba(20, 45, 15, 0.2);
}

.pill-card__title {
	font-weight: 700;
	font-size: 1.02rem;
	margin-bottom: 0.4em;
}

.pill-card__note {
	font-size: 0.82rem;
	color: var(--kf-muted);
	margin-bottom: 1.4em;
}

.pill-card__tel {
	margin-bottom: 0.4em;
}

.pill-card__tel a {
	font-family: var(--kf-font-serif);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--kf-deep);
	text-decoration: none;
	letter-spacing: 0.04em;
}

/* --- アクセス --- */
.access {
	padding-block: calc(var(--kf-section-y) - 16px);
	background-color: var(--kf-deep);
	color: rgba(255, 255, 255, 0.9);
}

.access__inner {
	display: grid;
	grid-template-columns: minmax(0, 900px);
	justify-content: center;
	gap: 36px;
	align-items: stretch;
}

.access .section-title__sub {
	color: rgba(255, 255, 255, 0.75);
}

.access .section-title__heading {
	color: var(--kf-white);
}

.access__list {
	list-style: none;
	margin: 0 0 1.6em;
	padding: 0;
	display: grid;
	gap: 18px;
}

.access__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	line-height: 1.9;
}

.access__icon {
	flex: 0 0 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-top: 2px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.14);
	color: var(--kf-white);
	font-size: 17px;
}

.access__value a {
	color: var(--kf-white);
}

.access__note {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.82);
}

.access__map {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	background-color: rgba(255, 255, 255, 0.08);
}

.access__map iframe {
	display: block;
	width: 100%;
	height: clamp(280px, 34vw, 400px);
	border: 0;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
	.post-columns,
	.access__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.highlight__inner {
		justify-content: center;
	}
}

@media (max-width: 820px) {
	.band {
		padding-block: 64px 72px;
	}

	.highlight__card {
		padding: 40px 26px;
		border-radius: 20px;
	}

	.pill-card {
		border-radius: 40px;
		padding: 48px 24px 36px;
	}

	.feature-grid {
		gap: 44px 24px;
	}

	.feature__media {
		width: min(200px, 66%);
	}

	.product-card__actions .button {
		flex: 1 1 auto;
	}

	.post-row__media {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
	}
}

/* --- 中央寄せにするセクション --- */
.section--features .section-title,
.section--shop .section-title,
.section--process .section-title,
.section--blog .section-title {
	text-align: center;
}

.section--features .section-title__heading,
.section--shop .section-title__heading,
.section--process .section-title__heading,
.section--blog .section-title__heading {
	margin-inline: auto;
}

.section--process .section__lead,
.section--blog .section__lead {
	margin-inline: auto;
	text-align: center;
}

/* ヒーロー直下に帯が続くときの重なり調整 */
.hero + .band {
	margin-top: -1px;
}

/* =========================================================
   10. 参考デモに寄せた各パーツ
   ========================================================= */

/* --- ヒーロー：本文＋重ねる縦長写真 --- */
.hero {
	min-height: 82vh;
}

.hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	margin-inline: auto;
	max-width: var(--kf-container);
	padding-inline: var(--kf-gutter);
}

.hero__body {
	max-width: 660px;
}

.hero__portrait {
	flex: 0 0 300px;
	width: 300px;
	aspect-ratio: 0.72;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 24px 54px rgba(12, 32, 8, 0.38);
}

.hero__portrait-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- こだわりカード（ラベル→丸写真→白ボックス→説明） --- */
.feature__label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kf-green-dark);
	margin-bottom: 0.7em;
}

.feature__title {
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--kf-deep);
	margin-bottom: 1em;
}

.feature__media {
	margin-bottom: 20px;
}

.feature__note {
	display: block;
	margin: 0 auto 16px;
	padding: 12px 22px;
	max-width: 230px;
	background-color: var(--kf-white);
	border-radius: 30px;
	color: var(--kf-accent);
	font-weight: 700;
	font-size: 0.92rem;
	line-height: 1.6;
	box-shadow: 0 6px 16px rgba(52, 92, 42, 0.08);
}

/* --- 写真背景＋円形カード --- */
.highlight__card {
	width: min(520px, 100%);
	padding: 104px 62px;
	border-radius: 500px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.95);
}

.highlight__card .section-title {
	margin-bottom: 1.1em;
}

.highlight__text {
	font-size: 0.92rem;
	line-height: 1.9;
}

.highlight__card .check-list {
	margin: 1.2em 0;
	text-align: left;
	display: inline-grid;
}

.highlight__actions {
	margin-top: 1.4em;
}

/* --- 帯の上のメッセージ（左右に写真） --- */
.section--message {
	padding-block: calc(var(--kf-section-y) + 3vw);
}

.message__inner {
	display: grid;
	grid-template-columns: minmax(140px, 210px) minmax(0, 1fr) minmax(140px, 210px);
	gap: 48px;
	align-items: center;
}

.message__side img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(52, 92, 42, 0.18);
}

.message__body {
	text-align: center;
}

.message__lead {
	font-family: var(--kf-font-serif);
	font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.55rem);
	font-weight: 700;
	line-height: 1.8;
	color: var(--kf-deep);
	margin-bottom: 1.2em;
}

.message__text {
	max-width: 44em;
	margin-inline: auto;
	font-size: 0.94rem;
}

.message__actions {
	margin-top: 2.2em;
}

/* --- ボタンの追加バリエーション --- */
.button--accent {
	background-color: var(--kf-accent);
	border-color: var(--kf-accent);
	color: var(--kf-white);
}

.button--accent:hover {
	background-color: #a26a17;
	border-color: #a26a17;
	color: var(--kf-white);
}

.button--tel {
	background-color: var(--kf-white);
	border-color: var(--kf-white);
	color: var(--kf-deep);
	font-family: var(--kf-font-serif);
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	padding: 6px 24px;
	margin-bottom: 0.4em;
}

.button--tel:hover {
	background-color: var(--kf-white);
	color: var(--kf-green-dark);
}

/* --- アクセス --- */
.access__logo {
	margin-bottom: 24px;
}

.access__logo img {
	max-width: 190px;
	height: auto;
}

.access__map {
	padding: 18px;
	background-color: var(--kf-white);
	border-radius: 40px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.access__map-frame {
	border-radius: 26px;
	overflow: hidden;
}

.access__map iframe {
	display: block;
	width: 100%;
	height: clamp(280px, 32vw, 380px);
	border: 0;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
	.message__inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.message__body {
		grid-column: 1 / -1;
		order: 2;
	}

	.message__side {
		order: 1;
	}
}

@media (max-width: 900px) {
	.hero__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero__portrait {
		flex-basis: auto;
		width: min(240px, 60%);
		align-self: flex-end;
	}

	.highlight__card {
		border-radius: 32px;
		padding: 44px 30px;
	}
}

@media (max-width: 820px) {
	:root {
		--kf-section-y: 76px;
	}

	.hero {
		min-height: 100vh;
		min-height: 100svh;
	}

	.button--tel {
		font-size: 1.35rem;
	}

	.access__map {
		padding: 12px;
		border-radius: 26px;
	}

	.feature__note {
		max-width: 200px;
	}
}

/* =========================================================
   11. スマートフォン向けの調整
   ========================================================= */

/* 固定ヘッダーの下にアンカー先が隠れないようにする */
[id] {
	scroll-margin-top: 88px;
}

/* 工程図：狭い画面では縮小せず、横スクロールで読めるようにする */
.process-flow__scroll {
	overflow-x: auto;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
}

.process-flow__hint {
	display: none;
}

/* 本文中の表がはみ出さないようにする */
.entry-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

/* 長いURLなどで行が伸びないようにする */
.entry-content,
.section__text,
.card__excerpt,
.feature__text {
	overflow-wrap: anywhere;
}

@media (max-width: 900px) {
	.process-flow__scroll {
		margin-inline: calc(var(--kf-gutter) * -1);
		padding-inline: var(--kf-gutter);
	}

	.process-flow__image {
		/* 原寸（1672px）だと縦に伸びすぎるため、文字が読める幅に固定する。 */
		width: 1040px;
		max-width: none;
		min-width: 0;
	}

	.process-flow__hint {
		display: block;
		margin-top: 12px;
		font-size: 0.75rem;
		color: var(--kf-muted);
		text-align: center;
	}
}

/* フッターのリンクはタップ領域を確保する */
.site-footer__list a,
.site-footer__link-list a {
	display: inline-block;
	padding-block: 6px;
}

/* 320px 幅でも各カードが収まるようにする */
@media (max-width: 360px) {
	:root {
		--kf-gutter: 16px;
	}

	.pill-card {
		border-radius: 32px;
		padding-inline: 18px;
	}

	.button {
		padding-inline: 22px;
	}
}

/* --- スマートフォンではヒーローを画面の高さいっぱいにする --- */
@media (max-width: 820px) {
	.hero {
		/* svh はアドレスバーの表示・非表示で高さが変動しないようにするため。 */
		min-height: 100vh;
		min-height: 100svh;
		align-items: center;
	}

	/* 画面が低い端末では、余白を詰めて内容が収まるようにする */
	.hero__title {
		margin-bottom: 0.6em;
	}

	.hero__actions {
		margin-top: 1.8em;
	}
}

@media (max-width: 820px) and (max-height: 640px) {
	.hero {
		padding-block: 56px;
	}

	.hero__lead {
		font-size: 0.9rem;
	}
}

/* --- フッターナビゲーションを2列にする --- */
/* グリッドだと横方向に流れて「1,3,5,7 / 2,4,6」の並びになるため、
   段組み（multi-column）で縦方向に流し、メニュー順のまま読めるようにする。 */
.site-footer__list {
	display: block;
	columns: 2;
	column-gap: 32px;
}

.site-footer__list li {
	break-inside: avoid;
	margin-bottom: 0.8em;
}

.site-footer__list li:last-child {
	margin-bottom: 0;
}

/* お求め先・SNSが未設定のときに右側の列が空かないようにする */
.site-footer__inner {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 600px) {
	.site-footer__list {
		column-gap: 20px;
	}

	.site-footer__list a,
	.site-footer__link-list a {
		font-size: 0.85rem;
	}
}

/* --- 最上部（スクロール前）のヘッダーは境界線を出さない --- */
/* 線幅は残したまま色だけ透明にして、スクロール時の切り替わりを滑らかに保つ。
   .is-scrolled / .is-menu-open のほうが詳細度が高いので、そちらの線は残る。 */
.site-header {
	border-bottom-color: transparent;
}

/* --- PCでもヒーローを画面の高さいっぱいにする --- */
.hero {
	min-height: 100vh;
	min-height: 100svh;
}

/* 画面が低いPC・横向きタブレットでは余白を詰めて内容が収まるようにする */
@media (min-width: 821px) and (max-height: 760px) {
	.hero {
		padding-block: 64px;
	}
}

/* --- 狭い画面でもキャッチコピーが2行に収まるようにする --- */
@media (max-width: 360px) {
	.hero__title {
		font-size: 1.4rem;
	}
}
