/* =========================================================
   Inudou theme — main styles
   Palette: green #2F7D4A / yellow #F2B840 / bg #FAF7F0 / ink #2C302A
   Type: BIZ UDPGothic (headings + body)
   ========================================================= */

:root {
	--navy: #2F7D4A;       /* 緑色（変数名は--navyのまま） */
	--navy-700: #234A2C;   /* ダークグリーン */
	--gold: #F2B840;       /* イエロー */
	--gold-600: #D49A3B;   /* ゴールド600 */
	--bg: #FAF7F0;         /* 生成り bg */
	--surface: #ffffff;
	--ink: #2C302A;        /* インク色 */
	--muted: #5A6255;      /* ミュート */
	--line: #D9E0D4;       /* ライン色 */
	--line-tw: 1px;
	--serif: "Shippori Mincho", "Noto Serif JP", serif;
	--sans: "BIZ UDPGothic", "Noto Sans JP", system-ui, sans-serif;
	--wrap: 1180px;
	--wrap-narrow: 760px;
	--gap: clamp(1.5rem, 4vw, 3rem);
	--shadow: 0 10px 30px -15px rgba(35, 74, 44, 0.15);
	--radius: 10px; /* 柔らかく見やすい統一感のある角丸に設定 */
	--mobile-bar-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h, 76px);
}

body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.95;
	font-size: 16px;
	letter-spacing: 0.03em;
	-webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3 { font-family: var(--sans); line-height: 1.45; font-weight: 700; }

.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 {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--navy); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0; }

/* 圏点（kenten）用のスタイル */
.kenten {
	text-emphasis: filled dot;
	text-emphasis-position: over;
	-webkit-text-emphasis: filled dot;
	-webkit-text-emphasis-position: over;
}

/* 実績バッジ（一級建築士×40年）用スタイル */
.badge-container {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}
.badge-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 2px;
	letter-spacing: 0.12em;
	background: rgba(255, 255, 255, 0.08);
}
.badge-item--navy {
	background: var(--navy-700);
	color: #fff;
	border: 1px solid var(--navy-700);
}
.badge-item--gold {
	background: var(--gold);
	color: var(--navy-700);
	border: 1px solid var(--gold-600);
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.4em; font-family: var(--sans); font-weight: 700;
	padding: 0.85em 1.8em; border-radius: var(--radius); text-decoration: none;
	line-height: 1.2; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
	border: 2px solid transparent; cursor: pointer; font-size: 0.95rem;
	letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #2C302A; box-shadow: 0 8px 20px -10px rgba(242,184,64,.8); }
.btn--gold:hover { background: var(--gold-600); }
.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--lg { font-size: 1.05rem; padding: 1em 2.2em; }
.btn--block { display: flex; width: 100%; }
.btn__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px; border-radius: 50%;
	background: #2c302a; color: #f2b840; font-size: 11px; margin-left: 4px;
}

