@charset "UTF-8";
/*
Theme Name: Kimura Komuten
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: 木村工務店オリジナルテーマ。リフォーム・塗装・屋根工事を扱う工務店向けコーポレートサイト。
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kimura-komuten
*/


/* =============================================================
   木村工務店 メインスタイルシート
   ============================================================= */

/* -------------------------------------------------------------
   CSS Variables
   ------------------------------------------------------------- */
:root {
	/* Color */
	--c-primary: #3B6D11;          /* メインダークオリーブグリーン */
	--c-primary-dark: #4a5d36;
	--c-primary-light: #748e57;
	--c-accent: #06C755;           /* LINEグリーン */
	--c-accent-dark: #05a847;
	--c-brown: #6b4f2a;            /* ロゴ・見出しブラウン */
	--c-brown-light: #8a6c45;
	--c-text: #2a2a2a;
	--c-text-light: #5a5a5a;
	--c-border: #e2ddd2;
	--c-bg: #ffffff;
	--c-bg-cream: #f5f2eb;         /* 薄いクリーム背景 */
	--c-bg-soft: #faf8f3;
	--c-white: #ffffff;

	/* Typography (Noto Sans JP に統一) */
	--ff-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--ff-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--ff-display: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

	/* Layout */
	--max-w: 1650px;
	--max-w-narrow: 1000px;
	--header-h: 110px;
	--radius: 6px;
	--radius-lg: 12px;

	/* Shadow */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, .1);

	/* Transition */
	--ease: cubic-bezier(.4, 0, .2, 1);
}

/* -------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ff-sans);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =============================================================
   Page-load / Scroll reveal animation
   ============================================================= */
.kk-js .kk-anim {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1.3s cubic-bezier(.22, .61, .36, 1), transform 1.3s cubic-bezier(.22, .61, .36, 1);
	will-change: opacity, transform;
}
.kk-js .kk-anim.is-inview {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.kk-js .kk-anim,
	.kk-js .kk-anim.is-inview {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .75; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.4; font-weight: 700; }
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }

/* -------------------------------------------------------------
   Utility / Layout helpers
   ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: var(--max-w-narrow); }
.sep { color: var(--c-border); }

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 32px;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--radius);
	border: none;
	transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
	text-align: center;
	white-space: nowrap;
}
.btn:hover { opacity: 1; }
.btn--primary {
	background: var(--c-primary);
	color: var(--c-white);
}
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--line {
	background: var(--c-accent);
	color: var(--c-white);
}
.btn--line:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
	background: var(--c-white);
	color: var(--c-primary);
	border: 1.5px solid var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); }
.btn--lg { min-height: 60px; padding: 14px 48px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* -------------------------------------------------------------
   Header
   ------------------------------------------------------------- */
.site-header {
	background: var(--c-white);
	position: relative;
	z-index: 100;
}
.site-header__inner {
	max-width: 1650px;
	margin-inline: auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
}
.site-header__top {
	display: flex;
	justify-content: flex-end;
}
.site-header__bottom {
	display: flex;
	align-items: center;
	gap: 28px;
}

/* Logo */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--c-brown);
}
.logo__img {
	display: block;
	width: auto;
	height: 150px;
	max-width: 400px;
	object-fit: contain;
}
.logo--footer .logo__img { height: 100px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__ja {
	font-family: var(--ff-sans);
	font-weight: 700;
	font-size: 1.375rem;
	letter-spacing: .04em;
}
.logo__en {
	font-family: var(--ff-sans);
	font-size: 0.6875rem;
	letter-spacing: .15em;
	color: var(--c-brown-light);
	margin-top: 2px;
}

/* Tel */
.site-header__tel {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.2;
}
.tel-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--c-text);
	font-weight: 700;
	font-size: 1.375rem;
	letter-spacing: .02em;
}
.tel-icon { display: inline-flex; color: var(--c-primary); }
.tel-hours {
	font-size: 0.6875rem;
	color: var(--c-text-light);
	margin-top: 4px;
}

/* Global nav */
.global-nav__list {
	display: flex;
	gap: 28px;
	font-size: 0.875rem;
	font-weight: 500;
}
.global-nav__list a {
	color: var(--c-text);
	padding: 6px 0;
	transition: color .5s var(--ease);
}
.global-nav__list a:hover,
.global-nav__list .current-menu-item a { color: var(--c-primary); }

.header-cta { font-size: 0.8125rem; min-height: 48px; padding: 10px 20px; }

/* Hamburger (mobile only) */
.hamburger {
	display: none;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--c-brown);
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
	position: fixed;
	inset: var(--header-h) 0 0 0;
	background: var(--c-white);
	z-index: 90;
	transform: translateX(100%);
	transition: transform .35s var(--ease);
	overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__list { padding: 32px 24px; }
.drawer__list li { border-bottom: 1px solid var(--c-border); }
.drawer__list a { display: block; padding: 18px 4px; font-weight: 500; }

/* -------------------------------------------------------------
   Page Hero (下層ページのタイトルバー)
   ------------------------------------------------------------- */
.page-hero {
	background: var(--c-bg);
	padding: 60px 0 40px;
}
.page-hero__inner {
	max-width: var(--max-w);
	margin-inline: auto;
	padding: 0 24px;
}
.page-hero__en {
	font-family: var(--ff-display);
	font-size: 0.9375rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	margin: 0 0 4px;
	font-weight: 500;
}
.page-hero__ja {
	font-family: var(--ff-serif);
	font-size: 2.25rem;
	color: var(--c-brown);
	letter-spacing: .04em;
}

