﻿/* =========================================================
   Touren JP — Main Stylesheet
   ========================================================= */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
	/* Brand (logo green) */
	--primary:        #3FA535;
	--primary-light:  #7BD37B;
	--primary-dark:   #2C7A26;

	/* Trust */
	--navy:           #0F2A44;
	--navy-2:         #1A3A5C;

	/* Accent */
	--gold:           #C9A227;
	--gold-light:     #E5C158;

	/* Text */
	--text:           #0C1D2B;
	--text-muted:     #4B6070;
	--text-light:     #8599A8;
	--text-on-dark:   #F2F6FA;

	/* Surface */
	--bg:             #FFFFFF;
	--bg-alt:         #F4F8F4; /* greenish soft */
	--bg-alt2:        #ECF3EC;
	--bg-dark:        var(--navy);
	--border:         #E1E8EE;

	/* System */
	--radius:         10px;
	--radius-sm:      6px;
	--radius-lg:      20px;
	--shadow:         0 1px 3px rgba(15, 42, 68, 0.04), 0 6px 24px rgba(15, 42, 68, 0.06);
	--shadow-lg:      0 4px 16px rgba(15, 42, 68, 0.08), 0 18px 48px rgba(15, 42, 68, 0.12);

	--container:      1240px;
	--container-narrow: 880px;

	--font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
	--font-ko: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-en: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

	--header-h:       72px;
	--ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: 16px;
	line-height: 1.75;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html[lang="ko"] body {
	font-family: var(--font-ko);
	letter-spacing: -0.01em;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { line-height: 1.35; margin: 0 0 0.6em; font-weight: 700; color: var(--text); }
p { margin: 0 0 1em; }

.eyebrow {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 0.6em;
}
.eyebrow-light { color: var(--primary-light); }

/* ── Accessibility ────────────────────────────────────── */
.sr-only,
.sr-only-focusable:not(:focus):not(:focus-within) {
	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; top: 0; left: 0; padding: 8px 16px; background: var(--primary); color: #fff; z-index: 9999; }

:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
	border-radius: 3px;
}

/* ── Layout ────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }

.section {
	padding: 88px 0;
	position: relative;
}
.section-alt   { background: var(--bg-alt); }
.section-alt2  { background: var(--bg-alt2); }
.section-dark  { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark .section-title,
.section-title-light { color: var(--text-on-dark); }
.section-lead-light { color: rgba(255,255,255,0.78); }

.section-head {
	text-align: center;
	margin: 0 auto 56px;
	max-width: 720px;
}
.section-title {
	font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
	margin: 0 0 0.4em;
	letter-spacing: -0.01em;
}
.section-title-sm { font-size: 1.4rem; margin: 0 0 1em; }
.section-lead {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin: 0;
}
.section-cta { margin-top: 48px; text-align: center; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 24px;
	font-size: 0.95rem;
	font-weight: 700;
	font-family: inherit;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.2s var(--ease);
	text-decoration: none;
	line-height: 1.3;
	white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(63, 165, 53, 0.3); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary); color: #fff; }

.btn-accent { background: var(--gold); color: #fff; }
.btn-accent:hover { background: var(--gold-light); color: var(--text); }

.btn-header-cta {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	background: var(--primary);
	color: #fff;
	border-radius: var(--radius);
	font-size: 0.88rem;
	font-weight: 700;
	transition: all 0.2s var(--ease);
}
.btn-header-cta:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

/* ── Header ────────────────────────────────────────────── */
#site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	z-index: 100;
	transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
#site-header.scrolled {
	box-shadow: 0 2px 16px rgba(15, 42, 68, 0.06);
	border-bottom-color: var(--border);
}
.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0;
	min-height: var(--header-h);
}
.site-logo { display: inline-flex; align-items: center; max-height: 48px; overflow: visible; }
.site-logo img,
.site-logo .custom-logo {
	height: 38px !important;
	width: auto !important;
	max-width: 200px !important;
	max-height: 38px !important;
	object-fit: contain;
	display: block;
}
.site-logo .custom-logo-link {
	display: inline-flex !important;
	align-items: center;
	height: 38px;
	max-width: 200px;
	overflow: hidden;
}

/* PNG ロゴ */
.logo-img {
	height: 38px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	display: block;
}
.logo-img--white {
	filter: brightness(0) invert(1);
}
.logo-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--navy);
	margin-left: 12px;
	white-space: nowrap;
	line-height: 1.2;
}
.logo-name--white {
	color: #fff;
}
.footer-logo .logo-name {
	display: block;
	margin-left: 0;
	margin-top: 8px;
	font-size: 0.95rem;
	color: #fff;
}