.section-heading {
	font-size: clamp(1.5rem, 3.4vw, 2.1rem);
	text-align: center; margin: 0 0 2.4rem;
	color: var(--navy); position: relative;
}
.section-heading::after {
	content: ""; display: block; width: 40px; height: 3px;
	background: var(--gold); margin: 0.9rem auto 0;
	border-radius: 2px;
}
.section-heading--light { color: #fff; }
.section-heading--light::after { background: var(--gold); }

/* ---------- header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.96);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: var(--line-tw) solid var(--line);
	box-shadow: 0 4px 24px -12px rgba(35,74,44,.08);
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}
.site-header__inner {
	max-width: var(--wrap); margin: 0 auto;
	padding: 1.2rem clamp(1rem, 4vw, 2rem);
	display: flex; align-items: center; gap: 1rem;
	transition: padding .25s ease;
}
.site-header.is-scrolled .site-header__inner {
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}
.site-header__brand { flex: none; }
.site-header__name {
	display: flex; flex-direction: row; align-items: center; gap: 10px;
	text-decoration: none; line-height: 1.15;
	transition: opacity .2s ease;
}
.site-header__name:hover { opacity: .88; }
.site-header__logo { width: 32px; height: 32px; flex: none; color: var(--navy); transition: color .3s ease; }
.site-header__name-text { display: flex; flex-direction: column; }
.site-header__name-main {
	font-family: var(--sans); font-weight: 900; font-size: 1.1rem;
	color: var(--navy-700); letter-spacing: 0.04em; white-space: nowrap;
	transition: color .3s ease;
}
.site-header__name-sub {
	font-size: 0.6rem; color: var(--muted); letter-spacing: .18em;
	margin-top: 2px; font-weight: 700; white-space: nowrap;
	transition: color .3s ease;
}
.site-header__nav { margin-left: auto; }
.global-nav {
	list-style: none; display: flex; flex-wrap: nowrap;
	gap: 1.4rem; margin: 0; padding: 0;
}
.global-nav a {
	position: relative; display: inline-block;
	text-decoration: none; font-size: 0.9rem; color: var(--ink);
	font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
	padding-bottom: 4px;
	transition: color .2s ease;
}
.global-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 100%; height: 2px; background: var(--gold);
	transform: scaleX(0); transform-origin: left center;
	transition: transform .22s ease;
}
.global-nav a:hover,
.global-nav a:focus-visible { color: var(--navy); }
.global-nav a:hover::after,
.global-nav a:focus-visible::after { transform: scaleX(1); }
.global-nav .current-menu-item > a { color: var(--navy); }
.global-nav .current-menu-item > a::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: 0.65rem; flex: none; }
.site-header__cta .btn { white-space: nowrap; font-size: 0.82rem; padding: 0.65em 1.1em; }
.site-header__cta-btn { box-shadow: 0 6px 16px -8px rgba(242,184,64,.9); }
.site-header__cta .btn:focus-visible,
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* 下層ページ：常時ソリッド */
body:not(.is-front) .site-header {
	background: rgba(255,255,255,.96);
	border-bottom: var(--line-tw) solid var(--line);
	box-shadow: 0 4px 24px -12px rgba(35,74,44,.12);
}

/* トップページ：ヒーロー上は透明（緑背景が背面に見える） */
body.is-front .site-header:not(.is-scrolled) {
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
body.is-front .site-header:not(.is-scrolled) .site-header__inner,
body.is-front .site-header:not(.is-scrolled) .site-header__brand,
body.is-front .site-header:not(.is-scrolled) .site-header__nav,
body.is-front .site-header:not(.is-scrolled) .site-header__cta {
	background: transparent;
}
body.is-front .site-header:not(.is-scrolled) .site-header__logo { color: #fff; }
body.is-front .site-header:not(.is-scrolled) .site-header__name-main { color: #fff; }
body.is-front .site-header:not(.is-scrolled) .site-header__name-sub { color: rgba(255,255,255,.72); }
body.is-front .site-header:not(.is-scrolled) .global-nav a { color: rgba(255,255,255,.92); }
body.is-front .site-header:not(.is-scrolled) .global-nav a:hover,
body.is-front .site-header:not(.is-scrolled) .global-nav a:focus-visible,
body.is-front .site-header:not(.is-scrolled) .global-nav .current-menu-item > a { color: #fff; }

/* トップスクロール後 */
body.is-front .site-header.is-scrolled {
	background: rgba(255,255,255,.96);
	border-bottom: var(--line-tw) solid var(--line);
	box-shadow: 0 4px 24px -12px rgba(35,74,44,.12);
	backdrop-filter: saturate(140%) blur(10px);
}

.nav-toggle { display: none; }

/* mobile menu (hidden on desktop) */
.mobile-menu { display: none; }

/* ---------- hero（フルブリード自動製図） ---------- */
.hero {
	color: #fff;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--header-h, 76px));
	min-height: calc(100svh - var(--header-h, 76px));
	background:
		radial-gradient(120% 90% at 78% 8%, rgba(242,184,64,.16), transparent 55%),
		linear-gradient(155deg, #2F7D4A 0%, #265F3A 48%, #1d3f29 100%);
}
/* トップ：ヒーローをヘッダー背面まで伸ばし、白文字ヘッダーが緑背景の上に載る */
body.is-front .hero {
	margin-top: calc(-1 * var(--site-header-h, 76px));
	min-height: 100vh;
	min-height: 100svh;
}
body.is-front .hero__inner {
	padding-top: calc(var(--site-header-h, 76px) + clamp(1rem, 3vw, 2rem));
}
.hero__canvas {
	position: absolute; inset: 0; z-index: 1;
}
.hero__canvas .blueprint {
	width: 100%; height: 100%; display: block;
}
.hero::after {
	content: "";
	position: absolute; inset: 0; z-index: 2; pointer-events: none;
	background: linear-gradient(95deg,
		rgba(29,63,41,.92) 2%,
		rgba(35,74,44,.80) 28%,
		rgba(35,74,44,.30) 52%,
		rgba(35,74,44,0) 70%);
}
.hero__inner {
	position: relative; z-index: 3;
	width: 100%;
	max-width: var(--wrap); margin: 0 auto;
	padding: clamp(1rem, 3vw, 2rem) clamp(1.2rem, 5vw, 2rem);
}
.hero__content {
	position: relative;
	z-index: 3;
	max-width: 38rem;
}
.hero__eyebrow {
	font-size: 0.85rem; letter-spacing: .2em; color: rgba(255,255,255,.9);
	margin: 0 0 0.8rem; font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
}
.hero__eyebrow::before {
	content: "";
	width: 30px;
	height: 1px;
	background: rgba(255,255,255,0.7);
}
.hero__title {
	font-size: clamp(1.9rem, 5vw, 3.2rem); margin: 0 0 1.1rem;
	letter-spacing: 0.03em;
	line-height: 1.4;
	font-family: var(--sans);
	font-weight: 700;
}
.hero__title-accent {
	color: #fff;
	font-family: inherit;
}
.hero__note { color: rgba(255,255,255,.88); font-size: 0.92rem; margin: 0 0 1.5rem; max-width: 440px; line-height: 1.85; }
.hero__note--short { display: none; }
.hero__actions {
	display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
	margin-bottom: 1.3rem;
}
.hero__cta-primary,
.hero__cta-secondary {
	flex: none;
	white-space: nowrap;
}
.hero__tel { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; margin: 0; }
.hero__tel a { color: #fff; text-decoration: none; font-family: var(--sans); font-weight: 700; font-size: 1.4rem; line-height: 1.2; }
.hero__tel span { color: rgba(255,255,255,.7); font-size: 0.82rem; line-height: 1.5; }

.bp-layer { will-change: transform; }

/* ---------- generic section spacing ---------- */
.pillars, .reasons, .services-overview, .fee-teaser,
.latest-posts, .profile-teaser, .pains, .column-showcase,
.visual-strip {
	max-width: var(--wrap); margin: 0 auto;
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 2rem);
}

/* visual-strip（現場写真） */
.visual-strip__inner { max-width: var(--wrap); margin: 0 auto; }
.visual-strip__lead {
	text-align: center;
	color: var(--muted);
	max-width: 40rem;
	margin: -0.5rem auto 2.2rem;
	font-size: 0.98rem;
	line-height: 1.8;
}
.visual-strip__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
.visual-strip__item figure {
	margin: 0;
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.visual-strip__item img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
}
.visual-strip__item figcaption {
	padding: 0.85rem 1rem 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--navy-700);
	text-align: center;
	letter-spacing: 0.04em;
}

/* pillars */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
	background: var(--surface); border: var(--line-tw) solid var(--line);
	border-radius: var(--radius); padding: 2.2rem 1.8rem; text-align: center;
	box-shadow: var(--shadow);
}
.pillar__label { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; color: var(--navy-700); margin: 0 0 .8rem; }
.pillar__desc { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* pains (navy band) */
.pains { max-width: none; background: var(--navy-700); }
.pains__inner { max-width: var(--wrap-narrow); margin: 0 auto; }
.pains__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .9rem; }
.pains__list li {
	background: rgba(255,255,255,.05); color: #fff; padding: 1.1rem 1.4rem 1.1rem 3.2rem;
	border-radius: var(--radius); position: relative; font-size: 1rem;
	border-left: 3px solid var(--gold);
}
.pains__list li::before {
	content: "✓"; position: absolute; left: 1.2rem; color: var(--gold); font-weight: 700;
}
.pains__bridge { text-align: center; color: var(--gold); font-family: var(--sans); font-size: 1.15rem; margin: 0; }

/* documents list */
.docs-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: grid;
	gap: 1.2rem;
	counter-reset: docs;
}
.docs-list > li {
	counter-increment: docs;
	position: relative;
	padding: 1.4rem 1.4rem 1.4rem 4rem;
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.docs-list > li::before {
	content: counter(docs, decimal-leading-zero);
	position: absolute;
	left: 1.1rem;
	top: 1.3rem;
	font-family: var(--sans);
	font-weight: 700;
	color: var(--gold-600);
	font-size: 1.1rem;
}
.docs-list > li p {
	margin: 0.45rem 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

/* reasons */
.reasons__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.reason {
	display: grid;
	grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
	gap: 1.6rem;
	align-items: center;
	background: var(--surface); border: var(--line-tw) solid var(--line);
	border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
/* reverse: テキスト左(62%) / 写真右(38%) — orderだと列幅まで入れ替わるので direction で左右だけ反転 */
.reason--reverse {
	direction: rtl;
}
.reason--reverse > * {
	direction: ltr;
}
.reason__media {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	align-self: center;
}
.reason__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.reason__content {
	display: flex;
	gap: 1.6rem;
	align-items: flex-start;
}
.reason__num { font-family: var(--sans); font-size: 2.2rem; font-weight: 700; color: var(--gold-600); line-height: 1; flex: none; }
.reason__title { margin: 0 0 .6rem; font-size: 1.2rem; color: var(--navy-700); font-family: var(--sans); }
.reason__body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* services */
.services-overview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
	position: relative;
	display: flex; flex-direction: column; text-decoration: none;
	background: var(--surface); border: var(--line-tw) solid var(--line);
	border-radius: var(--radius); padding: 2.2rem 2rem 2rem; transition: transform .2s ease, box-shadow .2s ease;
	color: var(--ink);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--navy); }
.service-card--main { border-color: var(--navy); border-width: 2px; }
.service-card__tag {
	position: absolute;
	top: 0.8rem;
	right: 1rem;
	background: var(--navy); color: #fff;
	font-size: 0.7rem; padding: .25em .8em; border-radius: var(--radius); font-weight: 700;
}
.service-card__title { margin: 0 0 .6rem; font-size: 1.2rem; color: var(--navy-700); font-family: var(--sans); }
.service-card__desc { margin: 0 0 1.4rem; color: var(--muted); font-size: 0.92rem; flex: 1; }
.service-card__more { color: var(--gold-600); font-weight: 700; font-size: 0.9rem; }

/* fee teaser */
.fee-teaser__card {
	max-width: var(--wrap-narrow); margin: 0 auto; text-align: center;
	background: var(--surface); border: var(--line-tw) solid var(--line);
	border-radius: var(--radius); padding: 3rem 2rem; box-shadow: var(--shadow);
}
.fee-teaser__label { font-weight: 700; color: var(--navy-700); margin: 0 0 .8rem; }
.fee-teaser__price { font-size: 1.1rem; margin: 0 0 .6rem; }
.fee-teaser__price strong { font-family: var(--sans); font-size: 2.1rem; color: var(--navy-700); }
.fee-teaser__price span { color: var(--muted); font-size: 0.92rem; display: block; }
.fee-teaser__note { color: var(--muted); font-size: 0.82rem; margin: 0 0 1.8rem; }

/* ---------- column showcase (コラム) ---------- */
.column-showcase {
	max-width: none;
	padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 2rem);
	background:
		radial-gradient(120% 130% at 88% -15%, rgba(242,184,64,.14) 0%, rgba(242,184,64,0) 46%),
		linear-gradient(165deg, #163821 0%, #21492c 52%, #2c5e3a 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.column-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 46px 46px;
	pointer-events: none;
	mask-image: radial-gradient(130% 95% at 50% 0%, #000 28%, transparent 82%);
}
.column-showcase__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wrap);
	margin: 0 auto;
}
.column-showcase__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.2rem 2rem;
	margin-bottom: clamp(1.7rem, 3.2vw, 2.5rem);
	flex-wrap: wrap;
}
.column-showcase__intro {
	max-width: 46rem;
}
.column-showcase__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	margin: 0 0 .65rem;
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}
.column-showcase__eyebrow::before {
	content: "";
	width: 1.7rem;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}
.column-showcase__title {
	margin: 0 0 .6rem;
	font-family: var(--sans);
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	letter-spacing: .02em;
}
.column-showcase__title::after { display: none; }
.column-showcase__lead {
	margin: 0;
	max-width: 44em;
	font-size: clamp(.85rem, 1.4vw, .95rem);
	line-height: 1.72;
	color: rgba(238,245,239,.82);
}
.column-showcase__all {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .72rem 1.45rem;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 999px;
	font-family: var(--sans);
	font-weight: 700;
	font-size: .85rem;
	color: #fff;
	text-decoration: none;
	background: rgba(255,255,255,.07);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.column-showcase__all svg {
	width: .9rem;
	height: .9rem;
	transition: transform .2s ease;
}
.column-showcase__all:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-700);
}
.column-showcase__all:hover svg { transform: translateX(3px); }