.breadcrumb {
	font-size: 0.75rem;
	color: var(--c-text-light);
	padding: 0 0 60px;
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--c-text-light); }
.breadcrumb span:not(.sep) { color: #3B6D11; }
.breadcrumb .sep { color: var(--c-border); margin: 0 2px; }

/* =============================================================
   TOP ページ
   ============================================================= */
/* Hero — 右側に写真、左側にテキスト。テキストが写真の上に重なるレイアウト */
.hero {
	position: relative;
	background: var(--c-bg);
	overflow: hidden;
}
/* 写真:絶対配置で右側に大きく配置(画面右端まで) */
.hero__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 64%;
	z-index: 1;
	background: #d9d2c0;
	border-radius: 0;
	aspect-ratio: auto;
}
.hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* テキストコンテンツのコンテナ:中央寄せ 1650px */
.hero__inner {
	max-width: var(--max-w);
	margin-inline: auto;
	padding: 90px 24px;
	position: relative;
	z-index: 2;
	min-height: 520px;
	display: flex;
	align-items: center;
}
.hero__content {
	position: relative;
	z-index: 2;
	max-width: 860px;
	/* テキストは写真の左端に重なる */
}
.hero__badge {
	display: inline-block;
	padding: 6px 18px;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 999px;
	margin-bottom: 24px;
	letter-spacing: .04em;
}
.hero__title {
	font-family: var(--ff-serif);
	font-size: 2.75rem;
	line-height: 1.5;
	color: var(--c-text);
	letter-spacing: .02em;
	margin-bottom: 8px;
}
.hero__title-em {
	display: block;
	color: var(--c-primary);
	margin-top: 8px;
}
.hero__lead {
	font-size: 0.875rem;
	line-height: 1.95;
	color: var(--c-text-light);
	margin: 24px 0 32px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__buttons .btn { min-width: 200px; }

/* Hero features bar */
.hero-features {
	background: var(--c-brown);
	color: var(--c-white);
}
.hero-features__inner {
	max-width: var(--max-w);
	margin-inline: auto;
	padding: 28px 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
}
.hero-features__item {
	padding: 8px 16px;
	border-right: 1px solid rgba(255, 255, 255, .25);
}
.hero-features__item:last-child { border-right: none; }
.hero-features__title {
	font-family: var(--ff-serif);
	font-weight: 800;
	font-size: 1.375rem;
	margin-bottom: 4px;
	letter-spacing: .05em;
}
.hero-features__desc {
	font-size: 0.75rem;
	font-weight: 700;
	opacity: .85;
	letter-spacing: .04em;
	margin: 0;
}

/* Section common */
.section { padding: 100px 0; }
.section--cream { background: var(--c-bg-cream); }
.section--company-bg { background: #F4F4F0; }
.company-lead {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--c-text-light);
	line-height: 1.85;
	margin: 0 auto 40px;
	max-width: 720px;
}
.section--soft {
	background: rgba(244, 244, 240, 0.85);
	max-width: 1650px;
	margin-inline: auto;
	margin-bottom: 80px;
}
.section--soft .container { max-width: 1370px; }
/* 対応工事一覧セクション: service-bg.jpg を 12% 表示(白88%オーバーレイ) */
.section--service-bg {
	background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
	            url('images/service-bg.jpg') center / cover no-repeat;
}
/* アフターサポート: after-support-bg.jpg + 白80%マスク */
.section--after-support-bg {
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
	            url('images/after-support-bg.jpg') center / cover no-repeat;
}

.section-header { text-align: left; margin-bottom: 50px; }
.section-header--center { text-align: center; }
.section-header__en {
	font-family: var(--ff-display);
	font-size: 0.9375rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	margin: 0 0 6px;
	font-weight: 500;
}
.section-header__ja {
	font-family: var(--ff-serif);
	font-size: 2rem;
	color: var(--c-brown);
	letter-spacing: .04em;
}

/* Why Choose Us */
.why-us__grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 96px;
	align-items: start;
}
.why-us__left {
	display: flex;
	flex-direction: column;
}
.why-us__left .section-header { margin-bottom: 40px; }
.why-us__image {
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(135deg, #a8b88e, #6b8042);
	aspect-ratio: 1 / 1.1;
}
.why-us__image img { width: 100%; height: 100%; object-fit: cover; }
.why-us__list { display: flex; flex-direction: column; }
.why-us__item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid var(--c-border);
	align-items: center;
}
.why-us__item:first-child { padding-top: 0; }
.why-us__item:last-child { border-bottom: none; }
.why-us__num {
	font-family: var(--ff-display);
	font-size: 1.125rem;
	color: var(--c-primary);
	font-weight: 600;
	line-height: 1;
	padding-top: 0;
}
.why-us__title {
	font-family: var(--ff-serif);
	font-size: 1.25rem;
	color: var(--c-primary);
	margin-bottom: 6px;
}
.why-us__text {
	font-size: 0.84375rem;
	color: var(--c-text-light);
	line-height: 1.9;
	margin: 0;
}

/* Service grid (TOP) */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.service-card {
	display: block;
	background: var(--c-white);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); opacity: 1; }
.service-card__img {
	aspect-ratio: 4 / 3;
	background: #d8d4c8;
	overflow: hidden;
}
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 14px 16px; text-align: center; }
.service-card__title {
	font-family: var(--ff-serif);
	font-size: 0.9375rem;
	color: var(--c-text);
	margin: 0;
}

.section-foot { text-align: center; margin-top: 50px; }