.site-nav { display: flex; align-items: center; }
.nav-menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 8px;
}
.nav-menu a {
	display: inline-block;
	padding: 8px 14px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text);
	border-radius: 6px;
	white-space: nowrap;
	letter-spacing: 0.01em;
}
.nav-menu a:hover,
.nav-menu li.current-menu-item > a {
	color: var(--primary);
	background: var(--bg-alt2);
}
.nav-mobile-extra { display: none; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switcher {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	font-family: var(--font-ja);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0;
}
.lang-switcher li { display: inline; }
.lang-switcher li + li::before { content: '/'; padding: 0 6px; color: var(--text-light); }
.lang-switcher a { color: var(--text-light); }
.lang-switcher a.active { color: var(--primary); }

.nav-toggle {
	display: none;
	width: 40px; height: 40px;
	padding: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}
.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { padding-top: var(--header-h); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
	position: relative;
	margin-top: calc(-1 * var(--header-h));
	padding-top: var(--header-h);
	min-height: clamp(400px, 52vh, 520px);
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 55%, #1a3d60 100%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding: 24px 0 56px;
}
.hero-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(201, 162, 39, 0.2);
	color: var(--gold-light);
	font-family: var(--font-en);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	border-radius: 999px;
	margin-bottom: 24px;
}
.hero-title {
	font-size: clamp(1.6rem, 1.0rem + 1.8vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
	line-height: 1.35;
	color: #fff;
}
:lang(ko) .hero-title {
	font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
}
.hero-lead {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 36px;
	line-height: 1.85;
}
.hero-cta {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.hero-ai-tag {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--primary-light);
	background: rgba(63, 165, 53, 0.2);
	border: 1px solid rgba(123, 211, 123, 0.35);
	display: inline-block;
	padding: 6px 18px;
	border-radius: 999px;
	margin: 0 auto 24px;
	letter-spacing: 0.03em;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 600px;
	margin: 0 auto;
	padding-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item { text-align: center; }
.stat-number {
	display: block;
	font-family: var(--font-en);
	font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
	font-weight: 800;
	color: var(--primary-light);
	line-height: 1.1;
}
.stat-label {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 6px;
}

.deco-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* ── Page Hero (内ページ) ──────────────────────────────── */
.page-hero {
	position: relative;
	background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 55%, #1a3d60 100%);
	margin-top: calc(-1 * var(--header-h));
	padding: calc(var(--header-h) + 48px) 0 72px;
	overflow: hidden;
	text-align: center;
}
.page-hero-eyebrow {
	font-family: var(--font-en);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin: 0 0 0.6em;
}
.page-hero-title {
	font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
	margin: 0 0 0.4em;
	color: #fff;
	letter-spacing: -0.01em;
}
.page-hero-lead {
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 720px;
	margin: 0.8em auto 0;
}
.page-hero-meta { color: rgba(255, 255, 255, 0.55); font-family: var(--font-en); font-size: 0.92rem; }

.page-hero > .container { position: relative; z-index: 2; }

/* ── Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	font-size: 0.85rem;
}
.breadcrumb ol {
	list-style: none;
	margin: 0; padding: 14px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.breadcrumb li + li::before { content: '›'; padding: 0 8px; color: var(--text-light); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ── Service Cards ─────────────────────────────────────── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (min-width: 1025px) {
	.services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
	.services-grid { grid-template-columns: 1fr; }
}
.services-grid--full { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.service-card {
	display: block;
	padding: 36px 28px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--text);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
	color: var(--text);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	background: var(--bg-alt);
	color: var(--primary);
	border-radius: 14px;
	margin-bottom: 20px;
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card-title {
	font-size: 1.3rem;
	margin: 0 0 12px;
	color: var(--navy);
}
.service-card-lead {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.75;
	margin: 0 0 18px;
}
.service-card-link {
	display: inline-block;
	color: var(--primary);
	font-weight: 700;
	font-size: 0.92rem;
}
.service-card-thumb { margin: -36px -28px 24px; }
.service-card-thumb img { border-radius: 0; }

.tag-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tag-list li {
	font-size: 0.74rem;
	font-weight: 600;
	padding: 4px 10px;
	background: var(--bg-alt2);
	color: var(--primary-dark);
	border-radius: 999px;
}

/* ── Brand Cards ───────────────────────────────────────── */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

/* 1〜2件のとき横長1列レイアウト */
.brands-grid--wide {
	grid-template-columns: 1fr;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.brand-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
	display: flex;
	flex-direction: column;
}
.brand-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

/* 横長カードバリアント */
.brand-card--wide {
	flex-direction: column;
}
/* カードヘッダー：企業ロゴ＋国旗（全幅ナビバー） */
.brand-card-header {
	background: var(--navy);
	padding: 16px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}
.brand-card-logo {
	height: 32px;
	width: auto;
	object-fit: contain;
	display: block;
}
.brand-card-name-text {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}
/* コンテンツ行ラッパー */
.brand-card-inner {
	display: flex;
	flex: 1;
	flex-direction: column;
}
.brand-card-inner > .brand-card-body  { order: 2; }
.brand-card-inner > .brand-card-thumb { order: 1; }
/* wide: body 左・thumb 右 */
.brand-card--wide .brand-card-inner {
	flex-direction: row;
}
.brand-card--wide .brand-card-inner > .brand-card-body {
	flex: 1;
	padding: 32px 36px;
	order: 1;
}
.brand-card--wide .brand-card-inner > .brand-card-thumb {
	width: 360px;
	min-width: 360px;
	flex-shrink: 0;
	aspect-ratio: auto;
	min-height: 260px;
	border-left: 1px solid var(--border);
	order: 2;
}
.brand-card--wide .brand-card-title {
	font-size: 1.35rem;
	margin-bottom: 14px;
}
.brand-card--wide .brand-card-lead {
	font-size: 0.95rem;
	line-height: 1.8;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

.brand-card-thumb {
	display: block;
	aspect-ratio: 4 / 3;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.brand-card-thumb img {
	width: 100%; height: 100%; object-fit: cover;
}
/* 製品画像：contain で全体を見せる */
.brand-card-product-img {
	width: 100%; height: 100%;
	object-fit: contain;
	padding: 20px;
	background: #fff;
}
.brand-card-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%;
	font-size: 2.2rem; font-weight: 800;
	color: var(--primary);
	font-family: var(--font-en);
	background: linear-gradient(135deg, var(--bg-alt), var(--bg-alt2));
}
.brand-flag {
	position: absolute;
	top: 12px; right: 12px;
	background: rgba(255,255,255,0.95);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 0.85rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
/* ヘッダー内フラグは absolute 解除 */
.brand-card-header .brand-flag {
	position: static;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: none;
}
.brand-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.brand-card-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 3px 10px;
	background: var(--bg-alt2);
	color: var(--primary-dark);
	border-radius: 999px;
	margin-bottom: 10px;
}
.brand-card-title { font-size: 1.1rem; margin: 0 0 8px; }
.brand-card-title a { color: var(--text); }
.brand-card-title a:hover { color: var(--primary); }
.brand-card-lead {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 16px;
	flex: 1;
}
.brand-card-link {
	display: inline-block;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--primary);
}

.brand-detail-thumb {
	margin: 0 0 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.brand-detail-cta { margin-top: 32px; text-align: center; }

/* ── Filter tabs ───────────────────────────────────────── */
.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin: 0 0 40px;
}
.filter-btn {
	padding: 8px 20px;
	background: transparent;
	border: 1.5px solid var(--border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── News Cards ────────────────────────────────────────── */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
.news-card {
	background: var(--bg);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--bg-alt);
	overflow: hidden;
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-card:hover .news-card-thumb img { transform: scale(1.06); }
.news-card-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--bg-alt), var(--bg-alt2));
}
.news-card-body { padding: 22px 24px 26px; }
.news-date {
	display: block;
	font-family: var(--font-en);
	font-size: 0.82rem;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 8px;
}
.news-card-title { font-size: 1.05rem; line-height: 1.55; margin: 0 0 8px; }
.news-card-title a { color: var(--text); }
.news-card-title a:hover { color: var(--primary); }
.news-card-excerpt { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── About / Page content ──────────────────────────────── */
.page-content {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--text);
}
.page-content h2 { margin: 2.2em 0 0.8em; font-size: 1.4rem; padding-bottom: 0.4em; border-bottom: 2px solid var(--primary-light); }
.page-content h3 { margin: 1.8em 0 0.6em; font-size: 1.15rem; color: var(--primary-dark); }
.page-content p { margin: 0 0 1.2em; }
.page-content ul, .page-content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.page-content li { margin-bottom: 0.4em; }
.page-content a { text-decoration: underline; }
.legal-address {
	font-style: normal;
	margin-top: 0.8em;
	padding: 1.2em 1.4em;
	background: var(--bg-alt);
	border-left: 4px solid var(--primary);
	border-radius: 0 6px 6px 0;
	line-height: 2;
}
.legal-address a { color: var(--primary-dark); }

.info-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.info-table th, .info-table td {
	padding: 18px 22px;
	text-align: left;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
	width: 30%;
	background: var(--bg-alt);
	font-weight: 600;
	color: var(--navy);
	font-size: 0.95rem;
}
.info-table td { color: var(--text); }

.bullet-list { padding-left: 1.2em; margin: 0; }
.bullet-list li { margin-bottom: 0.4em; }

/* ── Own Products ──────────────────────────────────────── */
.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
@media (max-width: 840px) {
	.products-grid { grid-template-columns: 1fr; }
}

.product-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

/* Header bar */
.product-card-header {
	padding: 18px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-shrink: 0;
}
.product-card--navy .product-card-header { background: var(--navy); }
.product-card--green .product-card-header { background: var(--primary); }

.product-card-eyebrow {
	font-family: var(--font-en);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
}
.product-card-badge {
	font-size: 0.72rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.95);
	white-space: nowrap;
	flex-shrink: 0;
}

