@charset "UTF-8";
/* =========================================================
   INSPIRE Theme — main.css（CSSはこの1ファイルに統合）
   ブランドカラー：ネイビー #16263F ／ アンバー #E8A33D
   系統：ジャパニーズミニマル（余白ゆったり・細い線・柔らかい角丸）
   ========================================================= */

:root {
	--c-navy: #16263F;
	--c-amber: #E8A33D;
	--c-sub1: #3D5A80;
	--c-sub2: #7E94B5;
	--c-text: #333A45;
	--c-text-sub: #5A6577;
	--c-bg: #FFFFFF;
	--c-bg-soft: #F6F8FB;
	--c-line: #DDE4EE;

	--font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-en: "Avenir Next", "Futura", "Helvetica Neue", Arial, sans-serif;

	--radius: 16px;
	--radius-sm: 10px;
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	/* Goodpatch風のなめらかな減速イージング（スクロール演出用） */
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- リセット（最小限） ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	/* iOS横向き時の文字自動拡大を防止 */
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	/* 固定ヘッダー分、アンカー移動位置を下げる */
	scroll-padding-top: calc(var(--header-h) + 16px);
	/* 万一の横はみ出しでも横スクロールを出さない保険 */
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font-ja);
	font-weight: 400;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.04em;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, ol, figure {
	margin: 0;
}

ul, ol {
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

strong {
	font-weight: 700;
	color: var(--c-navy);
}

.u-pc {
	display: none;
}

@media (min-width: 768px) {
	.u-pc {
		display: inline;
	}
}

/* ---------- スキップリンク ---------- */
.skip-link {
	position: absolute;
	top: -48px;
	left: 8px;
	z-index: 200;
	padding: 10px 16px;
	background: var(--c-navy);
	color: #fff;
	border-radius: 0 0 8px 8px;
}

.skip-link:focus {
	top: 0;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--c-line);
}

/* スクロール進捗バー（最上部・アンバー） */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: var(--c-amber);
	z-index: 200;
	pointer-events: none;
}

.admin-bar .scroll-progress {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .scroll-progress {
		top: 46px;
	}
}

/* ログイン時のWordPress管理バー分、固定ヘッダーを下げる（一般公開時は管理バーが無いので影響なし） */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .gnav {
		top: calc(var(--header-h) + 46px);
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1240px;
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

.site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-header__logo img {
	width: 150px;
	height: auto;
}

/* グローバルナビ（PC） */
.gnav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* WordPressメニュー(.menu-item)・フォールバック(.gnav__item)の両方に効くよう、
   .gnav__list 直下の li / a をまとめて指定する */
.gnav__list > li > a {
	display: inline-block;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
	color: var(--c-navy);
	position: relative;
	white-space: nowrap;
}

.gnav__list > li > a:not(.btn)::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: var(--c-amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.gnav__list > li > a:not(.btn):hover::after,
.gnav__list > li > a:not(.btn):focus-visible::after {
	transform: scaleX(1);
}

/* お問い合わせ＝アンバーのCTAボタン（メニュー項目に is-cta クラス／fallbackは gnav__item--cta） */
.gnav__list > li.is-cta,
.gnav__item--cta {
	margin-left: 12px;
}

.gnav__list > li.is-cta > a {
	background: var(--c-amber);
	color: var(--c-navy) !important;
	padding: 11px 26px;
	border-radius: 999px;
	font-weight: 700;
	transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.gnav__list > li.is-cta > a:hover,
.gnav__list > li.is-cta > a:focus-visible {
	background: #d8922c;
	transform: translateY(-2px);
}

.gnav__list > li.is-cta > a::after {
	content: none;
}

/* =========================================================
   メガメニュー（「サービス」ホバー／フォーカスで展開・PC）
   ========================================================= */
.has-megamenu {
	position: relative;
}

.megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: min(360px, 92vw);
	margin-top: 14px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 20px 54px rgba(22, 38, 63, 0.16);
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity 0.32s var(--ease-out),
		transform 0.32s var(--ease-out),
		visibility 0.32s;
	z-index: 60;
}

/* 右側の項目は右寄せにして画面外へのはみ出しを防ぐ */
.megamenu--right {
	left: auto;
	right: 0;
}

/* サービスは2系統のワイド2カラム。項目中央を基準に配置して画面内に収める */
.megamenu--wide {
	left: 50%;
	right: auto;
	width: min(680px, 92vw);
	padding: 26px;
	transform: translateX(-50%) translateY(8px);
}

.has-megamenu:hover .megamenu--wide,
.has-megamenu:focus-within .megamenu--wide {
	transform: translateX(-50%) translateY(0);
}

/* ホバーの「橋」：ナビとパネルの隙間でも閉じない */
.megamenu::before {
	content: "";
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	height: 16px;
}

.has-megamenu:hover .megamenu,
.has-megamenu:focus-within .megamenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.megamenu__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 28px;
}

/* 単一カラムのパネル（ホーム・お知らせ・ブログ・会社概要・採用・お問い合わせ） */
.megamenu__inner--single {
	display: block;
}

.megamenu__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--c-line);
}