/* Works (TOP) */
.works-feature {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.works-card {
	background: var(--c-white);
	border: 1px solid #ECECE6;
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	display: block;
}
.works-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); opacity: 1; }
.works-card__img {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #d8d4c8;
	overflow: hidden;
	border-bottom: 3px solid #4F8E2C;
}
.works-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.works-card:hover .works-card__img img { transform: scale(1.05); }
.works-card__body { padding: 22px 22px 24px; }
.works-card__cat {
	display: inline-block;
	background: #EAF3DE;
	color: #3B6D11;
	font-size: 0.75rem;
	font-weight: 500;
	padding: 4px 14px;
	border-radius: 999px;
	letter-spacing: .04em;
	margin-bottom: 14px;
}
.works-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--c-text);
	margin: 0 0 10px;
	line-height: 1.55;
}
.works-card__meta {
	font-size: 0.8125rem;
	color: var(--c-text-light);
	margin: 0;
}

/* After support */
.section--after-support-bg .container { max-width: 1280px; }
.support-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.support-item {
	background: var(--c-white);
	border: 1.5px solid var(--c-primary);
	border-radius: var(--radius);
	padding: 28px 40px;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 32px;
	align-items: center;
}
.support-item__title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--ff-serif);
	font-size: 1rem;
	color: var(--c-primary);
	margin: 0;
}
.support-item__title::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	background-image: url("images/check-icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}
.support-item__text {
	font-size: 0.8125rem;
	color: var(--c-text-light);
	line-height: 1.85;
	margin: 0;
}

/* Voice (testimonials) */
.voice {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 40px;
	row-gap: 24px;
}
.voice__slider {
	flex: 1 1 1280px;
	max-width: 1280px;
	min-width: 0;
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 4px 16px;
	scroll-padding-left: 4px;
}
.voice__slider::-webkit-scrollbar { display: none; }

.voice-card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
	background: var(--c-white);
	border: 1px solid #D9D9D9;
	padding: 70px 30px;
}
.voice-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.voice-card__tag {
	background: #EAF3DE;
	color: #3B6D11;
	padding: 4px 14px;
	font-size: 0.75rem;
	border-radius: 999px;
	letter-spacing: .04em;
	font-weight: 500;
	white-space: nowrap;
}
.voice-card__type {
	font-size: 0.75rem;
	color: var(--c-text-light);
	white-space: nowrap;
}
.voice-card__text {
	font-size: 0.8125rem;
	color: var(--c-text);
	line-height: 1.95;
	margin: 0;
}

/* 矢印:SVG単体(外枠なし) */
.voice__arrow {
	flex-shrink: 0;
	background: transparent;
	border: none;
	color: #2A621C;
	cursor: pointer;
	padding: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.voice__arrow svg {
	width: 36px;
	height: 36px;
}
.voice__arrow:hover {
	opacity: 0.65;
	transform: scale(1.12);
}

.voice__dots {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
}
.voice__dot {
	width: 8px;
	height: 8px;
	background: var(--c-border);
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background .25s var(--ease);
}
.voice__dot.is-active { background: var(--c-primary); }

/* Service Area */
.service-area__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.service-area__map {
	aspect-ratio: 4 / 3;
	background: #e7e3d8;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text-light);
	font-size: 0.875rem;
}
.service-area__map iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.service-area__map img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }
.service-area__badge {
	display: inline-block;
	padding: 6px 18px;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 0.8125rem;
	border-radius: 999px;
	margin-bottom: 16px;
}
.service-area__title {
	font-family: var(--ff-serif);
	font-size: 1.125rem;
	color: var(--c-brown);
	margin-bottom: 16px;
}
.service-area__list {
	font-size: 0.84375rem;
	color: var(--c-text-light);
	line-height: 1.9;
	margin: 0;
}
.service-area__list dt {
	font-weight: 700;
	color: var(--c-primary);
	margin-top: 12px;
}
.service-area__list dt:first-child { margin-top: 0; }
.service-area__list dd {
	margin: 0 0 6px;
}

/* =============================================================
   CTA セクション(共通)
   ============================================================= */
.cta-section {
	position: relative;
	padding: 80px 0;
	background: linear-gradient(rgba(234, 243, 222, .85), rgba(234, 243, 222, .85)), url('images/cta-bg.jpg') center / cover no-repeat;
}
.cta-section__inner {
	max-width: 1370px;
	margin-inline: auto;
	padding: 0 24px;
}
.cta-section__box {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	padding: 50px 40px;
	text-align: center;
	box-shadow: var(--shadow-md);
}
.cta-section__title {
	font-family: var(--ff-serif);
	font-size: 1.75rem;
	color: var(--c-brown);
	margin-bottom: 14px;
}
.cta-section__lead {
	font-size: 0.84375rem;
	color: var(--c-text-light);
	margin-bottom: 28px;
}
.cta-section__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.cta-section__buttons .btn { min-width: 240px; }

/* =============================================================
   施工事例一覧 / 詳細
   ============================================================= */
.works-archive {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 48px;
	padding-bottom: 100px;
}
.works-sidebar {}
.works-sidebar__title {
	background: var(--c-primary);
	color: var(--c-white);
	font-family: var(--ff-serif);
	font-size: 0.9375rem;
	font-weight: 700;
	padding: 14px 22px;
	border-radius: var(--radius);
	margin: 0 0 10px;
}
.works-sidebar__list {
	border: none;
	border-radius: 0;
}
.works-sidebar__list li {
	border-bottom: 1px dashed var(--c-border);
}
.works-sidebar__list li:last-child {
	border-bottom: 1px dashed var(--c-border);
}
.works-sidebar__list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 12px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--c-text);
	transition: color .3s var(--ease);
}
.works-sidebar__list a::after {
	content: "→";
	color: var(--c-text);
	font-weight: 400;
	transition: transform .3s var(--ease), color .3s var(--ease);
}
.works-sidebar__list a:hover {
	background: transparent;
	color: var(--c-primary);
	opacity: 1;
}
.works-sidebar__list a:hover::after {
	color: var(--c-primary);
	transform: translateX(4px);
}
.works-sidebar__list .is-active a {
	color: var(--c-primary);
	background: transparent;
	font-weight: 700;
}
.works-sidebar__list .is-active a::after { color: var(--c-primary); }