.column-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}
.column-card { min-width: 0; }
.column-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: var(--ink);
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 18px 40px -22px rgba(0,0,0,.6);
	transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
}
.column-card__link:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 52px -20px rgba(0,0,0,.62);
}
.column-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--navy-700);
}
.column-card__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .4s ease;
}
.column-card__link:hover .column-card__img { transform: scale(1.06); }
.column-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.column-card__placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
	background-size: 22px 22px;
}
.column-card__placeholder svg {
	position: relative;
	z-index: 1;
	width: 32%;
	max-width: 78px;
	height: auto;
	color: rgba(255,255,255,.55);
}
.column-card__placeholder--1 { background: linear-gradient(140deg, #2c5439, #1b3625); }
.column-card__placeholder--2 { background: linear-gradient(140deg, #41512b, #28331b); }
.column-card__placeholder--3 { background: linear-gradient(140deg, #2a4252, #1b2d38); }
.column-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.15rem 1.25rem 1.3rem;
}
.column-card__meta {
	display: flex;
	align-items: center;
	gap: .6rem;
	margin-bottom: .7rem;
}
.column-card__chip {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--navy-700);
	background: rgba(47,125,74,.12);
	padding: .3em .75em;
	border-radius: 999px;
}
.column-card__date {
	font-size: .74rem;
	color: var(--muted);
	letter-spacing: .03em;
}
.column-card__title {
	margin: 0 0 .55rem;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.5;
	color: var(--navy-700);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.column-card__excerpt {
	margin: 0 0 1.05rem;
	font-size: .84rem;
	line-height: 1.75;
	color: var(--muted);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	flex: 1;
}
.column-card__more {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin-top: auto;
	font-size: .82rem;
	font-weight: 700;
	color: var(--gold-600);
}
.column-card__more svg {
	width: .85rem;
	height: .85rem;
	transition: transform .2s ease;
}
.column-card__link:hover .column-card__more svg { transform: translateX(3px); }
.column-showcase__empty {
	text-align: center;
	color: rgba(255,255,255,.75);
	margin: 0;
}

/* posts (archive 等) */
.latest-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card {
	display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
	background: var(--surface); border: var(--line-tw) solid var(--line);
	border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card__date { font-size: 0.78rem; color: var(--muted); padding: 1.2rem 1.4rem 0; }
.post-card__title { font-family: var(--sans); font-weight: 700; color: var(--navy-700); padding: .4rem 1.4rem 1.4rem; line-height: 1.5; font-size: 1.05rem; }
.post-card__excerpt { padding: 0 1.4rem 1.4rem; color: var(--muted); font-size: 0.86rem; }
.latest-posts__empty { text-align: center; color: var(--muted); grid-column: 1 / -1; }

/* profile teaser */
.profile-teaser__inner {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 3rem;
	align-items: center;
	padding: clamp(2rem, 5vw, 3.5rem);
	background: var(--surface);
	box-shadow: var(--shadow);
}
.profile-teaser__photo, .profile__photo {
	aspect-ratio: 3/4;
	background: var(--navy-700);
	border-radius: var(--radius);
	border: 2px solid var(--navy-700);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
.profile-teaser__photo-placeholder {
	text-align: center;
	padding: 20px;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.6;
	z-index: 2;
	position: relative;
}
.profile-teaser__photo img,
.profile__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.profile-teaser__photo-icon {
	display: block;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.profile-teaser__photo-title {
	font-weight: 900;
	color: var(--gold);
	letter-spacing: 0.05em;
	font-size: 1.05rem;
}
.profile-teaser__photo-note {
	opacity: 0.85;
	font-size: 0.78rem;
	display: block;
	margin-top: 6px;
}
.profile-teaser .section-heading {
	text-align: left;
	margin-bottom: 1.5rem;
}
.profile-teaser .section-heading::after {
	margin-left: 0;
}
.profile-teaser__name {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--navy-700);
	margin: 0 0 0.4rem;
}
.profile-teaser__role {
	color: var(--gold-600);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1.5rem;
	letter-spacing: 0.1em;
}
.profile-teaser__lead {
	color: var(--muted);
	line-height: 2;
	margin-bottom: 2rem;
}
.profile-teaser__btn {
	border-radius: var(--radius);
	border-color: var(--navy);
	color: var(--navy);
	font-weight: 700;
}
.profile-teaser__btn-arrow {
	margin-left: 4px;
}

/* ---------- page templates ---------- */
.page-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background-color: var(--navy-700);
	background-image: url('../images/hero-general.webp');
	background-size: cover;
	background-position: center;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(35, 74, 44, 0.82);
	pointer-events: none;
}
.page-hero--about {
	background-image: url('../images/hero-about.webp');
}
.page-hero--fee {
	background-image: url('../images/hero-fee.webp');
}
.page-hero--faq {
	background-image: url('../images/hero-faq.webp');
}
.page-hero--blog {
	background-image: url('../images/hero-blog.webp');
}
.page-hero--service {
	background-image: url('../images/hero-service.webp');
}
.page-hero--single {
	background-image: url('../images/hero-article.webp');
}
.single__meta {
	margin: 0 0 .8rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0.04em;
}
.single__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}
.single__cat {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.45em 0.95em;
	border-radius: var(--radius);
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	line-height: 1.2;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.single__cat:hover,
.single__cat:focus-visible {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-700);
	transform: translateY(-1px);
}
.single__cat-icon {
	flex: none;
	opacity: 0.9;
}
.page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wrap); margin: 0 auto;
	padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 2rem);
}
.page-hero__eyebrow { color: var(--gold); font-weight: 700; letter-spacing: .14em; font-size: 0.8rem; margin: 0 0 .8rem; }
.page-hero__title { font-size: clamp(1.7rem, 4.6vw, 2.8rem); margin: 0 0 .8rem; }
.page-hero__lead { color: rgba(255,255,255,.82); margin: 0; max-width: 46ch; }

.page-body {
	max-width: var(--wrap); margin: 0 auto;
	padding: clamp(2.6rem, 7vw, 4.5rem) clamp(1.2rem, 5vw, 2rem);
}
.page--legal .page-body { max-width: var(--wrap-narrow); }

/* ---------- sitemap ---------- */
.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.4rem, 4vw, 2.2rem);
	max-width: var(--wrap);
	margin: 0 auto;
}
.sitemap-group {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem 1.4rem 1.6rem;
}
.sitemap-group__title {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	color: var(--navy);
	padding-left: 0.75rem;
	border-left: 4px solid var(--gold);
}
.sitemap-group__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}
.sitemap-group__list a {
	text-decoration: none;
	font-weight: 700;
	color: var(--ink);
}
.sitemap-group__list a:hover,
.sitemap-group__list a:focus-visible {
	color: var(--navy);
	text-decoration: underline;
}
@media (max-width: 900px) {
	.sitemap-grid { grid-template-columns: 1fr; }
}