.megamenu__list {
	display: grid;
	gap: 4px;
}

.megamenu__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px;
	border-radius: 10px;
	transition: background-color 0.25s var(--ease);
}

.megamenu__list a:hover {
	background: var(--c-bg-soft);
}

.megamenu__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--c-bg-soft);
	color: var(--c-sub1);
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.megamenu__icon svg {
	width: 22px;
	height: 22px;
}

.megamenu__list a:hover .megamenu__icon {
	background: var(--c-navy);
	color: var(--c-amber);
}

.megamenu__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--c-navy);
	line-height: 1.5;
}

.megamenu__desc {
	display: block;
	font-size: 11.5px;
	line-height: 1.6;
	color: var(--c-text-sub);
	margin-top: 2px;
}

.megamenu__foot {
	grid-column: 1 / -1;
	margin-top: 4px;
	padding-top: 14px;
	border-top: 1px solid var(--c-line);
}

.megamenu__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
}

.megamenu__all::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1.5px solid var(--c-amber);
	border-right: 1.5px solid var(--c-amber);
	transform: rotate(45deg);
	transition: transform 0.3s var(--ease);
}

.megamenu__all:hover::after {
	transform: rotate(45deg) translate(2px, -2px);
}

/* 単一カラムパネルの中身 */
.megamenu__links {
	display: grid;
	gap: 2px;
}

.megamenu__links a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--c-navy);
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.megamenu__links a:hover {
	background: var(--c-bg-soft);
	color: var(--c-sub1);
}

.megamenu__posts {
	display: grid;
	gap: 2px;
}

.megamenu__posts a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	transition: background-color 0.25s var(--ease);
}

.megamenu__posts a:hover {
	background: var(--c-bg-soft);
}

.megamenu__posts time {
	display: block;
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--c-sub2);
}

.megamenu__posts span {
	display: block;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--c-navy);
	margin-top: 1px;
}

.megamenu__empty {
	font-size: 13px;
	color: var(--c-text-sub);
	padding: 8px 0 4px;
}

.megamenu__facts {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 16px;
	font-size: 13px;
}

.megamenu__facts dt {
	color: var(--c-text-sub);
	white-space: nowrap;
}

.megamenu__facts dd {
	margin: 0;
	color: var(--c-navy);
	font-weight: 500;
	line-height: 1.6;
}

.megamenu__catch {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	margin-bottom: 8px;
}

.megamenu__lead {
	font-size: 12.5px;
	line-height: 1.8;
	color: var(--c-text-sub);
	margin-bottom: 6px;
}

/* スマホ（ドロワー）ではメガメニューは非表示 */
@media (max-width: 899px) {
	.megamenu {
		display: none;
	}
}

/* ハンバーガー（SP） */
.menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--c-navy);
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle__label {
	font-family: var(--font-en);
	font-size: 9px;
	letter-spacing: 0.12em;
	color: var(--c-text-sub);
}

body.is-drawer-open .menu-toggle__bar:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

body.is-drawer-open .menu-toggle__bar:nth-child(2) {
	transform: translateY(-4px) rotate(-45deg);
}

/* ドロワー表示中は背面（body）のスクロールを止める */
body.is-drawer-open {
	overflow: hidden;
}

@media (max-width: 899px) {
	/* backdrop-filterはfixed子要素（ドロワー）の基準を変えるためSPでは無効化 */
	.site-header {
		background: #fff;
		backdrop-filter: none;
	}

	.menu-toggle {
		display: flex;
	}

	.gnav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		background: var(--c-navy);
		padding: 48px 32px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
		overflow-y: auto;
	}

	body.is-drawer-open .gnav {
		opacity: 1;
		visibility: visible;
	}

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

	.gnav__list > li > a {
		display: block;
		padding: 18px 8px;
		font-size: 16px;
		color: #fff;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.gnav__list > li > a::after {
		content: none;
	}

	.gnav__list > li.is-cta,
	.gnav__item--cta {
		margin: 28px 0 0;
	}

	.gnav__list > li.is-cta > a {
		border-bottom: 0;
		text-align: center;
		background: var(--c-amber);
		color: var(--c-navy) !important;
		border-radius: 999px;
		font-weight: 700;
		transform: none;
	}
}

/* =========================================================
   ボタン・リンク
   ========================================================= */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.6;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--cta {
	background: var(--c-amber);
	color: var(--c-navy) !important;
}

.btn--cta:hover,
.btn--cta:focus-visible {
	background: #d8922c;
	transform: translateY(-2px);
}

.btn--lg {
	padding: 18px 56px;
	font-size: 16px;
}

/* 小さい端末ではCTAボタンを画面幅に追従させ、横はみ出しを防ぐ */
@media (max-width: 420px) {
	.btn--lg {
		display: block;
		width: 100%;
		padding: 18px 24px;
		text-align: center;
	}
}

.btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--c-navy);
}