.works-list__head {
	font-family: var(--ff-serif);
	font-size: 1.125rem;
	color: #3B6D11;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--c-border);
	margin-bottom: 32px;
}
.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 24px;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 60px;
	font-size: 0.875rem;
}
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--c-border);
	border-radius: 4px;
	color: var(--c-text);
}
.pagination .current { background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary); }
.pagination a:hover { background: var(--c-bg-cream); opacity: 1; }
.pagination .prev, .pagination .next { border: none; padding: 0 12px; }

/* 施工事例詳細 */
.works-detail { padding-bottom: 80px; }
.works-detail__title {
	font-family: var(--ff-serif);
	font-size: 1.375rem;
	color: var(--c-text);
	padding-bottom: 18px;
	border-bottom: 1px solid var(--c-border);
	margin-bottom: 36px;
}
.before-after {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	margin-bottom: 100px;
}
.before-after__col { }
.before-after__label {
	font-family: var(--ff-display);
	font-size: 1.125rem;
	color: var(--c-text);
	margin-bottom: 12px;
	font-weight: 600;
}
.before-after__img {
	aspect-ratio: 4 / 3;
	background: #d8d4c8;
	overflow: hidden;
}
.before-after__img img { width: 100%; height: 100%; object-fit: cover; }
.before-after__arrow {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2A621C;
	margin-top: 30px;
}
.before-after__arrow svg { width: 36px; height: 36px; }

.works-section-title {
	font-family: var(--ff-serif);
	font-size: 1.25rem;
	color: #3B6D11;
	margin-bottom: 24px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 100px;
}
.process-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	overflow: hidden;
}
.process-card__img {
	aspect-ratio: 4 / 3;
	background: #d8d4c8;
	overflow: hidden;
	position: relative;
}
.process-card__img-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}
.process-card__img-track img {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.process-card__img-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.85);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2A621C;
	cursor: pointer;
	z-index: 5;
	transition: background .25s var(--ease), transform .25s var(--ease);
}
.process-card__img-nav svg { width: 18px; height: 18px; }
.process-card__img-nav:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-50%) scale(1.1);
}
.process-card__img-nav--prev { left: 12px; }
.process-card__img-nav--next { right: 12px; }
.process-card__body { padding: 18px 20px 24px; }
.process-card__num {
	font-family: var(--ff-display);
	font-size: 1.125rem;
	color: #3B6D11;
	font-weight: 600;
	margin-bottom: 4px;
}
.process-card__title {
	font-family: var(--ff-serif);
	font-size: 1rem;
	color: var(--c-text);
	margin-bottom: 12px;
}
.process-card__list {
	font-size: 0.75rem;
	color: var(--c-text-light);
	line-height: 1.9;
}
.process-card__list li { position: relative; padding-left: 12px; }
.process-card__list li::before { content: "•"; position: absolute; left: 0; color: var(--c-primary); }
.process-card__text {
	font-size: 0.75rem;
	color: var(--c-text-light);
	line-height: 1.9;
}

.spec-table {
	margin-bottom: 60px;
	font-size: 0.84375rem;
}
.spec-table th, .spec-table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--c-border);
	text-align: left;
	vertical-align: top;
}
.spec-table tr:first-child th,
.spec-table tr:first-child td {
	border-top: 1px solid var(--c-border);
}
.spec-table th {
	width: 140px;
	background: #F4F4F0;
	color: var(--c-text);
	font-weight: 500;
}

.related-works {
	padding: 60px 0;
	margin-bottom: 60px;
}
.related-works__inner { max-width: var(--max-w); margin-inline: auto; padding: 0 24px; }
.related-works__title {
	text-align: center;
	margin-bottom: 32px;
}
.related-works__title-en {
	font-family: var(--ff-display);
	font-size: 0.875rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	margin-bottom: 6px;
	font-weight: 500;
}
.related-works__title-ja {
	font-family: var(--ff-serif);
	font-size: 1.5rem;
	color: var(--c-brown);
}

/* =============================================================
   FAQ
   ============================================================= */