/* Body */
.product-card-body {
	padding: 28px 28px 32px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.product-card-title {
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.45;
	margin: 0 0 14px;
}
.product-card--navy .product-card-title { color: var(--navy); }
.product-card--green .product-card-title { color: var(--primary-dark); }

.product-card-lead {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.85;
	margin: 0 0 20px;
}

/* Feature list */
.product-card-features {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.product-card-features li {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text);
	padding-left: 22px;
	position: relative;
	line-height: 1.5;
}
.product-card-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.82rem;
	font-weight: 800;
}
.product-card--navy .product-card-features li::before { color: var(--navy); }
.product-card--green .product-card-features li::before { color: var(--primary); }

/* Tags */
.product-card-tags { margin-bottom: 24px; }
.product-card--navy .tag-list li {
	background: rgba(15, 42, 68, 0.07);
	color: var(--navy);
}
.product-card--green .tag-list li {
	background: var(--bg-alt2);
	color: var(--primary-dark);
}

/* CTA */
.product-card-cta { margin-top: auto; }

.btn-navy {
	background: var(--navy);
	color: #fff;
	border: 2px solid var(--navy);
}
.btn-navy:hover {
	background: var(--navy-2);
	border-color: var(--navy-2);
	color: #fff;
}
.btn-sm {
	font-size: 0.9rem;
	padding: 10px 22px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.4em;
	display: grid;
	gap: 12px;
}
.feature-list li {
	padding: 14px 18px 14px 40px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	position: relative;
	font-weight: 500;
}
.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 14px; top: 50%;
	transform: translateY(-50%);
	color: var(--primary);
	font-weight: 800;
}