.link-arrow::after {
	content: "";
	display: inline-block;
	width: 36px;
	height: 8px;
	background:
		linear-gradient(var(--c-amber), var(--c-amber)) right bottom / 100% 1.5px no-repeat,
		linear-gradient(var(--c-amber), var(--c-amber)) right bottom / 10px 1.5px no-repeat;
	transform: skewX(45deg) translateY(-2px);
	transform-origin: right bottom;
	transition: width 0.3s var(--ease);
}

.link-arrow:hover::after {
	width: 48px;
}

/* =========================================================
   セクション共通
   ========================================================= */
.sec {
	padding: 110px 0;
}

@media (max-width: 767px) {
	.sec {
		padding: 72px 0;
	}
}

.sec__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.sec__inner--narrow {
	max-width: 860px;
}

.sec__head {
	margin-bottom: 56px;
}

.sec__foot {
	margin-top: 48px;
	text-align: right;
}

.sec__title {
	font-size: clamp(26px, 4vw, 34px);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.6;
	color: var(--c-navy);
	margin-bottom: 24px;
}

.sec__title--sm {
	font-size: clamp(22px, 3vw, 26px);
	margin-bottom: 0;
}

.sec__lead {
	color: var(--c-text-sub);
}

/* セクションラベル（英字サブラベル＋旗マーカー） */
.sec-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.28em;
	color: var(--c-sub2);
}

.sec-label--center {
	justify-content: center;
}

.sec-label--light {
	color: rgba(255, 255, 255, 0.7);
}

/* 旗マーカー：竿＋アンバーの旗 */
.sec-label__flag {
	position: relative;
	display: inline-block;
	width: 14px;
	height: 18px;
	flex-shrink: 0;
}

.sec-label__flag::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 0;
	width: 2px;
	height: 18px;
	border-radius: 1px;
	background: var(--c-navy);
}

.sec-label--light .sec-label__flag::before {
	background: rgba(255, 255, 255, 0.8);
}

.sec-label__flag::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	border-style: solid;
	border-width: 4.5px 0 4.5px 10px;
	border-color: transparent transparent transparent var(--c-amber);
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
	position: relative;
	min-height: min(86svh, 780px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #FBFBFC;
	padding: calc(var(--header-h) + 48px) 0 96px;
}

/* 背景にうっすら大型ロゴ文字（アウトライン） */
.hero__wm {
	position: absolute;
	right: -30px;
	bottom: -10%;
	z-index: 1;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(140px, 26vw, 340px);
	line-height: 1;
	letter-spacing: 0.02em;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(22, 38, 63, 0.12);
	pointer-events: none;
	user-select: none;
}

/* 左端のアンバー罫 */
.hero__edge {
	position: absolute;
	left: 0;
	top: clamp(96px, 16vh, 200px);
	bottom: clamp(96px, 16vh, 200px);
	width: 4px;
	background: var(--c-amber);
	z-index: 2;
}

/* ドット装飾 */
.hero__dots {
	position: absolute;
	left: clamp(24px, 5vw, 72px);
	bottom: 56px;
	width: 120px;
	height: 54px;
	z-index: 2;
	background-image: radial-gradient(var(--c-sub2) 1.6px, transparent 1.6px);
	background-size: 18px 18px;
	opacity: 0.35;
	pointer-events: none;
}

@media (max-width: 767px) {
	.hero__dots {
		display: none;
	}

	.hero__edge {
		top: 80px;
		bottom: 80px;
	}
}

.hero__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 clamp(24px, 5vw, 72px);
}

.hero__en {
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4em;
	color: var(--c-amber);
	margin-bottom: 22px;
}

.hero__catch {
	font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(38px, 6.4vw, 68px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.46;
	color: var(--c-navy);
}

.hero__rule {
	display: block;
	width: 70px;
	height: 3px;
	background: var(--c-amber);
	margin: 30px 0 24px;
}

.hero__sub {
	font-size: clamp(14px, 1.8vw, 16px);
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.95;
	color: var(--c-text-sub);
}

/* スクロール誘導 */
.hero__scroll {
	position: absolute;
	left: clamp(24px, 5vw, 60px);
	bottom: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

@media (max-width: 767px) {
	.hero__scroll {
		left: auto;
		right: 24px;
	}
}

.hero__scroll-label {
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
	color: var(--c-sub2);
}

.hero__scroll-line {
	position: relative;
	width: 1px;
	height: 72px;
	background: var(--c-line);
	overflow: hidden;
}

.hero__scroll-line::after {
	content: "";
	position: absolute;
	left: 0;
	top: -100%;
	width: 100%;
	height: 100%;
	background: var(--c-amber);
	animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
	0% { top: -100%; }
	55% { top: 0; }
	100% { top: 100%; }
}

/* =========================================================
   ②INSPIREについて
   ========================================================= */
.sec--about {
	text-align: center;
}

.sec--about .sec-label {
	justify-content: center;
}

.about__lead {
	margin-bottom: 36px;
	text-align: left;
}

/* オリジナルイラスト「旗の立つ街」 */
.about-illust {
	max-width: 1040px;
	margin: 56px auto 0;
	padding: 0 24px;
}

.town-illust {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.about-illust {
		margin-top: 36px;
		padding: 0 12px;
	}
}

/* 2事業の句は語の途中で折り返さず、「と、」の区切りで改行する（収まれば1行・入り切らなければ2行） */
.about__clause {
	display: inline;
}

@media (min-width: 768px) {
	.about__clause {
		white-space: nowrap;
	}
}

@media (min-width: 768px) {
	.about__lead {
		text-align: center;
	}
}

/* =========================================================
   ③事業紹介
   ========================================================= */
.sec--service {
	background: var(--c-bg-soft);
}

.pillars {
	display: grid;
	gap: 40px;
}

@media (min-width: 960px) {
	.pillars {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.pillar {
	background: #fff;
	border-radius: var(--radius);
	padding: 44px 40px;
	box-shadow: 0 2px 24px rgba(22, 38, 63, 0.06);
}

@media (max-width: 767px) {
	.pillar {
		padding: 32px 24px;
	}
}

.pillar__head {
	padding-bottom: 28px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--c-line);
}

.pillar__num {
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--c-amber);
}

.pillar__title {
	font-size: clamp(20px, 2.6vw, 24px);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--c-navy);
	margin: 8px 0 14px;
}

.pillar__desc {
	font-size: 14px;
	line-height: 1.9;
	color: var(--c-text-sub);
}

/* サービス行リスト */
.service-list__item + .service-list__item {
	border-top: 1px solid var(--c-line);
}

.service-list__item a {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 4px;
}

.service-list__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--c-bg-soft);
	color: var(--c-sub1);
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.service-list__icon svg {
	width: 26px;
	height: 26px;
}