.faq { padding-bottom: 100px; }
.faq-group { margin-bottom: 60px; }
.faq-group__title {
	font-family: var(--ff-serif);
	font-size: 1.375rem;
	color: var(--c-primary);
	text-align: left;
	margin-bottom: 28px;
}
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-question {
	display: grid;
	grid-template-columns: 40px 1fr 24px;
	gap: 12px;
	width: 100%;
	background: transparent;
	border: none;
	padding: 22px 8px;
	text-align: left;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--c-text);
	align-items: center;
}
.faq-question__q {
	font-family: var(--ff-display);
	color: #2A621C;
	font-size: 1.125rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.faq-question__icon {
	width: 24px;
	height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text-light);
}
.faq-question__icon::before,
.faq-question__icon::after {
	content: "";
	position: absolute;
	background: var(--c-text-light);
	transition: transform .3s var(--ease);
}
.faq-question__icon::before { width: 14px; height: 1.5px; }
.faq-question__icon::after { width: 1.5px; height: 14px; }
.faq-item.is-open .faq-question__icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
}
.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}
.faq-answer__inner {
	overflow: hidden;
	min-height: 0;
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 12px;
	align-items: center;
	background: #F4F4F0;
	padding: 0 8px;
	transition: padding .4s cubic-bezier(.4, 0, .2, 1);
}
.faq-item.is-open .faq-answer__inner {
	padding: 22px 8px;
}
.faq-answer__a {
	font-family: var(--ff-display);
	color: #2A621C;
	font-size: 1.125rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.faq-answer__text {
	font-size: 0.875rem;
	line-height: 1.9;
	color: var(--c-text);
}

/* =============================================================
   会社案内
   ============================================================= */
.company-message { padding-bottom: 80px; }
.company-message__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: stretch;
}
.company-message__en {
	font-family: var(--ff-display);
	font-size: 0.875rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	margin-bottom: 8px;
	font-weight: 500;
}
.company-message__title {
	font-family: var(--ff-serif);
	font-size: 2rem;
	color: var(--c-brown);
	line-height: 1.5;
	margin-bottom: 28px;
}
.company-message__text {
	font-size: 0.875rem;
	line-height: 2;
	color: var(--c-text);
	margin-bottom: 16px;
}
.company-message__sign {
	margin-top: 32px;
	font-size: 0.875rem;
	text-align: right;
}
.company-message__sign-role { font-size: 0.75rem; color: var(--c-text-light); margin-right: 12px; }
.company-message__sign-name { font-family: var(--ff-serif); font-size: 1rem; letter-spacing: .1em; }
.company-message__photo {
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 360px;
	background: linear-gradient(135deg, #c8d4b2, #6b8042);
}
.company-message__photo img { width: 100%; height: 100%; object-fit: cover; }

.promise-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}
.promise-item {
	background: var(--c-white);
	border: 1.5px solid var(--c-primary);
	border-radius: var(--radius);
	padding: 22px 32px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	align-items: center;
}
.promise-item__head {
	display: flex;
	gap: 16px;
	align-items: center;
}
.promise-item__num {
	font-family: var(--ff-display);
	font-size: 1.375rem;
	color: var(--c-primary);
	font-weight: 600;
}
.promise-item__title {
	font-family: var(--ff-serif);
	font-size: 1.125rem;
	color: var(--c-primary);
	margin: 0;
}
.promise-item__text {
	font-size: 0.8125rem;
	color: var(--c-text-light);
	line-height: 1.9;
	margin: 0;
}

.contribution {
	max-width: 900px;
	margin: 80px auto 0;
}
.contribution__box {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 32px 40px;
}
.contribution__list { font-size: 0.875rem; }
.contribution__list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--c-border);
	text-align: center;
}
.contribution__list li:last-child { border-bottom: none; }

.company-info { padding-top: 80px; }
.company-info__map {
	aspect-ratio: 16 / 7;
	background: #e7e3d8;
	border-radius: var(--radius);
	margin-bottom: 32px;
	overflow: hidden;
	max-width: 1280px;
	margin-inline: auto;
}
.company-info__map iframe { width: 100%; height: 100%; border: 0; }
.company-info__table {
	max-width: 720px;
	margin-inline: auto;
	font-size: 0.875rem;
}
.company-info__table th, .company-info__table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--c-border);
	text-align: left;
	vertical-align: top;
}
.company-info__table tr:first-child th,
.company-info__table tr:first-child td {
	border-top: 1px solid var(--c-border);
}
.company-info__table th {
	width: 140px;
	color: var(--c-text);
	font-weight: 500;
	background: #F4F4F0;
}

/* =============================================================
   事業内容
   ============================================================= */
.service-intro {
	background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url('images/service-bg.jpg') center / cover no-repeat;
	padding: 60px 0 80px;
	text-align: center;
}
.service-intro .container--narrow { max-width: 1300px; }
.service-intro__title {
	font-family: var(--ff-serif);
	font-size: 1.875rem;
	color: #5C3A1E;
	line-height: 1.6;
	margin-bottom: 20px;
}
.service-intro__text {
	font-size: 0.875rem;
	line-height: 2;
	color: var(--c-text-light);
	max-width: 700px;
	margin-inline: auto;
}

.section--service-list .container--narrow { max-width: 1650px; }

.service-list { display: flex; flex-direction: column; gap: 80px; }

.service-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	padding-bottom: 80px;
	border-bottom: 1px solid #2A621C;
	scroll-margin-top: 130px;
}
.service-list .service-block:nth-child(even) .service-block__image { order: -1; }
.service-block__en {
	font-family: var(--ff-display);
	font-size: 0.875rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	font-weight: 700;
	margin-bottom: 8px;
}
.service-block__title {
	font-family: var(--ff-serif);
	font-size: 1.75rem;
	color: var(--c-text);
	margin-bottom: 24px;
}
.service-block__text {
	font-size: 0.84375rem;
	color: var(--c-text-light);
	line-height: 1.95;
	margin-bottom: 24px;
}
.service-block__list {
	margin-bottom: 32px;
	font-size: 0.8125rem;
	padding: 0;
	list-style: none;
}
.service-block__list li {
	padding: 14px 0 14px 28px;
	position: relative;
	border-bottom: 1px solid var(--c-border);
}
.service-block__list li:first-child {
	border-top: 1px solid var(--c-border);
}
.service-block__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B6D11' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
}
.service-block__image {
	aspect-ratio: 4 / 3;
	background: #d8d4c8;
	border-radius: var(--radius);
	overflow: hidden;
}
.service-block__image img { width: 100%; height: 100%; object-fit: cover; }