.map-embed {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.empty-state {
	text-align: center;
	color: var(--text-muted);
	padding: 60px 20px;
	background: var(--bg-alt);
	border-radius: var(--radius-lg);
}

/* -- About Teaser (front-page) -------------------------------------------- */
.about-teaser-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 60px;
	align-items: start;
}
.about-teaser-heading {
	font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
	font-weight: 800;
	color: #fff;
	margin: 12px 0 36px;
	line-height: 1.3;
}

/* Mission / Vision list */
.about-mv-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 36px;
	padding-left: 20px;
	border-left: 3px solid var(--primary);
}
.about-mv-label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-light);
	margin-bottom: 8px;
	background: rgba(63,165,53,0.15);
	padding: 3px 10px;
	border-radius: 4px;
}
.about-mv-text {
	font-size: 1rem;
	color: rgba(255,255,255,0.9);
	line-height: 1.8;
	margin: 0;
}

/* Values inline */
.about-values-inline {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}
.about-values-inline li {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.6;
}
.about-values-inline li strong {
	display: inline;
	color: rgba(255,255,255,0.85);
	font-weight: 700;
	margin-right: 6px;
}

/* Right side: company summary */
.about-teaser-side {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	position: sticky;
	top: calc(var(--header-h) + 24px);
}
.about-summary {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.about-summary-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-summary-item:first-child { padding-top: 0; }
.about-summary-item:last-child { border-bottom: none; padding-bottom: 0; }
.about-summary dt {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-light);
}
.about-summary dd {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.88);
	margin: 0;
	line-height: 1.6;
}
.about-summary dd a {
	color: rgba(255,255,255,0.75);
	text-decoration: underline;
	text-underline-offset: 3px;
}
@media (max-width: 900px) {
	.about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-teaser-side { position: static; }
}

/* ── CTA band ─────────────────────────────────────────── */
.section-cta-band {
	background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-alt2) 100%);
	padding: 72px 0;
}
.section-cta-band .btn {
	margin-top: 24px;
}

/* ── Contact ───────────────────────────────────────────── */
.section-contact {
	background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg) 60%);
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
}

/* フォームカード */
.contact-form-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.contact-form-card-header {
	background: var(--navy);
	padding: 36px 40px 32px;
	color: var(--text-on-dark);
}
.contact-form-card-header .eyebrow {
	color: var(--primary);
	margin-bottom: 10px;
}
.contact-form-card-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}
.contact-form-card-lead {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.8;
	margin: 0;
}
.contact-form-card-email-note {
	margin: 10px 0 0;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
}
.contact-form-card-email-note a {
	color: rgba(255,255,255,0.85);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.contact-form-card-email-note a:hover { color: #fff; }
.contact-form-card-body {
	padding: 40px;
}

/* サイドパネル */
.contact-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* 連絡先カード */
.contact-info-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 32px;
}
.contact-info-card .eyebrow {
	margin-bottom: 8px;
}
.contact-info-card-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text);
	margin: 0 0 8px;
}
.contact-info-card-lead {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}
.contact-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-info-list-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.contact-info-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	margin-top: 2px;
}
.contact-info-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-light);
	margin-bottom: 3px;
}
.contact-info-value {
	display: block;
	font-size: 0.9rem;
	color: var(--text);
	line-height: 1.7;
}
a.contact-info-value {
	color: var(--primary);
	font-weight: 600;
}
a.contact-info-value:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* 対応内容カード */
.contact-category-card {
	background: var(--bg-alt2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 32px;
}
.contact-category-card-title {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary);
	margin: 0 0 14px;
}
.contact-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contact-category-list li {
	font-size: 0.85rem;
	color: var(--text-muted);
	padding-left: 14px;
	position: relative;
	line-height: 1.5;
}
.contact-category-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 5px;
	background: var(--primary);
	border-radius: 50%;
}

.cf7-placeholder {
	padding: 24px;
	background: #FFF8E1;
	border: 1px dashed var(--gold);
	border-radius: var(--radius);
	color: var(--text);
	font-size: 0.9rem;
}
.cf7-placeholder code {
	background: rgba(0,0,0,0.05);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: var(--font-en);
	font-size: 0.85em;
}

/* CF7 styling */
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7-form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 6px;
	color: var(--text);
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 1rem;
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--text);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(63, 165, 53, 0.15);
}
.wpcf7-form .wpcf7-submit {
	display: inline-flex;
	padding: 14px 36px;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s var(--ease);
}
.wpcf7-form .wpcf7-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(63, 165, 53, 0.3);
}
.wpcf7-form .wpcf7-submit.is-disabled,
.wpcf7-form .wpcf7-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* CF7 フォーム内 acceptance フィールドは独自同意チェックと重複するため非表示 */
.wpcf7-form .wpcf7-acceptance {
	display: none !important;
}

/* 同意チェックエリア */
.contact-consent {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}
.contact-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-weight: 400;
}
.contact-consent-check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--primary);
	cursor: pointer;
}
.contact-consent-text {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.7;
}
.consent-modal-trigger {
	background: none;
	border: none;
	padding: 0;
	color: var(--primary);
	font-size: inherit;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.consent-modal-trigger:hover { color: var(--primary-dark); }
.contact-consent-note {
	margin: 8px 0 0 28px;
	font-size: 0.78rem;
	color: var(--text-light);
}

/* リーガルリンクカード */
.contact-legal-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contact-legal-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.2s var(--ease);
}
.contact-legal-link:hover { color: var(--primary); }
.contact-legal-link svg { flex-shrink: 0; color: var(--primary); }