.prose { margin: 0 auto 2.6rem; }
.prose h2 {
	font-size: 1.5rem; color: var(--navy); margin: 2.4rem 0 1rem;
	padding-left: .9rem; border-left: 4px solid var(--gold);
}
.prose h3 { font-size: 1.15rem; color: var(--navy); margin: 1.6rem 0 .6rem; }
.prose p { margin: 0 0 1.1rem; }
.prose__note { color: var(--muted); font-size: 0.86rem; }
.prose a { color: var(--gold-600); }
.prose a.btn { color: inherit; }
.prose a.btn--outline { color: var(--navy); }
.prose a.btn--outline:hover { color: #fff; }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.case-card { background: var(--surface); border: var(--line-tw) solid var(--line); border-radius: 12px; padding: 1.4rem; }
.case-card h3 { margin: 0 0 .5rem; }
.case-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.flow-steps { list-style: none; padding: 0; margin: 2rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.flow-steps li {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	position: relative;
}
.flow-steps__num {
	width: 2.2rem; height: 2.2rem; border-radius: 50%;
	background: var(--navy-700); color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--sans); font-weight: 700; font-size: 1.1rem;
	border: 1px solid var(--gold);
}
.flow-steps li strong { font-size: 1.05rem; color: var(--navy-700); display: block; margin-top: 0.2rem; }
.flow-steps li p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.req-list {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}
.req-list__item {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}
.req-list dt {
	font-weight: 700;
	color: var(--navy-700);
	font-size: 1.1rem;
	margin: 0 0 0.6rem;
	display: flex;
	align-items: center;
	gap: 8px;
}
.req-list dt::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 18px;
	background: var(--gold);
}
.req-list dd {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.8;
}

.fee-table, .info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0 2rem;
	background: var(--surface);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	overflow: hidden;
	border: var(--line-tw) solid var(--line);
}
.fee-table th, .fee-table td, .info-table th, .info-table td {
	border: var(--line-tw) solid var(--line);
	padding: 1rem 1.2rem;
	text-align: left;
	font-size: 0.92rem;
}
.fee-table thead th {
	background: var(--navy-700);
	color: #fff;
	font-weight: 700;
	border-bottom: 2px solid var(--gold);
}
.fee-table tbody tr:nth-child(even) {
	background: rgba(247, 242, 233, 0.3);
}
.info-table th {
	background: rgba(247, 242, 233, 0.6);
	width: 30%;
	white-space: nowrap;
	font-weight: 700;
	color: var(--navy-700);
}

.plain-list { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.plain-list li { margin-bottom: .5rem; }

/* about page */
.profile { display: grid; grid-template-columns: 320px 1fr; gap: 2.6rem; align-items: start; }
.profile__name { font-family: var(--sans); font-weight: 700; font-size: 1.6rem; color: var(--navy); margin: 0; }
.profile__role { color: var(--gold-600); font-weight: 700; margin: .2rem 0 1.6rem; }
.profile__quote {
	margin: 1.4rem 0 1.8rem;
	padding: 1.2rem 1.3rem 1.2rem 1.25rem;
	border-left: 4px solid var(--gold);
	background: var(--surface);
	border-radius: 0 var(--radius) var(--radius) 0;
	box-shadow: var(--shadow);
}
.profile__quote p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.85;
	color: var(--navy-700);
	font-weight: 600;
}
.office-services__label {
	margin: 0 0 .35rem;
	font-weight: 700;
	font-size: .9rem;
	color: var(--navy-700);
}
.office-services__label + .office-services__list { margin-top: 0; }
.office-services__list { margin-bottom: .9rem; }
.office-services__list:last-of-type { margin-bottom: .4rem; }

.about-why,
.about-office {
	margin-top: 3.2rem;
}
.about-why .section-heading,
.about-office .section-heading {
	margin-bottom: 1.6rem;
}
.about-office__panel {
	width: 100%;
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.5rem 1.4rem;
	box-shadow: var(--shadow);
}
.about-office__panel .info-table {
	margin: 0;
}
.about-office__panel .prose__note a {
	color: var(--gold-600);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: var(--wrap-narrow); margin: 0 auto; display: grid; gap: 1rem; }