.flow {
	background: #F4F4F0;
	padding: 80px 0 100px;
	margin-bottom: 80px;
}
.flow__title {
	font-family: var(--ff-serif);
	font-size: 1.625rem;
	text-align: center;
	color: var(--c-brown);
	margin-bottom: 50px;
}
.flow__list {
	list-style: none;
	max-width: 720px;
	margin: 0 auto;
	background: var(--c-white);
	border-radius: var(--radius);
	padding: 60px 60px;
}
.flow__item {
	max-width: 460px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 24px;
	align-items: center;
	padding: 30px 0;
}
.flow__num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #EAF3DE;
	color: #3B6D11;
	font-family: var(--ff-display);
	font-size: 0.9375rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.flow__item:not(:last-child) .flow__num::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: 1px;
	height: 60px;
	background: #EAF3DE;
	transform: translateX(-50%);
	z-index: 0;
}
.flow__title-sub {
	font-family: var(--ff-serif);
	font-size: 1rem;
	color: #3B6D11;
	margin: 0 0 6px;
}
.flow__desc {
	font-size: 0.8125rem;
	color: var(--c-text);
	margin: 0;
}

.audience {
	max-width: 1280px;
	margin: 0 auto 60px;
	padding: 0 40px;
}
.audience__title {
    font-family: var(--ff-serif);
    font-size: 1.625rem;
    text-align: center;
    color: var(--c-brown);
    margin-bottom: 50px;
}
.audience__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 88px;
}
.audience__card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	padding: 100px 60px;
    background: #F4F4F0;
}
.audience__cat {
	font-family: var(--ff-display);
	font-size: 0.6875rem;
	color: #3B6D11;
	letter-spacing: .15em;
	margin-bottom: 4px;
}
.audience__name {
	font-family: var(--ff-serif);
	font-size: 1.825rem;
	color: var(--c-text);
	margin-bottom: 70px;
}
.audience__text {
	font-size: 0.8125rem;
	color: var(--c-text-light);
	line-height: 1.85;
	margin-bottom: 70px;
}
.audience__list { font-size: 0.78125rem; }
.audience__list li {
	padding: 4px 0 4px 18px;
	position: relative;
}
.audience__list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--c-primary);
}

/* =============================================================
   お問い合わせ
   ============================================================= */
.contact { padding-bottom: 80px; }
.contact-channel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 32px 0;
	border-bottom: 1px solid var(--c-border);
}
.contact-channel__head { flex: 1 1 auto; min-width: 0; }
.contact-channel__body { flex: 0 0 auto; text-align: right; }
.contact-channel__label {
	font-family: var(--ff-display);
	font-size: 0.875rem;
	color: var(--c-primary);
	letter-spacing: .12em;
	margin: 0 0 4px;
	font-weight: 500;
}
.contact-channel__title {
	font-family: var(--ff-serif);
	font-size: 1.375rem;
	color: var(--c-brown);
	margin: 0;
}
.contact-channel__tel {
	margin: 0 0 4px;
	font-size: 2rem;
	font-weight: 700;
	color: var(--c-text);
}
.contact-channel__hours {
	margin: 0;
	font-size: 0.75rem;
	color: var(--c-text-light);
}

.contact-form-wrap { padding-top: 50px; }
.contact-form__intro {
	font-size: 0.875rem;
	color: var(--c-text);
	margin-bottom: 32px;
}
.contact-form__intro small { display: block; color: var(--c-text-light); margin-top: 4px; }

.form-row {
	display: grid;
	grid-template-columns: 80px 160px 1fr;
	gap: 16px;
	padding: 16px 0;
	align-items: start;
}
.form-row__required, .form-row__optional {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 28px;
	padding: 0 10px;
	font-size: 0.75rem;
	color: var(--c-white);
	border-radius: 3px;
	font-weight: 500;
	margin-top: 8px;
}
.form-row__required { background: var(--c-primary); }
.form-row__optional { background: #b0b0b0; }
.form-row__label {
	font-size: 0.875rem;
	font-weight: 500;
	padding-top: 12px;
}

.form-input, .form-textarea, .form-select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 0.875rem;
	background: #F4F4F0;
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder { color: #C6BFB8; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
	outline: none;
	border-color: var(--c-primary);
	background: var(--c-white);
}
.form-textarea { min-height: 160px; resize: vertical; padding: 12px 14px; }

.form-radio-group {
	display: flex;
	gap: 28px;
	padding-top: 12px;
}
.form-radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 0.875rem;
}
.form-radio input { accent-color: var(--c-primary); width: 18px; height: 18px; }

.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { min-width: 220px; min-height: 56px; letter-spacing: .3em; text-indent: .3em; }
.contact-form__notice { padding: 24px; background: var(--c-bg-cream); border-radius: var(--radius); text-align: center; color: var(--c-text-light); font-size: 0.875rem; }

/* =============================================================
   Contact Form 7 対応スタイル
   CF7 のフォーム内でもテーマの form-row / form-input 等を使えるように、
   かつ CF7 デフォルト要素も既存デザインに揃える
   ============================================================= */
.wpcf7 { margin-top: 8px; }
.wpcf7-form p { margin: 0; }

/* CF7 のコントロールラッパを .form-row グリッドの3列目セルとして機能させる */
.wpcf7-form .form-row { align-items: start; }
.wpcf7-form .form-row .wpcf7-form-control-wrap { display: block; width: 100%; }
/* バッジ・ラベル・入力欄の縦位置を揃える */
.wpcf7-form .form-row .cf7-required,
.wpcf7-form .form-row .cf7-optional { height: 28px; margin-top: 0; }
.wpcf7-form .form-row .form-row__label { padding-top: 6px; }
/* ラジオ・チェックボックスはラベルと縦位置を揃える */
.wpcf7-form .form-row .wpcf7-radio,
.wpcf7-form .form-row .wpcf7-checkbox { padding-top: 6px; }