.service-list__item a:hover .service-list__icon {
	background: var(--c-navy);
	color: var(--c-amber);
}

.service-list__body {
	flex: 1;
	min-width: 0;
}

.service-list__name {
	display: block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	line-height: 1.6;
}

.service-list__desc {
	display: block;
	font-size: 13px;
	line-height: 1.8;
	color: var(--c-text-sub);
	margin-top: 2px;
}

.service-list__arrow {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid var(--c-sub2);
	border-right: 1.5px solid var(--c-sub2);
	transform: rotate(45deg);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-list__item a:hover .service-list__arrow {
	border-color: var(--c-amber);
	transform: rotate(45deg) translate(3px, -3px);
}

/* =========================================================
   ④お知らせ＆ブログ
   ========================================================= */
.posts-grid {
	display: grid;
	gap: 64px;
}

@media (min-width: 960px) {
	.posts-grid {
		grid-template-columns: 1fr 1fr;
		gap: 72px;
	}
}

.posts-block__head {
	margin-bottom: 28px;
}

.posts-block__empty {
	padding: 32px 0;
	color: var(--c-text-sub);
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
	margin-bottom: 28px;
}

.posts-block .link-arrow {
	margin-top: 28px;
}

/* お知らせ：日付＋タイトルの行 */
.news-list {
	border-top: 1px solid var(--c-line);
}

.news-list__item {
	border-bottom: 1px solid var(--c-line);
}

.news-list__item a {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 20px 4px;
}

.news-list__item a:hover .news-list__title {
	color: var(--c-sub1);
}

.news-list__date {
	flex-shrink: 0;
	font-family: var(--font-en);
	font-size: 13px;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
}

.news-list__title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	transition: color 0.3s var(--ease);
}

/* ブログ：サムネイル付き */
.blog-list {
	display: grid;
	gap: 20px;
}

.blog-list__item a {
	display: flex;
	gap: 20px;
	align-items: center;
}

.blog-list__thumb {
	flex-shrink: 0;
	width: 128px;
	aspect-ratio: 8 / 5;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--c-bg-soft);
}

.blog-list__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.blog-list__item a:hover .blog-list__thumb img {
	transform: scale(1.05);
}

.blog-list__noimage {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.blog-list__noimage svg {
	width: 56px;
	opacity: 0.7;
}

.blog-list__date {
	display: block;
	font-family: var(--font-en);
	font-size: 12px;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
}

.blog-list__title {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 4px;
	transition: color 0.3s var(--ease);
}

.blog-list__item a:hover .blog-list__title {
	color: var(--c-sub1);
}

/* =========================================================
   ⑤採用バナー
   ========================================================= */
.recruit-banner {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1B2E4D 0%, var(--c-navy) 60%, #101C30 100%);
	color: #fff;
	text-align: center;
	padding: 96px 24px;
}

.recruit-banner__flag {
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%) rotate(-6deg);
	width: clamp(200px, 26vw, 360px);
	opacity: 0.35;
	pointer-events: none;
}

.recruit-banner__inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.recruit-banner .sec-label {
	justify-content: center;
}

.recruit-banner__catch {
	font-size: clamp(26px, 4.4vw, 40px);
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.6;
	margin-bottom: 18px;
}

.recruit-banner__text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 36px;
}

/* =========================================================
   ⑥CTA（共通パーツ）
   ========================================================= */
.cta {
	background: var(--c-bg-soft);
	padding: 100px 24px;
	text-align: center;
}

.cta__inner {
	max-width: 720px;
	margin: 0 auto;
}