.faq-item {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}
.faq-item:hover {
	box-shadow: var(--shadow);
}
.faq-item[open] {
	border-color: var(--gold);
}
.faq-item__q {
	cursor: pointer;
	list-style: none;
	padding: 1.2rem 3rem 1.2rem 3rem;
	font-weight: 700;
	color: var(--navy-700);
	position: relative;
	transition: background-color 0.2s ease;
}
.faq-item__q:hover {
	background-color: rgba(247, 242, 233, 0.4);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::before {
	content: "Q";
	position: absolute;
	left: 1.2rem;
	color: var(--gold);
	font-family: var(--sans);
	font-weight: 900;
	font-size: 1.2rem;
}
.faq-item__q::after {
	content: "＋";
	position: absolute;
	right: 1.2rem;
	color: var(--muted);
	font-weight: 700;
	transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__q::after {
	transform: rotate(45deg);
	color: var(--gold);
}
.faq-item__a {
	padding: 0 1.5rem 1.5rem 3rem;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.8;
	background: rgba(247, 242, 233, 0.15);
}
.faq-item__a p { margin: 0; }

/* ---------- news ---------- */
.site-news {
	background: #fff;
	border-block: var(--line-tw) solid var(--line);
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 2rem);
}
.site-news__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(140px, 220px) 1fr;
	gap: 2rem;
	align-items: start;
}
.site-news .section-heading,
.site-news__title {
	font-family: var(--sans);
	font-size: clamp(1.5rem, 3.4vw, 2.1rem);
	font-weight: 700;
	text-align: left;
	margin: 0 0 .35rem;
	color: var(--navy-700);
	line-height: 1.45;
}
.site-news .section-heading::after { display: none; }
.site-news__sub {
	display: block;
	font-size: .65rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: .35rem;
}
.site-news__more { margin: 1rem 0 0; text-align: right; }
.site-news__more a { color: var(--navy-700); font-weight: 700; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list__item { border-bottom: 1px solid var(--line); }
.news-list__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem 1.5rem;
	padding: .85rem .5rem;
	text-decoration: none;
	color: var(--text);
	transition: background .15s;
}
.news-list__link:hover { background: rgba(247, 242, 233, .5); }
.news-list__meta {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-shrink: 0;
}
.news-list__meta time { font-family: var(--sans); font-size: .85rem; color: var(--muted); }
.news-list__badge {
	font-size: .65rem;
	font-weight: 700;
	padding: .2em .55em;
	border-radius: 2px;
	background: var(--line);
	color: var(--navy-700);
}
a.news-list__badge--link {
	text-decoration: none;
}
a.news-list__badge--link:hover {
	background: rgba(47, 125, 74, .15);
}
.news-list__title { flex: 1; font-size: .95rem; line-height: 1.5; font-family: var(--sans); }
.news-list--compact .news-list__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.tax-filter {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 0 0 1.5rem;
}
.tax-filter__chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .4rem .85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	font-size: .82rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.3;
	transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.tax-filter__chip:hover {
	border-color: var(--navy);
	color: var(--navy-700);
}
.tax-filter__chip.is-active {
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}
.tax-filter__count {
	font-size: .72rem;
	font-weight: 700;
	opacity: .75;
}
.tax-filter__chip.is-active .tax-filter__count {
	opacity: .9;
}
.page-hero__eyebrow {
	margin: 0 0 .35rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--muted);
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.4rem; align-items: start; }
.contact-panel {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 2.5rem 2.5rem;
	box-shadow: var(--shadow);
}
.contact-panel--complete { text-align: center; }
.contact-form {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}
.form-row { display: flex; flex-direction: column; gap: 0.5rem; margin: 0 0 1.5rem; }
.form-row label { font-weight: 700; font-size: 0.95rem; color: var(--navy-700); }
.form-row input, .form-row textarea, .form-row select {
	font: inherit;
	padding: 0.8rem 1rem;
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input[type="radio"],
.form-row input[type="checkbox"] {
	width: auto;
	padding: 0;
	flex: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.req { background: var(--gold); color: #fff; font-size: .65rem; padding: .15em .6em; border-radius: 2px; margin-left: .4em; }
.opt { background: var(--line); color: var(--muted); font-size: .65rem; padding: .15em .6em; border-radius: 2px; margin-left: .4em; }
.form-note { color: var(--muted); font-size: 0.8rem; margin-top: 1rem; }
.form-row--hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-row legend { font-weight: 700; font-size: 0.95rem; color: var(--navy-700); margin-bottom: .5rem; }
.form-radio {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin-right: 1.25rem;
	font-size: .95rem;
	white-space: nowrap;
	font-weight: 500;
	color: var(--ink);
}
.contact-form__errors {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	color: #991b1b;
}
.contact-form__errors ul { margin: 0; padding-left: 1.2rem; }
.contact-form__success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius);
	padding: 2rem;
}
.contact-panel--complete .contact-form__success { margin-top: .5rem; }
.contact-form__success-title { font-size: 1.2rem; font-weight: 700; color: var(--navy-700); margin: 0 0 .75rem; }
.contact-form__success-tel a { font-size: 1.5rem; font-weight: 700; color: var(--navy-700); text-decoration: none; }

.contact-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0 0 1.75rem;
	border-bottom: var(--line-tw) solid var(--line);
}
.contact-steps__item {
	flex: 1;
	max-width: 9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .45rem;
	position: relative;
	text-align: center;
}
.contact-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 1rem;
	left: calc(50% + 1.1rem);
	width: calc(100% - 2.2rem);
	height: 2px;
	background: var(--line);
	z-index: 0;
}
.contact-steps__item.is-done:not(:last-child)::after { background: var(--gold); }
.contact-steps__num {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .82rem;
	font-weight: 700;
	background: var(--bg);
	border: 2px solid var(--line);
	color: var(--muted);
	position: relative;
	z-index: 1;
}
.contact-steps__item.is-current .contact-steps__num {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}
.contact-steps__item.is-done .contact-steps__num {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-700);
}
.contact-steps__label {
	font-size: .78rem;
	font-weight: 700;
	color: var(--muted);
	line-height: 1.3;
}
.contact-steps__item.is-current .contact-steps__label { color: var(--navy-700); }
.contact-steps__item.is-done .contact-steps__label { color: var(--navy); }

.contact-confirm {
	margin-bottom: 1.5rem;
}
.contact-confirm__lead {
	margin: 0 0 1.25rem;
	color: var(--muted);
	font-size: .92rem;
}
.contact-confirm__list {
	margin: 0;
	padding: 0;
}
.contact-confirm__row {
	display: grid;
	grid-template-columns: 11rem 1fr;
	gap: .75rem 1.25rem;
	padding: .85rem 0;
	border-bottom: var(--line-tw) solid var(--line);
}
.contact-confirm__row:first-child { padding-top: 0; }
.contact-confirm__row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-confirm__row dt {
	margin: 0;
	font-weight: 700;
	font-size: .88rem;
	color: var(--navy-700);
}
.contact-confirm__row dd {
	margin: 0;
	font-size: .95rem;
	line-height: 1.7;
	color: var(--text);
	word-break: break-word;
}
.contact-confirm__row--message dd { white-space: pre-wrap; }
.contact-form--confirm {
	padding: 0;
}
.contact-confirm__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: .5rem;
}
@media (max-width: 640px) {
	.contact-panel { padding: 1.5rem 1.25rem 1.75rem; }
	.contact-steps { padding-bottom: 1.25rem; margin-bottom: 1.5rem; }
	.contact-steps__item { max-width: none; }
	.contact-steps__item:not(:last-child)::after { width: calc(100% - 1.8rem); left: calc(50% + .9rem); }
	.contact-confirm__row { grid-template-columns: 1fr; gap: .35rem; }
	.contact-confirm__actions { grid-template-columns: 1fr; }
}
.contact-card {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 2rem;
	margin-bottom: 1.5rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px -10px rgba(35, 74, 44, 0.2);
}
.contact-card__title { font-weight: 700; color: var(--navy-700); margin: 0 0 .8rem; font-size: 1.05rem; }
.contact-card__tel { font-family: var(--sans); font-weight: 700; font-size: 1.8rem; color: var(--navy-700); text-decoration: none; display: block; line-height: 1.2; margin-bottom: 0.5rem; }
.contact-card__tel:hover { color: var(--gold-600); }
.contact-card__hours, .contact-card__note { color: var(--muted); font-size: 0.82rem; margin: .4rem 0 0; }

/* ---------- CTA blocks ---------- */
.cta-primary { background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: #fff; }
.cta-primary__inner {
	max-width: 960px; margin: 0 auto; text-align: center;
	padding: clamp(3rem, 8vw, 5rem) clamp(1.2rem, 5vw, 2rem);
}
.cta-primary__heading {
	font-size: clamp(1.35rem, 3.2vw, 1.9rem);
	margin: 0 0 1rem;
	line-height: 1.45;
	word-break: keep-all;
	overflow-wrap: normal;
}
.cta-primary__lead { color: rgba(255,255,255,.82); margin: 0 0 2rem; }
.cta-primary__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.8rem; }
.cta-primary__tel a { display: block; color: #fff; text-decoration: none; }
.cta-primary__tel-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,.7); }
.cta-primary__tel-num { font-family: var(--sans); font-weight: 700; font-size: 1.8rem; }
.cta-primary__hours { display: block; color: rgba(255,255,255,.7); font-size: 0.8rem; margin-top: .3rem; }

/* ---------- docs next steps + tl-assist CTA (/documents) ---------- */
.page--documents .prose {
	max-width: var(--wrap-narrow);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
.docs-next {
	max-width: var(--wrap-narrow);
	margin: 0 auto;
	padding: 1.6rem 0 clamp(2.4rem, 6vw, 3.6rem);
}
.docs-next__note {
	margin: 0 0 1.2rem;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.8;
}
.docs-next__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
}
.docs-next__detail {
	align-self: flex-start;
	background: var(--surface);
	box-shadow: var(--shadow);
}
.docs-next__detail .btn__arrow {
	background: var(--navy);
	color: #fff;
}
.docs-next__detail:hover .btn__arrow {
	background: #fff;
	color: var(--navy);
}

.tl-assist-cta-wrap {
	max-width: var(--wrap-narrow);
	margin: 0 auto;
	padding: 0 clamp(1.2rem, 5vw, 2rem) clamp(1.6rem, 4vw, 2.4rem);
}
.docs-next .tl-assist-cta-wrap {
	max-width: none;
	margin: 0;
	padding: 0;
}
.page--contact .tl-assist-cta-wrap {
	padding-top: clamp(1.6rem, 4vw, 2.4rem);
}