/* CF7 入力要素をテーマの入力欄デザインに統一 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 0.875rem;
	background: #F4F4F0;
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.wpcf7-form textarea { min-height: 160px; resize: vertical; padding: 12px 14px; }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: #C6BFB8; }
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--c-primary);
	background: var(--c-white);
}

/* CF7 のラジオ・チェックボックス */
.wpcf7-form .wpcf7-radio,
.wpcf7-form .wpcf7-checkbox { display: inline-flex; flex-wrap: wrap; gap: 24px; }
.wpcf7-form .wpcf7-list-item { margin: 0; display: inline-flex; align-items: center; gap: 6px; }
.wpcf7-form .wpcf7-list-item input { accent-color: var(--c-primary); width: 18px; height: 18px; }
.wpcf7-form .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

/* 送信ボタン(CF7 の submit) */
.wpcf7-form .wpcf7-submit {
	display: block;
	width: -webkit-fit-content;
	width: fit-content;
	-webkit-appearance: none;
	appearance: none;
	min-width: 220px;
	min-height: 56px;
	margin: 8px auto 0;
	padding: 16px 32px;
	background: var(--c-primary);
	color: var(--c-white);
	border: none;
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .3em;
	text-indent: .3em;
	text-align: center;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: background .5s var(--ease), transform .5s var(--ease);
}
.wpcf7-form .wpcf7-submit:hover { background: var(--c-primary-dark, #2A621C); }
.wpcf7-form .wpcf7-submit:focus,
.wpcf7-form .wpcf7-submit:active {
	background: var(--c-primary-dark, #2A621C);
	color: var(--c-white);
	outline: 2px solid var(--c-primary);
	outline-offset: 2px;
}
.wpcf7-submit-wrap { text-align: center; margin-top: 32px; }

/* CF7 必須マーク(任意でフォーム側に入れる用) */
.wpcf7-form .cf7-required,
.wpcf7-form .cf7-optional {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 24px;
	padding: 0 10px;
	font-size: 0.6875rem;
	color: var(--c-white);
	border-radius: 3px;
	font-weight: 500;
	margin-right: 8px;
}
.wpcf7-form .cf7-required { background: var(--c-primary); }
.wpcf7-form .cf7-optional { background: #b0b0b0; }

/* バリデーション・確認メッセージ */
.wpcf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.75rem; margin-top: 4px; }
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid { border-color: #c0392b; background: #fdf2f0; }
.wpcf7 .wpcf7-response-output {
	margin: 24px auto 0;
	padding: 14px 18px;
	border-radius: var(--radius);
	font-size: 0.875rem;
	border-width: 1px;
	border-style: solid;
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--c-primary); background: #f0f6ea; color: var(--c-primary); }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { border-color: #e0b143; background: #fff8e6; color: #8a6d1a; }
.wpcf7 form.failed .wpcf7-response-output { border-color: #c0392b; background: #fdf2f0; color: #c0392b; }
.wpcf7 .wpcf7-spinner { margin: 0 8px; }

/* =============================================================
   To top button (CTAとフッターの境目に絶対配置)
   ============================================================= */
.footer-wrap {
	position: relative;
}
.to-top {
	position: absolute;
	top: 0;
	right: 40px;
	transform: translateY(-50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	color: #2A621C;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
}
.to-top:hover { transform: translateY(-50%) translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
	background: var(--c-white);
	padding: 60px 0 0;
}
.site-footer__inner {
	max-width: var(--max-w);
	margin-inline: auto;
	padding: 0 24px 40px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: start;
}
.logo--footer { align-items: flex-start; }
.site-footer__address {
	font-style: normal;
	font-size: 0.75rem;
	color: var(--c-text-light);
	line-height: 1.85;
	margin-top: 18px;
}
.site-footer__address p { margin: 0 0 2px; }
.site-footer__nav {
	display: flex;
	gap: 0;
}
.site-footer__list {
	font-size: 0.8125rem;
	padding: 0 56px;
	position: relative;
}
.site-footer__list + .site-footer__list::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 1px;
	background: #2A621C;
}
.site-footer__list li { margin-bottom: 12px; }
.site-footer__list a { color: var(--c-text); }
.site-footer__copy-band {
	background: var(--c-primary);
	padding: 14px 24px;
}
.site-footer__copy {
	text-align: center;
	font-size: 0.6875rem;
	color: var(--c-white);
	margin: 0;
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1100px) {
	.global-nav__list { gap: 18px; font-size: 0.8125rem; }
	.hero__image { width: 50%; }
	.hero__title { font-size: 2.25rem; }
	.hero__content { max-width: 700px; }
	.voice { column-gap: 24px; }
	.voice__arrow { display: none; }
	.voice-card { flex: 0 0 calc((100% - 24px) / 2); padding: 48px 40px; }
}

@media (max-width: 900px) {
	.site-header__inner { padding: 20px 16px; }
	.site-header__right { display: none; }
	.hamburger { display: flex; width: 44px; height: 44px; }
	.logo__img { height: 56px; }

	/* ドロワー: 右からスライドイン、画面の約75%幅で展開 */
	.drawer {
		inset: 96px 0 0 auto;
		width: min(78%, 320px);
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
	}
	.drawer__list { padding: 24px 20px; }
	.drawer__list a { padding: 14px 4px; font-size: 0.875rem; }

	/* ドロワー背後のオーバーレイ(タップで閉じる) */
	.drawer-overlay {
		position: fixed;
		inset: 96px 0 0 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 89;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s var(--ease), visibility .3s var(--ease);
		pointer-events: none;
	}
	.drawer-overlay.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.page-hero { padding: 36px 0 24px; }
	.page-hero__ja { font-size: 1.625rem; }

	.section { padding: 60px 0; }
	.section-header__ja { font-size: 1.5rem; }

	/* ヒーロー: モバイルでは写真の上にテキストを重ねるレイアウト */
	.hero {
		position: relative;
		overflow: hidden;
		min-height: 540px;
	}
	.hero__image {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		margin-bottom: 0;
		z-index: 1;
	}
	.hero__image::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
		z-index: 2;
		pointer-events: none;
	}
	.hero__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.hero__inner {
		position: relative;
		z-index: 3;
		padding: 80px 20px 56px;
		min-height: 540px;
		display: flex;
		align-items: flex-end;
	}
	.hero__content {
		max-width: 100%;
		padding-top: 0;
		color: var(--c-white);
	}
	.hero__title {
		font-size: 1.5rem;
		color: var(--c-white);
		text-shadow: 0 2px 8px rgba(0,0,0,0.45);
	}
	.hero__title-em { color: var(--c-white); text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
	.hero__lead {
		color: var(--c-white);
		text-shadow: 0 1px 4px rgba(0,0,0,0.45);
	}
	.hero__buttons .btn { min-width: 0; flex: 1; }

	.hero-features__inner { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 20px 16px; }
	.hero-features__item { border-right: none; padding: 8px 8px; }
	.hero-features__item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .25); }
	.hero-features__title { font-size: 1.125rem; }

	.why-us__grid { grid-template-columns: 1fr; gap: 32px; }
	.service-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.works-feature { grid-template-columns: 1fr; }
	.support-item { grid-template-columns: 1fr; gap: 12px; padding: 18px 22px; }
	.voice { column-gap: 4px; }
	.voice__slider {
		gap: 12px;
		padding: 4px 14% 16px;
	}
	.voice-card {
		flex: 0 0 72%;
		padding: 32px 24px;
	}
	.service-area__grid { grid-template-columns: 1fr; gap: 24px; }

	.cta-section { padding: 60px 0; }
	.cta-section__box { padding: 32px 24px; }
	.cta-section__title { font-size: 1.375rem; }
	.cta-section__buttons { flex-direction: column; }
	.cta-section__buttons .btn { width: 100%; min-width: 0; }

	.flow { padding: 60px 0 70px; }
	.flow__list { padding: 36px 24px; }
	.flow__item { max-width: none; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; }
	.flow__num { width: 44px; height: 44px; font-size: 0.8125rem; }
	.flow__item:not(:last-child) .flow__num::after { height: 36px; }
	.flow__title-sub { font-size: 0.9375rem; }

	.works-archive { grid-template-columns: 1fr; gap: 56px; padding-bottom: 60px; }
	.works-grid { grid-template-columns: 1fr; gap: 24px; }

	.before-after { grid-template-columns: 1fr; }
	.before-after__arrow { transform: rotate(90deg); margin: 0 auto; }
	.process-grid { grid-template-columns: 1fr; }

	.company-message__grid { grid-template-columns: 1fr; gap: 32px; }
	.company-message__photo { aspect-ratio: 4 / 3; min-height: 0; }
	.company-message__title { font-size: 1.5rem; }
	.promise-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; }
	.company-info__table th { width: 100px; padding: 14px 12px; font-size: 0.75rem; }
	.company-info__table td { padding: 14px 12px; font-size: 0.78125rem; }

	.service-list { gap: 60px; }
	.service-block { grid-template-columns: 1fr; gap: 20px; padding-bottom: 60px; scroll-margin-top: 112px; }
	.service-list .service-block:nth-child(even) .service-block__image { order: 0; }
	.btn--primary { width: 100%; }
	.audience { padding: 0 16px; }
	.audience__grid { grid-template-columns: 1fr; gap: 24px; }
	.audience__card { padding: 48px 32px; }
	.audience__name { margin-bottom: 32px; }
	.audience__text { margin-bottom: 32px; }

	.form-row { grid-template-columns: 1fr; gap: 8px; padding: 12px 0; }
	.form-row__required, .form-row__optional { margin-top: 0; justify-self: start; }
	.form-row .cf7-required, .form-row .cf7-optional { justify-self: start; }
	.form-row__label { padding-top: 0; }
	.wpcf7-form .form-row .wpcf7-radio,
	.wpcf7-form .form-row .wpcf7-checkbox { padding-top: 0; }
	.contact-channel { flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
	.contact-channel__head, .contact-channel__body { width: 100%; text-align: center; }
	.contact-channel__tel, .contact-channel__hours { text-align: center; }

	.site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.site-footer__nav { flex-wrap: nowrap; gap: 0; justify-content: flex-start; }
	.site-footer__list { padding: 0 22px; }
	.site-footer__list:first-child { padding-left: 0; }
	.company-info__map { aspect-ratio: 4 / 3; }
	.site-footer__list { padding: 0; }
	.site-footer__list + .site-footer__list::before { display: none; }

	.to-top { right: 16px; width: 48px; height: 48px; }
}
/* ============================================================
 * 代表メッセージ: 写真を一旦非表示・文章のみの構成
 * ------------------------------------------------------------
 * 再度写真を表示する場合は、以下のブロック(=== の間)を
 * すべて削除すれば元の2カラムレイアウトに戻ります。
 * page-company.php 側の HTML はそのまま残しています。
 * ============================================================ */
.company-message__grid {
	grid-template-columns: minmax(0, 880px);
	justify-content: center;
	gap: 0;
}
.company-message__photo { display: none; }
/* === ここまで: 写真非表示の上書きブロック === */