.cta__title {
	font-size: clamp(24px, 3.6vw, 32px);
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--c-navy);
	margin-bottom: 20px;
}

.cta__text {
	color: var(--c-text-sub);
	margin-bottom: 40px;
}

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
	background: var(--c-navy);
	color: #fff;
	padding: 72px 24px 32px;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 48px;
	max-width: 1140px;
	margin: 0 auto 56px;
}

.site-footer__logo img {
	width: 170px;
	height: auto;
}

.site-footer__address {
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 18px;
}

.site-footer__nav {
	display: flex;
	gap: 56px;
}

@media (max-width: 599px) {
	.site-footer__nav {
		gap: 36px;
	}
}

.site-footer__list li + li {
	margin-top: 14px;
}

.site-footer__list a {
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer__list a:hover {
	color: var(--c-amber);
}

.site-footer__copy {
	text-align: center;
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   汎用記事スタイル（index.php フォールバック用・最小限）
   ========================================================= */
.entry__title {
	font-size: clamp(24px, 3.6vw, 32px);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--c-navy);
	margin: var(--header-h) 0 32px;
}

.entry__content > * + * {
	margin-top: 1.4em;
}

/* =========================================================
   スクロール演出（Goodpatch風：なめらかな登場＋時間差）
   ========================================================= */
.js-fade {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 1.1s var(--ease-out),
		transform 1.1s var(--ease-out);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

.js-fade.is-visible {
	opacity: 1;
	transform: none;
	/* 登場完了後はGPUレイヤーのヒントを解放（メモリ占有を残さない） */
	will-change: auto;
}

/* JS無効環境では常に表示 */
.no-js .js-fade {
	opacity: 1;
	transform: none;
}

/* 見出しなどの「マスク立ち上がり」演出（クリップで下から現れる） */
.js-reveal {
	clip-path: inset(0 0 100% 0);
	transform: translateY(8px);
	transition:
		clip-path 1.1s var(--ease-out),
		transform 1.1s var(--ease-out);
	transition-delay: var(--reveal-delay, 0s);
}

.js-reveal.is-visible {
	clip-path: inset(0 0 -10% 0);
	transform: none;
}

.no-js .js-reveal {
	clip-path: none;
	transform: none;
}

/* =========================================================
   ヒーローの動き（ゆっくりズーム＋段階的な登場）
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
	/* 見出し(LCP)は即表示。英字ラベル・罫・サブ・スクロールを時間差でフェードアップ */
	.hero__en,
	.hero__rule,
	.hero__sub,
	.hero__scroll {
		opacity: 0;
		transform: translateY(20px);
		animation: heroIn 1s var(--ease-out) forwards;
	}

	.hero__en { animation-delay: 0.1s; }
	.hero__rule { animation-delay: 0.45s; }
	.hero__sub { animation-delay: 0.55s; }
	.hero__scroll { animation-delay: 0.85s; }

	@keyframes heroIn {
		to { opacity: 1; transform: none; }
	}

	/* 背景のロゴ文字をゆっくり浮かび上がらせる */
	.hero__wm {
		opacity: 0;
		animation: heroWm 1.8s var(--ease-out) 0.3s forwards;
	}

	@keyframes heroWm {
		to { opacity: 1; }
	}
}

/* =========================================================
   数字で見るINSPIRE（カウントアップ）
   ========================================================= */
.stats {
	background: var(--c-navy);
	color: #fff;
	padding: 72px 24px;
}

.stats__inner {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

@media (max-width: 720px) {
	.stats__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px;
	}
}

.stat {
	text-align: center;
	position: relative;
}

.stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -12px;
	top: 50%;
	width: 1px;
	height: 44px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
	.stat:nth-child(2n)::after { content: none; }
}

.stat__num {
	display: inline-flex;
	align-items: baseline;
	font-family: var(--font-en);
	font-weight: 700;
	line-height: 1;
	color: var(--c-amber);
	letter-spacing: 0.02em;
	/* カウントアップ中の桁変動で数字幅が揺れないよう等幅数字に */
	font-variant-numeric: tabular-nums;
}

.stat__value {
	font-size: clamp(40px, 6vw, 60px);
}

.stat__unit {
	font-size: clamp(14px, 2vw, 18px);
	margin-left: 4px;
	color: #fff;
}

.stat__label {
	margin-top: 12px;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   下層ページ共通ヒーロー
   ========================================================= */
.page-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1B2E4D 0%, var(--c-navy) 60%, #101C30 100%);
	color: #fff;
	padding: calc(var(--header-h) + 64px) 24px 64px;
}

.page-hero__flag {
	position: absolute;
	right: -40px;
	bottom: -60px;
	width: clamp(180px, 22vw, 300px);
	opacity: 0.4;
	pointer-events: none;
}

.page-hero__inner {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
}

.page-hero__en {
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--c-amber);
	margin-bottom: 14px;
}

.page-hero__title {
	font-size: clamp(28px, 4.4vw, 42px);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
}

.page-hero__lead {
	margin-top: 18px;
	font-size: clamp(14px, 1.8vw, 16px);
	color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   パンくず
   ========================================================= */
.breadcrumb {
	padding: 20px 0 0;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--c-text-sub);
}

.breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: "";
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--c-sub2);
	border-right: 1px solid var(--c-sub2);
	transform: rotate(45deg);
}

.breadcrumb__item a:hover {
	color: var(--c-sub1);
}

.breadcrumb__item[aria-current="page"] {
	color: var(--c-navy);
	font-weight: 500;
}

/* =========================================================
   サービス一覧
   ========================================================= */
.sec--service-group {
	padding: 84px 0;
}

.sec--service-group:nth-of-type(even) {
	background: var(--c-bg-soft);
}

.service-cards {
	display: grid;
	gap: 24px;
}

@media (min-width: 640px) {
	.service-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 36px 32px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(22, 38, 63, 0.1);
	border-color: transparent;
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--c-bg-soft);
	color: var(--c-sub1);
	margin-bottom: 20px;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.service-card:hover .service-card__icon {
	background: var(--c-navy);
	color: var(--c-amber);
}

.service-card__icon svg {
	width: 30px;
	height: 30px;
}

.service-card__en {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--c-sub2);
}

.service-card__name {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	margin: 6px 0 12px;
}

.service-card__lead {
	font-size: 14px;
	line-height: 1.8;
	color: var(--c-text-sub);
	margin-bottom: 22px;
}

.service-card__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--c-navy);
}

.service-card__arrow {
	width: 7px;
	height: 7px;
	border-top: 1.5px solid var(--c-amber);
	border-right: 1.5px solid var(--c-amber);
	transform: rotate(45deg);
	transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card__arrow {
	transform: rotate(45deg) translate(2px, -2px);
}

/* =========================================================
   サービス個別ページ
   ========================================================= */
.sec--challenge {
	background: var(--c-bg-soft);
}

.challenge-list {
	display: grid;
	gap: 16px;
}

.challenge-list__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 22px 26px;
	box-shadow: 0 2px 16px rgba(22, 38, 63, 0.05);
}

.challenge-list__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-top: 4px;
	border-radius: 50%;
	background: var(--c-amber);
	position: relative;
}

.challenge-list__check::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 5px;
	width: 6px;
	height: 11px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.challenge-list__text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--c-navy);
}

.service-content__summary {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.9;
	color: var(--c-navy);
	margin-bottom: 28px;
}

.service-content__list {
	display: grid;
	gap: 14px;
}

.service-content__list li {
	position: relative;
	padding-left: 28px;
	line-height: 1.9;
}

.service-content__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	border-style: solid;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent var(--c-amber);
}

/* ===== リッチUI演出（カーソル追従ドット／クリック波紋） ===== */
.cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	border: 1.5px solid var(--c-amber);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s, width 0.25s var(--ease), height 0.25s var(--ease), background-color 0.25s;
}
.cursor-dot.is-on {
	opacity: 1;
}
.cursor-dot.is-hover {
	width: 46px;
	height: 46px;
	background: rgba(232, 163, 61, 0.12);
}
/* ネイティブの矢印カーソルを隠して「丸だけ」にする（JSがドットを出した時のみ／タッチ・低モーションは対象外） */
html.has-cursor-dot,
html.has-cursor-dot * {
	cursor: none !important;
}
.click-ripple {
	position: fixed;
	width: 12px;
	height: 12px;
	margin: -6px 0 0 -6px;
	border-radius: 50%;
	background: rgba(232, 163, 61, 0.30);
	pointer-events: none;
	z-index: 9998;
	transform: scale(0);
	animation: clickRipple 0.6s var(--ease-out) forwards;
}
@keyframes clickRipple {
	to {
		transform: scale(8);
		opacity: 0;
	}
}
.is-cta a {
	will-change: transform;
}
@media (pointer: coarse) {
	.cursor-dot,
	.click-ripple {
		display: none !important;
	}
}
@media (prefers-reduced-motion: reduce) {
	.cursor-dot,
	.click-ripple {
		display: none !important;
	}
}

/* 対象（こんな方へ） */
.service-target {
	margin: 0 0 28px;
	padding: 18px 22px;
	background: var(--c-bg-soft);
	border-left: 3px solid var(--c-amber);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.service-target__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--c-amber);
	margin-bottom: 6px;
}
.service-target__text {
	font-size: 15px;
	line-height: 1.9;
	color: var(--c-text);
}

/* 要点チップ */
.service-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
}
.service-points__item {
	font-size: 13px;
	font-weight: 500;
	color: var(--c-navy);
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	padding: 7px 16px;
}

/* 対応エリア・保有資格（設備系） */
.service-meta {
	margin: 26px 0 0;
	display: grid;
	gap: 16px;
}
.service-meta__row {
	display: grid;
	gap: 8px;
}
@media (min-width: 768px) {
	.service-meta__row {
		grid-template-columns: 120px 1fr;
		gap: 16px;
		align-items: start;
	}
}
.service-meta__key {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--c-navy);
	padding-top: 4px;
}
.service-quals {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.service-quals__item {
	font-size: 13px;
	color: var(--c-navy);
	background: var(--c-bg-soft);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	padding: 6px 12px;
}

/* INSPIREならでは（強み） */
.service-strength {
	margin: 30px 0 0;
	padding: 24px 26px;
	background: var(--c-navy);
	border-radius: var(--radius-sm);
	color: #fff;
}
.service-strength__label {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--c-amber);
	margin-bottom: 8px;
}
.service-strength__text {
	font-size: 15px;
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.92);
}