.tl-assist-cta {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: clamp(1.2rem, 3.5vw, 1.6rem) clamp(1.1rem, 3.5vw, 1.6rem);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 2px solid rgba(242, 184, 64, 0.45);
	color: #fff;
	text-decoration: none;
	background-color: var(--navy-700);
	background-image: url('../images/tl-assist-cta-bg.webp');
	background-size: cover;
	background-position: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tl-assist-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(35, 74, 44, 0.82);
	pointer-events: none;
}
.tl-assist-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px -14px rgba(35, 74, 44, 0.35);
	border-color: var(--gold);
	color: #fff;
}
.tl-assist-cta:hover .tl-assist-cta__action {
	background: var(--gold-600);
}
.tl-assist-cta__icon-wrap,
.tl-assist-cta__text,
.tl-assist-cta__action {
	position: relative;
	z-index: 1;
}
.tl-assist-cta__icon-wrap {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(242, 184, 64, 0.18);
	border: 1px solid rgba(242, 184, 64, 0.55);
}
.tl-assist-cta__icon {
	width: 1.35rem;
	height: 1.35rem;
	color: var(--gold);
}
.tl-assist-cta__text {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 0;
	flex: 1;
}
.tl-assist-cta__badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--gold);
	background: rgba(0, 0, 0, 0.22);
	padding: 0.25em 0.7em;
	border-radius: var(--radius);
}
.tl-assist-cta__title {
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp(1.02rem, 2.6vw, 1.28rem);
	line-height: 1.45;
	color: #fff;
}
.tl-assist-cta__action {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	margin-left: auto;
	padding: 0.7em 1.15em;
	border-radius: var(--radius);
	background: var(--gold);
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	box-shadow: 0 8px 20px -10px rgba(242, 184, 64, 0.8);
	transition: background .18s ease;
}
@media (max-width: 560px) {
	.docs-next__detail {
		align-self: stretch;
		width: 100%;
	}
	.tl-assist-cta {
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.tl-assist-cta__action {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); }
.site-footer__inner {
	max-width: var(--wrap); margin: 0 auto;
	padding: clamp(4rem, 8vw, 6rem) clamp(1.2rem, 5vw, 2rem);
	display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
	align-items: start;
}
.site-footer__name { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; color: #fff; margin: 0 0 1rem; }
.site-footer__addr, .site-footer__contact, .site-footer__legal { font-size: 0.88rem; margin: 0 0 .8rem; line-height: 1.7; }
.site-footer__legal { color: rgba(255,255,255,.75); }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer__sns { margin: 1rem 0 0; }
.site-footer__x {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
}
.site-footer__x:hover,
.site-footer__x:focus-visible {
	color: var(--gold);
}
.site-footer__x-icon {
	width: 1.1rem;
	height: 1.1rem;
	flex: none;
}
.site-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}
.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 1.5rem;
}
.footer-nav a {
	font-size: 0.95rem;
	line-height: 1.5;
	text-decoration: none;
	color: rgba(255,255,255,.88);
	display: inline-block;
	transition: color 0.15s ease;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
	color: #fff;
}
.footer-nav--sub {
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,.14);
}
.footer-nav--sub a {
	color: rgba(255,255,255,.62);
	font-size: 0.88rem;
}
.footer-nav--sub a:hover,
.footer-nav--sub a:focus-visible {
	color: rgba(255,255,255,.9);
}
.site-footer__copy { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,.5); padding: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); margin: 0; }

/* ---------- mobile fixed bar ---------- */
.mobile-bar { display: none; }

.pagination { text-align: center; margin-top: 2rem; }
.pagination .page-numbers { display: inline-block; padding: .5em .9em; border: var(--line-tw) solid var(--line); border-radius: 8px; margin: 0 .2rem; text-decoration: none; }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* =========================================================
   Responsive
   ========================================================= */
/* 低背面ビューポート（ノートPC等 〜760px）でもFVを100vhに収める追加圧縮 */
@media (min-width: 901px) and (max-height: 760px) {
	.hero__eyebrow { margin-bottom: 0.5rem; }
	.badge-container { margin-bottom: 10px; }
	.hero__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 0.8rem; line-height: 1.34; }
	.hero__note { margin-bottom: 0.9rem; line-height: 1.7; }
	.hero__actions { margin-bottom: 0.9rem; }
	.hero__tel a { font-size: 1.2rem; }
	body.is-front .hero__inner {
		padding-top: calc(var(--site-header-h, 76px) + 0.7rem);
		padding-bottom: 0.7rem;
	}
}

@media (max-width: 900px) {
	.global-nav { gap: 1rem; }
	.global-nav a { font-size: 0.85rem; }
	.site-header__cta .btn { font-size: 0.78rem; padding: 0.55em 0.9em; }

	.pillars__grid, .services-overview__grid, .latest-posts__grid { grid-template-columns: 1fr 1fr; }
	.visual-strip__grid { grid-template-columns: 1fr 1fr; }
	.column-grid { grid-template-columns: 1fr 1fr; }
	.column-showcase__header { align-items: flex-start; }
	.profile-teaser__inner, .profile { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }

	/* hero: 図面はフルブリードのまま背景化、テキストを前面に（100vh維持・見切れ防止） */
	.hero__content { max-width: none; }
	.hero::after {
		background: linear-gradient(180deg, rgba(29,63,41,.78) 0%, rgba(35,74,44,.52) 55%, rgba(29,63,41,.72) 100%);
	}
	.bp-title { font-size: 22px; }
	.bp-label, .bp-anno-text { font-size: 20px; }
}