/* 送信完了メッセージ */
.contact-sent-message {
	text-align: center;
	padding: 48px 24px;
}
.contact-sent-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--bg-alt);
	border-radius: 50%;
	color: var(--primary);
	margin-bottom: 24px;
}
.contact-sent-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text);
	margin: 0 0 16px;
}
.contact-sent-body {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 2;
	margin: 0;
}

/* ── Legal Modal ────────────────────────────────────────── */
.legal-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.legal-modal[hidden] { display: none; }
.legal-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 42, 68, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.legal-modal-dialog {
	position: relative;
	z-index: 1;
	background: var(--bg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
	max-width: 680px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: modalIn 0.22s var(--ease) both;
}
@keyframes modalIn {
	from { opacity: 0; transform: translateY(16px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
.legal-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 28px;
	border-bottom: 1px solid var(--border);
	background: var(--navy);
}
.legal-modal-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	margin: 0;
}
.legal-modal-close {
	background: none;
	border: none;
	color: rgba(255,255,255,0.7);
	cursor: pointer;
	padding: 4px;
	display: flex;
	border-radius: var(--radius-sm);
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.legal-modal-close:hover {
	color: #fff;
	background: rgba(255,255,255,0.12);
}
.legal-modal-body {
	overflow-y: auto;
	padding: 28px 32px;
	flex: 1;
	font-size: 0.88rem;
	line-height: 1.9;
	color: var(--text-muted);
}
.legal-modal-body h2 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text);
	margin: 1.6em 0 0.5em;
}
.legal-modal-body p,
.legal-modal-body ul { margin: 0 0 1em; }
.legal-modal-body ul { padding-left: 1.4em; }
.legal-modal-footer {
	padding: 16px 28px;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: flex-end;
	background: var(--bg-alt);
}
body.modal-open { overflow: hidden; }

/* ── Footer ────────────────────────────────────────────── */
#site-footer {
	background: var(--navy);
	color: rgba(255,255,255,0.75);
}
.footer-inner {
	padding: 72px 0 64px;
	border-top: 3px solid var(--primary);
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 56px;
	align-items: start;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-img { height: 36px; }
.footer-brand-desc {
	font-size: 0.88rem;
	line-height: 1.9;
	color: rgba(255,255,255,0.65);
	margin: 0 0 20px;
	max-width: 340px;
}
.footer-address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
	border-left: 2px solid rgba(255,255,255,0.12);
	padding-left: 14px;
	margin-top: 4px;
}
.footer-address a {
	color: rgba(255,255,255,0.5);
	transition: color 0.2s var(--ease);
}
.footer-address a:hover { color: var(--primary-light); }
.footer-col-title {
	display: block;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links {
	list-style: none;
	margin: 0; padding: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
	color: rgba(255,255,255,0.65);
	font-size: 0.88rem;
	transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
	background: rgba(0,0,0,0.18);
	padding: 18px 0;
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-copy { margin: 0; color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: #fff; }

/* ── Pagination ────────────────────────────────────────── */
.pagination { margin-top: 56px; text-align: center; }
.pagination .nav-links {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination a, .pagination .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--radius);
	font-weight: 600;
	font-family: var(--font-en);
}
.pagination a { background: var(--bg-alt); color: var(--text); }
.pagination a:hover { background: var(--primary); color: #fff; }
.pagination .current { background: var(--primary); color: #fff; }

.post-nav { margin-top: 48px; text-align: center; }
.post-thumb { margin: 0 0 32px; border-radius: var(--radius-lg); overflow: hidden; }

/* ── 404 ───────────────────────────────────────────────── */
.section-404 { padding: 140px 0; }
.section-404 .eyebrow {
	font-size: 4rem;
	letter-spacing: 0;
	color: var(--primary);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
	.about-values-row { grid-template-columns: 1fr; gap: 16px; }
	.contact-layout { grid-template-columns: 1fr; gap: 32px; }
	.contact-form-card-header { padding: 28px 24px 24px; }
	.contact-form-card-body { padding: 28px 24px; }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
	.footer-top .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.container { padding: 0 20px; }

	/* 横長ブランドカードをモバイルで縦に戻す */
	.brand-card--wide .brand-card-inner { flex-direction: column; }
	.brand-card--wide .brand-card-inner > .brand-card-thumb { width: 100%; min-width: unset; aspect-ratio: 4 / 3; border-left: none; border-top: 1px solid var(--border); order: 1; }
	.brand-card--wide .brand-card-inner > .brand-card-body { padding: 22px; order: 2; }
	.brand-card--wide .brand-card-title { font-size: 1.1rem; }

	.nav-toggle { display: flex; }
	.nav-actions .lang-switcher,
	.nav-actions .btn-header-cta { display: none; }

	.site-nav {
		position: fixed;
		top: var(--header-h);
		left: 0; right: 0;
		max-height: 0;
		overflow: hidden;
		background: #fff;
		border-top: 1px solid var(--border);
		transition: max-height 0.3s var(--ease);
		flex-direction: column;
		align-items: stretch;
		padding: 0;
	}
	.site-nav.is-open {
		max-height: calc(100vh - var(--header-h));
		overflow-y: auto;
		padding: 16px 20px 28px;
	}
	.nav-menu { flex-direction: column; gap: 0; }
	.nav-menu a { display: block; padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; }

	.nav-mobile-extra { display: block; margin-top: 20px; }
	.nav-mobile-extra .lang-switcher { justify-content: center; margin-bottom: 16px; }

	.hero { min-height: auto; padding: 40px 0; }
	.hero-cta { flex-direction: column; }
	.hero-cta .btn { width: 100%; }
	.hero-stats { gap: 12px; }

	.page-hero { padding: 56px 0; }

	.info-table th, .info-table td { display: block; width: 100%; }
	.info-table th { border-bottom: 0; padding-bottom: 4px; }
	.info-table td { padding-top: 0; padding-bottom: 18px; }

	.footer-top { grid-template-columns: 1fr; gap: 32px; }
	.footer-top .footer-brand { grid-column: unset; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Animation keyframes (used by JS reveal) ──────────── */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ═════════════════════════════════════════════════════════
   Works Page (実績)
   ═════════════════════════════════════════════════════════ */

/* ── グリッド ── */
/* ── フェーズセクション ── */
.works-phase {
	margin-bottom: 72px;
}
.works-phase:last-child {
	margin-bottom: 0;
}
.works-phase-header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.works-phase-period {
	font-family: var(--font-en);
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary);
}
.works-phase-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-muted);
	margin: 0;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.works-grid--3col {
	grid-template-columns: repeat(3, 1fr);
}

/* ── キャリアサマリーバー ── */
.works-stats-bar {
	display: flex;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 40px;
	background: #fff;
}
.works-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
	gap: 4px;
	border-right: 1px solid var(--border);
	text-align: center;
}
.works-stat:last-child { border-right: none; }
.works-stat-value {
	font-family: var(--font-en);
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
}
.works-stat-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* ── カード ── */
.work-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.work-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

/* ── バッジ行 ── */
.work-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

/* カテゴリバッジ */
.work-card-category {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 3px 10px;
	border-radius: 99px;
	font-family: var(--font-en);
	line-height: 1.5;
}
.work-card-category--it    { background: #E8F5E2; color: var(--primary); }
.work-card-category--trade { background: #FEF3E2; color: #C05C00; }
.work-card-category--brand { background: #FDF5E0; color: #92640a; }

/* 法人/個人バッジ */
.work-card-type {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 99px;
	line-height: 1.5;
}
.work-card-type--corp    { background: var(--navy); color: #fff; }
.work-card-type--founder { background: var(--bg-alt2, #e8ecf0); color: var(--navy); }

/* ── タイトル ── */
.work-card-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.5;
	margin: 0;
}

/* ── クライアント行 ── */
.work-card-client {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-size: 0.82rem;
	color: var(--text-muted);
	margin: 0;
	flex-wrap: wrap;
}
.work-card-client-label {
	font-weight: 700;
	color: var(--text-muted);
}
.work-card-year {
	font-family: var(--font-en);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text-muted);
	white-space: nowrap;
	margin-left: auto;
}
.work-card-country {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 99px;
	line-height: 1.5;
	white-space: nowrap;
	margin-left: 0;
}
.work-card-country--kr   { background: #fdecea; color: #c0392b; }
.work-card-country--jp   { background: #eaf1fb; color: #1a5fb4; }
.work-card-country--both { background: #edf7ec; color: #2d7a25; font-weight: 800; }

/* AI バッジ */
.work-card-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 99px;
	line-height: 1.5;
	white-space: nowrap;
}
.work-card-badge--ai { background: #ede9fe; color: #6d28d9; }

/* ── 説明文 ── */
.work-card-lead {
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--text);
	margin: 0;
	flex-grow: 1;
}

/* ── タグ ── */
.work-card-tags {
	margin-top: auto;
}

@media (max-width: 900px) {
	.works-grid { grid-template-columns: 1fr; }
	.works-grid--3col { grid-template-columns: repeat(2, 1fr); }
	.works-stats-bar { flex-wrap: wrap; }
	.works-stat { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
	.works-stat:nth-child(odd) { border-right: 1px solid var(--border); }
	.works-stat:nth-child(even) { border-right: none; }
	.works-stat:last-child, .works-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 600px) {
	.works-grid--3col { grid-template-columns: 1fr; }
	.works-stats-bar { flex-direction: column; }
	.works-stat { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--border); }
	.works-stat:last-child { border-bottom: none; }
}

/* ═════════════════════════════════════════════════════════
   Extended Sections (front-page / about 拡充)
   ═════════════════════════════════════════════════════════ */

/* ── Pillar Cards (3つの事業領域) ──────────────────────── */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.pillar-card {
	display: block;
	padding: 40px 32px 36px;
	background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--text);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar-card::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.4s var(--ease);
}
.pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
	color: var(--text);
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-num {
	display: block;
	font-family: var(--font-en);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--primary);
	margin-bottom: 16px;
}
.pillar-title {
	font-size: 1.45rem;
	color: var(--navy);
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}
.pillar-lead {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.85;
	margin: 0 0 20px;
}
.pillar-link {
	display: inline-block;
	color: var(--primary);
	font-weight: 700;
	font-size: 0.92rem;
	margin-top: 4px;
}

/* ── Why Us Grid ───────────────────────────────────────── */
.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.why-item {
	padding: 32px 28px;
	background: var(--bg);
	border-left: 4px solid var(--primary);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	box-shadow: var(--shadow);
	position: relative;
}
.why-num {
	position: absolute;
	top: 20px; right: 24px;
	font-family: var(--font-en);
	font-size: 2.6rem;
	font-weight: 900;
	color: var(--bg-alt2);
	line-height: 1;
}
.why-title {
	font-size: 1.2rem;
	color: var(--navy);
	margin: 0 0 10px;
	padding-right: 60px;
}
.why-lead {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.85;
	margin: 0;
}

/* ── Process (Stepper) ─────────────────────────────────── */
.process-grid {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.process-item {
	position: relative;
	padding: 28px 24px 24px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.process-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.process-num {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 44px; height: 44px;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	background: var(--primary);
	border-radius: 50%;
	margin-bottom: 16px;
}
.process-title {
	font-size: 1.08rem;
	color: var(--navy);
	margin: 0 0 8px;
}
.process-lead {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin: 0;
}

/* ── Tech Stack ────────────────────────────────────────── */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.tech-group {
	padding: 24px 24px 20px;
	background: var(--bg);
	border-radius: var(--radius);
	border: 1px solid var(--border);
}
.tech-group-label {
	font-family: var(--font-en);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 12px;
}
.tech-list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tech-list li {
	padding: 5px 11px;
	background: var(--bg-alt);
	color: var(--navy);
	font-size: 0.82rem;
	font-weight: 600;
	border-radius: 6px;
	font-family: var(--font-en);
}

/* ── Mission/Vision/Values cards ───────────────────────── */
.mvv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.mvv-card {
	padding: 36px 28px;
	background: var(--bg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.mvv-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: var(--primary);
}
.mvv-card--vision::before { background: var(--navy); }
.mvv-card--value::before  { background: var(--gold); }
.mvv-label {
	font-family: var(--font-en);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--primary);
}
.mvv-card--vision .mvv-label { color: var(--navy); }
.mvv-card--value .mvv-label  { color: var(--gold); }
.mvv-title {
	font-size: 1.4rem;
	color: var(--navy);
	margin: 8px 0 16px;
}
.mvv-text {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.9;
	margin: 0;
}
.mvv-values {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 14px;
}
.mvv-values li {
	display: grid;
	grid-template-columns: 70px 1fr;
	align-items: start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border);
}
.mvv-values li:last-child { border-bottom: 0; }
.mvv-values strong {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 700;
}
.mvv-values span {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ── Header layout fix (overflow / wrap 防止) ──────────── */
.header-inner { gap: 16px; }
.nav-actions  { gap: 12px; flex-shrink: 0; }
.site-nav     { flex: 1; justify-content: center; }
@media (min-width: 769px) and (max-width: 1080px) {
	.nav-menu { gap: 4px; }
	.nav-menu a { padding: 8px 10px; font-size: 0.88rem; }
}

/* WP custom-logo がある場合は SVG ロゴを隠す */
.site-logo .custom-logo + .logo-wrap,
.site-logo .custom-logo-link + .logo-wrap { display: none; }

/* ── Hero stats: 4 列対応 ──────────────────────────────── */
.hero-stats { grid-template-columns: repeat(4, 1fr); }

/* ── Responsive: 拡張セクション ────────────────────────── */
@media (max-width: 1024px) {
	.pillar-grid    { grid-template-columns: 1fr; }
	.process-grid   { grid-template-columns: repeat(2, 1fr); }
	.tech-grid      { grid-template-columns: repeat(2, 1fr); }
	.mvv-grid       { grid-template-columns: 1fr; }
	.why-grid       { grid-template-columns: 1fr; }
	.hero-stats     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.process-grid   { grid-template-columns: 1fr; }
	.tech-grid      { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════
   Business Detail Sections (page-services.php)
   ═════════════════════════════════════════════════════════ */

/* Anchor nav (sticky 直下) */
.biz-anchor-nav {
background: var(--bg);
border-bottom: 1px solid var(--border);
position: sticky;
top: var(--header-h);
z-index: 50;
}
.biz-anchor-nav ul {
list-style: none;
margin: 0; padding: 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.biz-anchor-nav a {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
color: var(--text-muted);
border-bottom: 3px solid transparent;
transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.biz-anchor-nav a:hover {
color: var(--navy);
border-bottom-color: var(--primary);
}
.biz-anchor-num {
font-family: var(--font-en);
font-size: 0.78rem;
font-weight: 800;
color: var(--primary);
letter-spacing: 0.1em;
}
.biz-anchor-title {
font-size: 0.95rem;
font-weight: 700;
color: var(--navy);
}

/* Section wrapper */
.biz-section {
padding: 96px 0;
scroll-margin-top: calc(var(--header-h) + 60px);
}
.biz-section--alt { background: var(--bg-alt); }

/* Head: large number + title */
.biz-head {
display: grid;
grid-template-columns: 120px 1fr;
gap: 32px;
align-items: start;
margin-bottom: 56px;
padding-bottom: 36px;
border-bottom: 1px solid var(--border);
}
.biz-head-num {
font-family: var(--font-en);
font-size: 5.5rem;
font-weight: 900;
line-height: 1;
color: var(--primary);
opacity: 0.9;
letter-spacing: -0.04em;
}
.biz-head-eyebrow {
font-family: var(--font-en);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.18em;
color: var(--primary);
margin: 0 0 8px;
}
.biz-head-title {
font-size: 2.2rem;
color: var(--navy);
margin: 0 0 14px;
letter-spacing: -0.01em;
}
.biz-head-lead {
font-size: 1.05rem;
color: var(--text-muted);
line-height: 1.85;
margin: 0;
}

/* Block label */
.biz-block-label {
display: inline-block;
font-family: var(--font-en);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--primary);
padding-bottom: 8px;
border-bottom: 2px solid var(--primary);
margin: 0 0 24px;
}

/* Overview */
.biz-overview { margin-bottom: 64px; }
.biz-overview-text {
font-size: 1rem;
line-height: 1.95;
color: var(--text);
margin: 0 0 20px;
max-width: 920px;
}
.biz-tags { margin-top: 8px; }

/* Features */
.biz-features { margin-bottom: 64px; }
.biz-features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.biz-feature {
padding: 28px 24px;
background: var(--bg);
border: 1px solid var(--border);
border-top: 3px solid var(--primary);
border-radius: var(--radius);
}
.biz-section--alt .biz-feature { background: #fff; }
.biz-feature-title {
font-size: 1.05rem;
color: var(--navy);
margin: 0 0 10px;
letter-spacing: -0.01em;
}
.biz-feature-lead {
font-size: 0.92rem;
line-height: 1.8;
color: var(--text-muted);
margin: 0;
}

/* Flow timeline */
.biz-flow { margin-bottom: 48px; }
.biz-flow-list {
list-style: none;
margin: 0; padding: 0;
position: relative;
display: grid;
gap: 0;
}
.biz-flow-list::before {
content: '';
position: absolute;
left: 24px; top: 14px; bottom: 14px;
width: 2px;
background: linear-gradient(180deg, var(--primary), var(--primary-light));
opacity: 0.4;
}
.biz-flow-item {
position: relative;
padding: 18px 0 18px 76px;
}
.biz-flow-step {
position: absolute;
left: 0; top: 14px;
width: 50px; height: 50px;
display: inline-flex;
align-items: center;
justify-content: center;
font-family: var(--font-en);
font-size: 0.95rem;
font-weight: 800;
color: #fff;
background: var(--primary);
border-radius: 50%;
box-shadow: 0 4px 12px rgba(63, 165, 53, 0.25);
z-index: 1;
}
.biz-flow-title {
font-size: 1.08rem;
color: var(--navy);
margin: 0 0 6px;
}
.biz-flow-lead {
font-size: 0.92rem;
line-height: 1.8;
color: var(--text-muted);
margin: 0;
}

.biz-cta { text-align: right; margin-top: 32px; }
.biz-cta-link {
	font-size: 0.9rem;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.biz-cta-link:hover { border-bottom-color: var(--primary); }

@media (max-width: 768px) {
.biz-anchor-nav ul { grid-template-columns: 1fr; }
.biz-anchor-nav a  { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.biz-section { padding: 56px 0; }
.biz-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; padding-bottom: 24px; }
.biz-head-num { font-size: 3.5rem; }
.biz-head-title { font-size: 1.6rem; }
.biz-features-grid { grid-template-columns: 1fr; }
.biz-flow-item { padding-left: 60px; }
.biz-flow-step { width: 40px; height: 40px; font-size: 0.85rem; }
.biz-flow-list::before { left: 19px; }
}

/* ===== biz-audience (target customer callouts) ===== */
.biz-audience { margin-top: 56px; }
.biz-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.biz-audience-item {
  display: flex;
  gap: 14px;
  padding: 22px 22px 24px;
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
}
.biz-audience-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.biz-audience-body { flex: 1; min-width: 0; }
.biz-audience-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 700;
}
.biz-audience-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4b5563;
}
@media (max-width: 768px) {
  .biz-audience-grid { grid-template-columns: 1fr; gap: 14px; }
  .biz-audience-item { padding: 18px; }
}

/* ===== tech-group lead (simplified) ===== */
.tech-group-lead {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #4b5563;
}

/* ===== Process: common entry + tracks ===== */
.process-common-list {
  list-style: none;
  margin: 0 auto 48px;
  padding: 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.process-common-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-alt);
  border-radius: 8px;
  border-top: 3px solid var(--primary);
}
.process-common-num {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.05em;
}
.process-common-title {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.process-common-lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4b5563;
}

.process-divider {
  position: relative;
  text-align: center;
  margin: 0 auto 36px;
  max-width: 880px;
}
.process-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}
.process-divider-label {
  position: relative;
  display: inline-block;
  padding: 4px 18px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
}
.section-alt .process-divider-label { background: var(--bg-alt); }

.process-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-track {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.process-track--it     { border-top-color: var(--primary); }
.process-track--trade  { border-top-color: var(--navy); }
.process-track--brands { border-top-color: var(--gold); }

.process-track-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f4;
}
.process-track-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.process-track--trade  .process-track-num { color: var(--navy); }
.process-track--brands .process-track-num { color: var(--gold); }

.process-track-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.process-track-tagline {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.process-track-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-track-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.process-track-step-num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
}
.process-track-step-title {
  margin: 0 0 2px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
}
.process-track-step-lead {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #4b5563;
}

@media (max-width: 980px) {
  .process-tracks { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 600px) {
  .process-common-list { grid-template-columns: 1fr; }
}