/* 進め方（ステップ） */
.sec--flow {
	background: var(--c-bg-soft);
}

.flow {
	display: grid;
	gap: 20px;
	counter-reset: flow;
}

@media (min-width: 768px) {
	.flow {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}
}

.flow__step {
	position: relative;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 28px 24px;
	box-shadow: 0 2px 16px rgba(22, 38, 63, 0.05);
}

@media (min-width: 768px) {
	.flow__step:not(:last-child)::after {
		content: "";
		position: absolute;
		right: -11px;
		top: 50%;
		width: 9px;
		height: 9px;
		border-top: 2px solid var(--c-sub2);
		border-right: 2px solid var(--c-sub2);
		transform: translateY(-50%) rotate(45deg);
		z-index: 1;
	}
}

.flow__num {
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--c-amber);
}

.flow__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	margin: 8px 0 10px;
}

.flow__text {
	font-size: 13px;
	line-height: 1.8;
	color: var(--c-text-sub);
}

/* FAQ */
.faq {
	display: grid;
	gap: 16px;
}

.faq__item {
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	padding: 24px 28px;
}

.faq__q {
	position: relative;
	padding-left: 36px;
	font-size: 16px;
	font-weight: 700;
	color: var(--c-navy);
	line-height: 1.7;
}

.faq__q::before {
	content: "Q";
	position: absolute;
	left: 0;
	top: -2px;
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 700;
	color: var(--c-amber);
}

.faq__a {
	margin: 12px 0 0;
	padding-left: 36px;
	position: relative;
	font-size: 14px;
	line-height: 1.9;
	color: var(--c-text-sub);
}

.faq__a::before {
	content: "A";
	position: absolute;
	left: 0;
	top: -1px;
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 700;
	color: var(--c-sub2);
}

/* =========================================================
   会社概要
   ========================================================= */
.company-table {
	width: 100%;
	border-collapse: collapse;
}

.company-table th,
.company-table td {
	text-align: left;
	vertical-align: top;
	padding: 22px 4px;
	border-bottom: 1px solid var(--c-line);
	line-height: 1.9;
}

.company-table th {
	width: 28%;
	min-width: 96px;
	font-weight: 700;
	color: var(--c-navy);
	letter-spacing: 0.06em;
}

@media (max-width: 599px) {
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
		padding: 16px 4px;
	}

	.company-table th {
		border-bottom: 0;
		padding-bottom: 4px;
	}

	.company-table tr:first-child th {
		padding-top: 4px;
	}
}

.company-note {
	margin-top: 32px;
	font-size: 13px;
	color: var(--c-text-sub);
}

/* =========================================================
   採用情報
   ========================================================= */
.sec--field {
	background: var(--c-bg-soft);
}

.field-cards {
	display: grid;
	gap: 24px;
}

@media (min-width: 720px) {
	.field-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.field-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 36px 32px;
	box-shadow: 0 2px 20px rgba(22, 38, 63, 0.06);
}

.field-card__title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--c-navy);
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-line);
}

.field-card__text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--c-text-sub);
}

.philosophy__text {
	font-size: clamp(15px, 2vw, 17px);
	line-height: 2.2;
}

/* =========================================================
   フォーム（プレースホルダー & CF7共通スタイル）
   ========================================================= */
.form-intro {
	margin-bottom: 40px;
	line-height: 1.9;
}

.form-intro__note {
	margin-top: 12px;
	font-size: 13px;
	color: var(--c-text-sub);
}

.req {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--c-amber);
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.04em;
	vertical-align: middle;
}

.opt {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--c-text-sub);
	background: var(--c-bg-soft);
	border: 1px solid var(--c-line);
	padding: 1px 8px;
	border-radius: 4px;
	letter-spacing: 0.04em;
	vertical-align: middle;
}

.form-placeholder__notice {
	background: #FFF7EA;
	border: 1px solid #F0D9AE;
	border-radius: var(--radius-sm);
	padding: 18px 22px;
	margin-bottom: 32px;
	font-size: 13px;
	line-height: 1.8;
	color: var(--c-text-sub);
}

/* フォーム本体（プレースホルダー & CF7） */
.cform__row,
.form-area .wpcf7-form p {
	margin-bottom: 24px;
}

.cform__label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-navy);
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}