@media (max-width: 720px) {
	.site-header__inner {
		padding: 0.75rem 1rem;
	}
	.site-header.is-scrolled .site-header__inner {
		padding-top: 0.65rem;
		padding-bottom: 0.65rem;
	}
	.site-header__name-sub {
		max-width: 9.5rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.site-header__name-main {
		font-size: 0.95rem;
		max-width: 11rem;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.site-header__nav, .site-header__cta { display: none; }
	.nav-toggle {
		display: inline-flex; margin-left: auto; flex-direction: column; gap: 5px;
		background: none; border: 0; padding: .6rem; cursor: pointer;
	}
	.nav-toggle__bar, .nav-toggle::before, .nav-toggle::after {
		content: ""; display: block; width: 24px; height: 2px; background: var(--navy); transition: .25s;
	}
	body.is-front .site-header:not(.is-scrolled) .nav-toggle__bar,
	body.is-front .site-header:not(.is-scrolled) .nav-toggle::before,
	body.is-front .site-header:not(.is-scrolled) .nav-toggle::after {
		background: #fff;
	}
	.nav-toggle[aria-expanded="true"] .nav-toggle__bar { opacity: 0; }
	.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

	.mobile-menu {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: var(--site-header-h, 76px);
		z-index: 99;
		overflow-y: auto;
		background: var(--bg);
		padding: 1.2rem clamp(1rem, 5vw, 2rem) 2rem;
		border-top: var(--line-tw) solid var(--line);
	}
	.admin-bar .mobile-menu {
		top: var(--header-h, 76px);
	}
	.mobile-menu[hidden] { display: none; }
	.mobile-menu__list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
	.mobile-menu__list a {
		display: block; padding: .95rem 0 .95rem .75rem;
		border-bottom: 1px solid var(--line);
		border-left: 3px solid transparent;
		text-decoration: none; color: var(--ink); font-weight: 600;
		transition: border-color .2s ease, color .2s ease;
	}
	.mobile-menu__list a:hover,
	.mobile-menu__list a:focus-visible { color: var(--navy); border-left-color: var(--gold); }
	.mobile-menu__list .current-menu-item > a { color: var(--navy); border-left-color: var(--gold); font-weight: 700; }
	.mobile-menu__cta { display: grid; gap: .75rem; }

	body.is-menu-open { overflow: hidden; }
	body.is-menu-open .mobile-bar { display: none; }

	/* --- SP hero --- */
	.hero,
	body.is-front .hero {
		min-height: 70vh;
		min-height: 70svh;
		align-items: stretch;
		padding-bottom: calc(var(--mobile-bar-h, 68px) + env(safe-area-inset-bottom, 0px) + 1.5rem);
	}
	.hero::after {
		background: linear-gradient(180deg, rgba(29,63,41,.82) 0%, rgba(35,74,44,.58) 55%, rgba(29,63,41,.78) 100%);
	}
	.hero__inner,
	body.is-front .hero__inner {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-top: calc(var(--site-header-h, 76px) + 1.15rem);
		padding-bottom: 1.25rem;
	}
	.hero__eyebrow {
		font-size: 0.78rem;
		letter-spacing: 0.12em;
		margin-bottom: 0.85rem;
	}
	.hero__eyebrow::before { width: 22px; }
	.badge-container {
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 8px;
		margin-bottom: 1rem;
		margin-inline: -0.25rem;
		padding-inline: 0.25rem;
	}
	.badge-container::-webkit-scrollbar { display: none; }
	.badge-item {
		flex: none;
		scroll-snap-align: start;
		font-size: 0.7rem;
		padding: 3px 10px;
	}
	.hero__title {
		font-size: clamp(1.65rem, 7vw, 2rem);
		line-height: 1.35;
		margin-bottom: 1rem;
		text-wrap: balance;
	}
	.hero__title .kenten {
		text-emphasis: none;
		-webkit-text-emphasis: none;
	}
	.hero__title-accent {
		box-shadow: inset 0 -0.35em 0 rgba(242, 184, 64, 0.35);
	}
	.hero__note--full { display: none; }
	.hero__note--short {
		display: block;
		font-size: 0.85rem;
		margin-bottom: 1.35rem;
		max-width: none;
		line-height: 1.75;
	}
	.hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 0.65rem;
		margin-bottom: 0;
	}
	.hero__cta-primary,
	.hero__cta-secondary {
		flex: 1 1 calc(50% - 0.35rem);
		min-width: 0;
		justify-content: center;
		font-size: 0.92rem;
		padding: 0.9em 1em;
		white-space: nowrap;
	}
	.hero__tel { display: none; }

	.pillars__grid, .services-overview__grid, .latest-posts__grid, .case-grid { grid-template-columns: 1fr; }
	.visual-strip__grid { grid-template-columns: 1fr; }
	.column-grid { grid-template-columns: 1fr; }
	.column-showcase__all { justify-content: center; }
	.site-news__inner { grid-template-columns: 1fr; }
	.news-list--compact .news-list__title { white-space: normal; }
	.reason,
	.reason--reverse {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		direction: ltr;
	}
	.reason__content { flex-direction: column; gap: .6rem; }

	/* mobile fixed bottom bar (電話、メール) */
	.mobile-bar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 90;
		box-shadow: 0 -6px 20px -10px rgba(0,0,0,.3);
		padding-bottom: env(safe-area-inset-bottom, 0px);
	}
	.mobile-bar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 56px;
		padding: 0.65rem 0.2rem;
		text-decoration: none;
		color: #fff;
		font-size: 0.72rem;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: 0.02em;
		transition: filter .15s ease;
	}
	.mobile-bar__item:active { filter: brightness(0.92); }
	.mobile-bar__item--tel { background: var(--navy-700); }
	.mobile-bar__item--mail { background: var(--navy); }
	.mobile-bar__icon {
		width: 1.25rem;
		height: 1.25rem;
		margin-bottom: 3px;
		flex: none;
	}
	.mobile-bar__label { white-space: nowrap; }
	body {
		padding-bottom: calc(var(--mobile-bar-h, 68px) + env(safe-area-inset-bottom, 0px));
	}
}

/* =========================================================
   120-Point Refinement: Architectural & Drawing Design Details
   ========================================================= */

/* 1. 設計図（ブループリント）風の極細方眼グリッド背景 */
.blueprint-grid {
	position: relative;
}
.blueprint-grid::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	z-index: 1;
}

/* 2. 寸法線 (Dimension Line) の装飾 */
.dimension-line {
	position: absolute;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	z-index: 1;
	font-family: monospace;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.dimension-line::before, .dimension-line::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 9px;
	background: rgba(255, 255, 255, 0.35);
}
.dimension-line::before { left: 0; transform: rotate(45deg); }
.dimension-line::after { right: 0; transform: rotate(45deg); }

/* 3. 角交差（製図のクロスマーク / とんぼ）枠線 — 不要になったため交点装飾を削除 */
.cross-border {
	position: relative;
	border: 1px solid var(--line);
}

/* 4. 単票・申請書作り込み → 受理スタンプ（GSAPで制御） */
.doc-border   { fill: rgba(255,255,255,.04); stroke: rgba(255,255,255,.8); stroke-width: 1.8; }
.doc-divider  { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1.4; stroke-linecap: round; }
.doc-label    { fill: none; stroke: rgba(255,255,255,.7); stroke-width: 2.4; stroke-linecap: round; }
.doc-value    { fill: none; stroke: rgba(255,255,255,.4); stroke-width: 1.4; stroke-linecap: round; }
.doc-check    { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; transform-box: fill-box; transform-origin: center; filter: drop-shadow(0 0 4px rgba(242,184,64,.7)); }
.doc-tline    { fill: none; stroke: rgba(255,255,255,.34); stroke-width: 1.2; }
.doc-fill     { fill: rgba(255,255,255,.18); }
.doc-sealbox  { fill: none; stroke: rgba(242,184,64,.55); stroke-width: 1.4; stroke-dasharray: 5 5; }
.doc-seallabel{ fill: rgba(242,184,64,.7); font-family: var(--sans); font-size: 13px; font-weight: 700; }
.seal-ink     { fill: rgba(242,184,64,.12); }
.seal-bleed   { fill: rgba(242,184,64,.22); filter: blur(6px); }
.seal-bloom   { fill: var(--gold); filter: blur(18px); opacity: 0; }
.seal-frame   { fill: none; stroke: var(--gold); stroke-width: 4.5; filter: drop-shadow(0 0 12px rgba(242,184,64,.6)); }
.seal-frame-in{ fill: none; stroke: var(--gold); stroke-width: 2; }
.seal-char    { fill: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 52px; }
.ink-ring     { fill: none; stroke: var(--gold); stroke-width: 3; }
.bp-datum     { stroke: rgba(255,255,255,.16); stroke-width: 1; stroke-dasharray: 6 9; }
.bp-label     { fill: rgba(255,255,255,.5); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 15px; letter-spacing: .08em; }
.bp-title     { fill: rgba(255,255,255,.55); font-size: 16px; }

/* 5. スクロール時のフェードイン効果 */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 6. スマホCTA・追従ナビのマイクロ・インタラクション */
.mobile-bar__item:hover .mobile-bar__icon,
.mobile-bar__item:active .mobile-bar__icon {
	animation: nudge-icon 0.5s ease infinite alternate;
}

@keyframes nudge-icon {
	0% { transform: translateY(0); }
	100% { transform: translateY(-4px); }
}

/* 7. 青写真（ブループリント）型プレースホルダー */
.blueprint-placeholder {
	background: #112d4e;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
}
.blueprint-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 15px 15px;
	pointer-events: none;
}
.blueprint-placeholder__grid {
	position: absolute;
	width: 150%;
	height: 150%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transform: rotate(-15deg);
	background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 10px);
}

/* timeline (about page) */
.timeline {
	position: relative;
	margin: 2.5rem 0;
	padding: 0;
	list-style: none;
}
.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 135px;
	width: 2px;
	background: var(--line);
}
.timeline-item {
	position: relative;
	margin-bottom: 2.5rem;
	padding-left: 175px;
}
.timeline-item:last-child {
	margin-bottom: 0;
}
.timeline-item__badge {
	position: absolute;
	left: 0;
	top: 4px;
	width: 120px;
	text-align: right;
}
.timeline-item__years {
	display: block;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--gold-600);
	line-height: 1.2;
	white-space: nowrap;
}
.timeline-item__period {
	display: block;
	font-size: 0.72rem;
	color: var(--muted);
	margin-top: 2px;
}
.timeline-item__dot {
	position: absolute;
	left: 131px;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--navy);
	border: 2px solid var(--bg);
	z-index: 2;
}
.timeline-item__content {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}
.timeline-item__title {
	margin: 0 0 0.4rem;
	font-size: 1.15rem;
	color: var(--navy-700);
	font-family: var(--sans);
	font-weight: 700;
}
.timeline-item__role {
	font-size: 0.82rem;
	color: var(--gold-600);
	font-weight: 700;
	margin-bottom: 0.6rem;
	letter-spacing: 0.05em;
}
.timeline-item__desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.75;
}

@media (max-width: 600px) {
	.timeline::before {
		left: 15px;
	}
	.timeline-item {
		padding-left: 40px;
		margin-bottom: 2rem;
	}
	.timeline-item__badge {
		position: static;
		width: auto;
		text-align: left;
		margin-bottom: 0.6rem;
		display: flex;
		align-items: baseline;
		gap: 8px;
	}
	.timeline-item__period {
		margin-top: 0;
	}
	.timeline-item__dot {
		left: 11px;
		top: 8px;
	}
	.timeline-item__content {
		padding: 1.2rem;
	}
	/* 事務所概要テーブルのスマホ表示最適化 */
	.info-table,
	.info-table tr,
	.info-table th,
	.info-table td {
		display: block;
		width: 100% !important;
	}
	.info-table th {
		border-bottom: none;
		padding-bottom: 0.4rem;
		background: rgba(247, 242, 233, 0.8);
	}
	.info-table td {
		padding-top: 0.4rem;
	}
}
/* =========================================================
   Blog (home.php) Layout
   ========================================================= */

/* Hero area subtitle (lead text) */
.page-hero__lead {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0.8rem 0 0;
	font-weight: 500;
	line-height: 1.6;
}

/* 2-column layout */
.blog-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 3rem;
	align-items: start;
}

.blog-main {
	min-width: 0; /* grid overflow prevention */
}

/* Two columns grid override */
.latest-posts__grid--two-cols {
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.latest-posts__grid--two-cols .post-card {
	background: var(--surface);
}

/* Category badge and date meta in post card */
.post-card__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding: 1.2rem 1.4rem 0;
}

.post-card__category {
	font-size: 0.72rem;
	font-weight: 700;
	background: var(--navy);
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	line-height: 1;
	letter-spacing: 0.02em;
	display: inline-block;
}

/* Overriding normal card date padding when meta container is used */
.post-card__meta .post-card__date {
	padding: 0;
	font-size: 0.78rem;
	color: var(--muted);
}

/* Thumbnail placeholder when no thumb is set */
.post-card__thumb--none {
	aspect-ratio: 16/9;
	background: var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 2rem;
}

/* Sidebar Widget styles */
.blog-sidebar {
	position: sticky;
	top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.widget {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem;
	box-shadow: var(--shadow);
}

.widget__title {
	font-size: 1.15rem;
	color: var(--navy-700);
	margin: 0 0 1.2rem;
	font-weight: 700;
	font-family: var(--sans);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 0.6rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.widget__icon {
	color: var(--gold-600);
	flex-shrink: 0;
}

.sidebar-cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.sidebar-cat {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	padding: 0.45em 0.85em;
	border-radius: var(--radius);
	border: 1.5px solid var(--line);
	background: var(--bg);
	color: var(--navy-700);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	line-height: 1.2;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.sidebar-cat:hover,
.sidebar-cat:focus-visible {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
	transform: translateY(-1px);
}

.sidebar-cat__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.35em;
	padding: 0.1em 0.4em;
	border-radius: 999px;
	background: rgba(35, 74, 44, 0.12);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--navy);
}

.sidebar-cat:hover .sidebar-cat__count,
.sidebar-cat:focus-visible .sidebar-cat__count {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
}

/* Recommended posts items */
.recommended-posts {
	display: flex;
	flex-direction: column;
}

.recommended-post-item {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s ease;
}

.recommended-post-item:first-child {
	padding-top: 0;
}

.recommended-post-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.recommended-post-item:hover {
	color: var(--navy);
}

.recommended-post-item:hover .recommended-post-item__title {
	color: var(--navy);
}

.recommended-post-item__thumb {
	width: 75px;
	height: 55px;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
}

.recommended-post-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recommended-post-item__no-thumb {
	font-size: 1.2rem;
}

.recommended-post-item__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0; /* prevention of title overflow */
}

.recommended-post-item__title {
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.45;
	color: var(--navy-700);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.recommended-post-item__date {
	font-size: 0.72rem;
	color: var(--muted);
	margin-top: 2px;
}

/* Responsive query for blog page layout */
@media (max-width: 992px) {
	.blog-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.blog-sidebar {
		position: static;
	}
}

@media (max-width: 600px) {
	.latest-posts__grid--two-cols {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Single Post (single.php) Layout & TOC
   ========================================================= */

/* ヒーロー→本文の間隔を詰める（コラムのみ） */
.page--single .page-body {
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

/* アイキャッチ */
.single__eyecatch {
	margin: 0 0 1.75rem;
	max-width: var(--wrap-narrow);
}

.single__thumb {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: block;
}

.single__content > .single__thumb:first-child {
	margin-top: 0;
}

/* 2-column layout for single page */
.single-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 3rem;
	align-items: start;
}

.single-main {
	min-width: 0; /* grid overflow prevention */
}

/* Limit reading width for typography readability */
.single__content {
	max-width: var(--wrap-narrow);
	margin-left: 0;
	margin-right: auto;
}

/* Sidebar for single page shares .blog-sidebar (sticky stack) */

/* TOC Container styles */
.widget--toc {
	background: var(--surface);
	border: var(--line-tw) solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem;
	box-shadow: var(--shadow);
}

.toc-container {
	max-height: 70vh;
	overflow-y: auto;
}

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

.toc-sublist {
	list-style: none;
	padding-left: 1.2rem;
	margin: 0.4rem 0;
	border-left: 1px solid var(--line);
}

.toc-item {
	margin-bottom: 0.5rem;
}

.toc-item:last-child {
	margin-bottom: 0;
}

.toc-link {
	display: block;
	font-size: 0.88rem;
	color: var(--muted);
	text-decoration: none;
	padding: 4px 0;
	line-height: 1.4;
	transition: color 0.2s ease, font-weight 0.2s ease;
}

.toc-item--h3 .toc-link {
	font-size: 0.8rem;
}

.toc-link:hover,
.toc-link.is-active {
	color: var(--navy);
	font-weight: 700;
}

/* Related posts styles */
.related-posts {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 2px solid var(--line);
}

.related-posts__title {
	font-size: 1.3rem;
	color: var(--navy-700);
	font-weight: 700;
	margin-bottom: 1.8rem;
	font-family: var(--sans);
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.related-posts__grid .post-card {
	background: var(--surface);
}

.related-posts__empty {
	color: var(--muted);
	font-size: 0.9rem;
}

/* Responsive styles for single post page */
@media (max-width: 992px) {
	.single-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.single-layout .blog-sidebar {
		position: static;
	}
	.related-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.related-posts__grid {
		grid-template-columns: 1fr;
	}
	.related-posts {
		margin-top: 3rem;
		padding-top: 2rem;
	}
}