.cform__input,
.form-area input[type="text"],
.form-area input[type="email"],
.form-area input[type="tel"],
.form-area select,
.form-area textarea {
	width: 100%;
	font-family: inherit;
	/* 16px未満だとiOS Safariが入力フォーカス時に自動ズームするため16pxを維持 */
	font-size: 16px;
	color: var(--c-text);
	background: var(--c-bg-soft);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.cform__input:focus,
.form-area input:focus,
.form-area select:focus,
.form-area textarea:focus {
	outline: none;
	border-color: var(--c-sub1);
	background: #fff;
}

.cform__input:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

textarea.cform__input,
.form-area textarea {
	resize: vertical;
	line-height: 1.8;
}

.cform__row--agree {
	text-align: center;
	margin-top: 32px;
}

.cform__agree {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
}

.cform__agree a {
	color: var(--c-sub1);
	text-decoration: underline;
}

.cform__submit {
	text-align: center;
	margin-top: 32px;
}

.cform__submit .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* =========================================================
   アーカイブ（ブログカード）
   ========================================================= */
.archive-cards {
	display: grid;
	gap: 32px;
}

@media (min-width: 600px) {
	.archive-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 960px) {
	.archive-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.archive-card a {
	display: block;
}

.archive-card__thumb {
	display: block;
	aspect-ratio: 8 / 5;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--c-bg-soft);
	margin-bottom: 16px;
}

.archive-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.archive-card a:hover .archive-card__thumb img {
	transform: scale(1.05);
}

.archive-card__noimage {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.archive-card__noimage svg {
	width: 64px;
	opacity: 0.7;
}

.archive-card__date {
	font-family: var(--font-en);
	font-size: 12px;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
}

.archive-card__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--c-navy);
	margin-top: 6px;
	transition: color 0.3s var(--ease);
}

.archive-card a:hover .archive-card__title {
	color: var(--c-sub1);
}

.news-list--archive {
	border-top: 1px solid var(--c-line);
}

/* ページネーション */
.pagination {
	margin-top: 56px;
}

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

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	font-family: var(--font-en);
	font-size: 14px;
	color: var(--c-navy);
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pagination .page-numbers.current {
	background: var(--c-navy);
	border-color: var(--c-navy);
	color: #fff;
}

.pagination .page-numbers:not(.current):hover {
	border-color: var(--c-sub1);
	color: var(--c-sub1);
}

/* =========================================================
   投稿詳細
   ========================================================= */
.post-single__head {
	padding-bottom: 28px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--c-line);
}

.post-single__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.post-single__date {
	font-family: var(--font-en);
	font-size: 14px;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
}

.post-single__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-sub1);
	background: var(--c-bg-soft);
	padding: 4px 14px;
	border-radius: 999px;
}

.post-single__title {
	font-size: clamp(22px, 3.4vw, 30px);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.6;
	color: var(--c-navy);
}

.post-single__eyecatch {
	margin: 0 0 36px;
	border-radius: var(--radius);
	overflow: hidden;
}

/* 本文（投稿・固定ページ共通の最低限の組版） */
.entry__content {
	line-height: 2;
}

.entry__content > * + * {
	margin-top: 1.4em;
}

.entry__content h2 {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	margin-top: 2em;
	padding-left: 16px;
	border-left: 4px solid var(--c-amber);
}

.entry__content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--c-navy);
	margin-top: 1.8em;
}

.entry__content a {
	color: var(--c-sub1);
	text-decoration: underline;
}

.entry__content img {
	border-radius: var(--radius-sm);
}

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

.entry__content ul {
	list-style: disc;
}

.entry__content ol {
	list-style: decimal;
}

.entry__content blockquote {
	margin: 1.6em 0;
	padding: 16px 24px;
	border-left: 3px solid var(--c-sub2);
	background: var(--c-bg-soft);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--c-text-sub);
}

/* 前後記事ナビ */
.post-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--c-line);
}

@media (max-width: 599px) {
	.post-nav {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.post-nav__item--next {
	text-align: right;
}

@media (max-width: 599px) {
	.post-nav__item--next {
		text-align: center;
	}
}

.post-nav__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--c-sub2);
}

.post-nav__title {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--c-navy);
	margin-top: 4px;
}

.post-nav__item a:hover .post-nav__title {
	color: var(--c-sub1);
}

/* =========================================================
   法務ページ（プライバシーポリシー）
   ========================================================= */
.legal {
	line-height: 2;
}

.legal__h2 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--c-navy);
	margin: 2em 0 0.6em;
}

.legal__list {
	list-style: disc;
	padding-left: 1.4em;
	margin-top: 0.6em;
}

.legal__date {
	margin-top: 2.4em;
	color: var(--c-text-sub);
	font-size: 14px;
}

.legal__check {
	color: #B5651D;
	background: #FFF7EA;
	padding: 1px 8px;
	border-radius: 4px;
	font-size: 13px;
}

/* =========================================================
   404
   ========================================================= */
.error-404 {
	text-align: center;
	line-height: 2;
}

.error-404__actions {
	margin-top: 32px;
}

/* =========================================================
   アクセシビリティ：アニメーション無効化（仕様 6-2）
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.js-fade,
	.js-reveal {
		opacity: 1;
		transform: none;
		clip-path: none;
	}

	.hero__en,
	.hero__catch,
	.hero__rule,
	.hero__sub,
	.hero__scroll,
	.hero__wm {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.hero__scroll-line::after {
		animation: none;
	}
}
