/*
Theme Name: SeeDs Corporate
Theme URI: https://seedsfurusato.net/
Author: SeeDs
Description: SeeDsコーポレートサイト用軽量クラシックテーマ。標準ブロックエディター対応。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seeds-corp
*/

/* ==========================================================
   Design tokens
   ========================================================== */
:root {
	--bg: #faf8f3;
	--bg-alt: #ffffff;
	--bg-tint: #f1ece1;
	--navy: #1f365c;
	--navy-deep: #172a47;
	--ink: #2a2e35;
	--sub: #5d6570;
	--line: #e2dbcc;
	--line-strong: #c9c0ab;
	--gold: #c0962f;
	--gold-deep: #8f6d1f;
	--gold-soft: #f7f0dc;
	--error: #b23a2e;
	--error-soft: #fbecea;
	--success-soft: #eaf3ec;
	--success: #2c5e3f;
	--line-green: #06c755;
	--font-body: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
	--font-head: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", "BIZ UDPMincho", "MS PMincho", serif;
	--container: 1140px;
	--header-h: 76px;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 15.5px;
	line-height: 2;
	color: var(--ink);
	background: var(--bg);
	letter-spacing: 0.02em;
}

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

a {
	color: var(--navy);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4 {
	margin: 0;
	font-weight: 600;
	line-height: 1.6;
}

p {
	margin: 0 0 1.4em;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	overflow-wrap: normal;
}

.screen-reader-text:focus {
	background-color: var(--bg-alt);
	clip: auto !important;
	clip-path: none;
	color: var(--navy);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 14px 20px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100;
}

.skip-link {
	position: absolute;
	top: -48px;
	left: 12px;
	z-index: 100;
	background: var(--navy);
	color: #fff;
	padding: 8px 16px;
	font-size: 13px;
}

.skip-link:focus {
	top: 8px;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4;
	border: 1px solid var(--navy);
	border-radius: 2px;
	color: var(--navy);
	background: transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.btn:hover {
	text-decoration: none;
}

.btn--solid {
	background: var(--navy);
	color: #fff;
}

.btn--solid:hover {
	background: var(--navy-deep);
	border-color: var(--navy-deep);
}

.btn--ghost:hover {
	background: var(--gold-soft);
}

.btn--light {
	background: #fff;
	border-color: #fff;
	color: var(--navy);
}

.btn--light:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
}

.btn--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

.btn--sm {
	padding: 9px 20px;
	font-size: 13.5px;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 248, 243, 0.94);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 4px 18px rgba(31, 54, 92, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: var(--header-h);
}

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

.site-brand:hover {
	text-decoration: none;
}

.site-brand .custom-logo {
	height: 34px;
	width: auto;
}

.site-brand__text {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.06em;
}

.site-brand__text em {
	font-style: normal;
	color: var(--gold-deep);
}

.main-nav {
	margin-left: auto;
}

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

.main-nav__link {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	color: var(--navy);
	white-space: nowrap;
	border-radius: 2px;
}

.main-nav__link:hover {
	background: var(--bg-tint);
	text-decoration: none;
}

.main-nav__link.is-current,
.main-nav__link.current_page_item > a,
.main-nav__link.current-menu-item > a {
	font-weight: 700;
}

.header-cta {
	flex-shrink: 0;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	background: none;
	border: 1px solid var(--navy);
	border-radius: 2px;
	padding: 8px 12px;
	cursor: pointer;
	color: var(--navy);
	font-size: 14px;
	font-family: var(--font-body);
}

.nav-toggle__icon {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.nav-toggle__icon::before {
	top: -6px;
}

.nav-toggle__icon::after {
	top: 6px;
}

/* ==========================================================
   Sections（共通）
   ========================================================== */
.section {
	padding: 88px 0;
}

.section--alt {
	background: var(--bg-alt);
}

.section--tint {
	background: var(--bg-tint);
}

.section--navy {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.9);
}

.section-head {
	margin-bottom: 44px;
}

.section-head__rule {
	width: 36px;
	height: 3px;
	background: var(--gold);
	margin: 0 0 18px;
}

.section-head__title {
	font-family: var(--font-head);
	font-size: 30px;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: 0.03em;
}

.section--navy .section-head__title {
	color: #fff;
}

.section-head__sub {
	margin-top: 14px;
	font-size: 15px;
	color: var(--sub);
}

.section--navy .section-head__sub {
	color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
	padding: 64px 0 84px;
	background: var(--bg);
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: center;
}

.hero__kicker {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 26px;
}

.hero__kicker-rule {
	width: 36px;
	height: 3px;
	background: var(--gold);
}

.hero__kicker-text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--gold-deep);
}

.hero__catch {
	font-family: var(--font-head);
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.8;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: 0.04em;
	margin: 0 0 20px;
}

.hero__sub {
	font-size: 15.5px;
	color: var(--sub);
	margin-bottom: 34px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__photo-frame {
	position: relative;
}

.hero__photo-frame::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 18px;
	right: -18px;
	bottom: -18px;
	border: 1px solid var(--gold);
}

.hero__photo {
	position: relative;
	z-index: 1;
	aspect-ratio: 4 / 5;
	max-height: 560px;
	background: var(--bg-tint);
	border: 1px solid var(--line-strong);
	overflow: hidden;
}

.hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 26%;
}

.photo-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 28px;
	text-align: center;
	color: var(--sub);
	font-size: 13px;
	line-height: 1.8;
}

.photo-placeholder svg {
	width: 44px;
	height: 44px;
	stroke: var(--line-strong);
}

.photo-placeholder strong {
	color: var(--gold-deep);
	font-size: 13px;
}

/* ==========================================================
   About
   ========================================================== */
.about__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: start;
}

.about__message {
	font-family: var(--font-head);
	font-size: 17px;
	line-height: 2.1;
	color: var(--ink);
	border-left: 3px solid var(--gold);
	padding-left: 22px;
	margin: 0 0 28px;
}

.about__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--gold-deep);
	margin-bottom: 10px;
}

.about__caps-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
}

.about__text {
	font-size: 15px;
	color: var(--sub);
}

.about__photo-frame {
	position: relative;
}

.about__photo-frame::before {
	content: "";
	position: absolute;
	top: -18px;
	left: 18px;
	right: -18px;
	bottom: 18px;
	border: 1px solid var(--line-strong);
}

.about__photo {
	position: relative;
	z-index: 1;
	aspect-ratio: 4 / 5;
	max-height: 520px;
	background: var(--bg-tint);
	border: 1px solid var(--line-strong);
	overflow: hidden;
}

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

/* ==========================================================
   Services
   ========================================================== */
.services__list {
	border-top: 1px solid var(--line);
}

.services__row {
	display: grid;
	grid-template-columns: 76px 1fr auto;
	gap: 28px;
	align-items: start;
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
}

.services__num {
	font-family: var(--font-head);
	font-size: 20px;
	color: var(--gold);
	line-height: 1.4;
	padding-top: 2px;
}

.services__name {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 19px;
	font-weight: 700;
	color: var(--navy);
}

.services__name svg {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	stroke: var(--navy);
}

.services__desc {
	margin: 10px 0 0;
	font-size: 14.5px;
	line-height: 1.95;
	color: var(--sub);
	max-width: 720px;
}

.op-chip {
	display: inline-block;
	margin-top: 4px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 5px 12px;
	border-radius: 2px;
	white-space: nowrap;
	line-height: 1.6;
}

.op-chip--partner {
	color: var(--gold-deep);
	border: 1px solid var(--gold);
	background: #fff;
}

.op-chip--own {
	color: #fff;
	background: var(--navy);
	border: 1px solid var(--navy);
}

.services__note {
	margin: 18px 0 0;
	font-size: 12.5px;
	color: var(--sub);
}

/* ==========================================================
   Furusato nozei
   ========================================================== */
.furusato__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.furusato__text p {
	font-size: 15px;
	color: var(--ink);
}

.furusato__text p:first-of-type::first-letter {
	font-size: 1.25em;
	font-weight: 700;
	color: var(--navy);
}

.furusato__role {
	margin-top: 22px;
	padding: 16px 20px;
	background: var(--bg-tint);
	border-left: 3px solid var(--gold);
	font-size: 14px;
	line-height: 1.9;
	color: var(--ink);
}

.furusato__note {
	margin-top: 14px;
	font-size: 12.5px;
	color: var(--sub);
}

.furusato__photo {
	aspect-ratio: 4 / 3;
	background: var(--bg-alt);
	border: 1px solid var(--line-strong);
	padding: 18px;
}

.furusato__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ==========================================================
   News
   ========================================================== */
.section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.section-head--row .section-head {
	margin-bottom: 0;
}

.more-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	padding-bottom: 4px;
	border-bottom: 2px solid var(--gold);
	margin-bottom: 4px;
	white-space: nowrap;
}

.more-link:hover {
	color: var(--gold-deep);
	text-decoration: none;
}

.news__label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--gold-deep);
}

.news__label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}

.news__pinned {
	background: #fffdf6;
	border: 1px solid #eadfc4;
	border-left: 3px solid var(--gold);
	padding: 16px 20px;
	margin-bottom: 12px;
}

.news__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 16px;
	align-items: center;
}

.news__item .news__item {
	grid-column: 2 / -1;
}

.news__pinned .news__item {
	margin: 0;
	padding: 6px 0;
	border: 0;
}

.news__item--list {
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.news__date {
	font-size: 13.5px;
	color: var(--sub);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	line-height: 1.7;
}

.news__title {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ink);
	font-weight: 500;
}

.news__item--list:hover .news__title {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.news__pinned .news__title {
	font-size: 15.5px;
	font-weight: 700;
	color: var(--navy);
}

.news__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin-right: 4px;
}

.news__tag {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--gold-deep);
	background: var(--gold-soft);
	border: 1px solid #e3d3a4;
	border-radius: 2px;
	padding: 1px 8px;
	line-height: 1.7;
	white-space: nowrap;
}

.badge-review,
.badge-sample {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	border-radius: 2px;
	padding: 0 7px;
	line-height: 1.9;
	vertical-align: 1px;
	white-space: nowrap;
}

.badge-review {
	color: var(--gold-deep);
	background: var(--gold-soft);
	border: 1px solid var(--gold);
}

.badge-sample {
	color: #8c5a12;
	background: #fff6e5;
	border: 1px dashed #d9a441;
}

.news__thumb {
	width: 56px;
	height: 56px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid var(--line);
	background: var(--bg-tint);
}

.news__thumb--list {
	width: 64px;
	height: 48px;
}

.news__empty {
	padding: 28px 0;
	font-size: 14.5px;
	color: var(--sub);
	text-align: center;
}

.news__more {
	margin-top: 26px;
	text-align: right;
}

/* ==========================================================
   Company
   ========================================================== */
.company-table {
	border-top: 1px solid var(--line-strong);
	max-width: 860px;
}

.company-table__row {
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.company-table__dt {
	font-size: 14px;
	color: var(--sub);
	line-height: 1.9;
}

.company-table__dd {
	font-size: 15px;
	color: var(--ink);
	line-height: 1.9;
	margin: 0;
}

.company-table__dd a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.company__note {
	max-width: 860px;
	margin: 24px 0 0;
	padding: 16px 20px;
	background: var(--bg-tint);
	border-left: 3px solid var(--gold);
	font-size: 14px;
	line-height: 1.9;
}

/* ==========================================================
   Recruit banner (TOP)
   ========================================================== */
.recruit-banner {
	display: grid;
	grid-template-columns: 1fr 0.92fr;
	gap: 56px;
	align-items: center;
}

.recruit-banner__title {
	font-family: var(--font-head);
	font-size: clamp(20px, 2.4vw, 27px);
	line-height: 1.7;
	color: #fff;
	font-weight: 600;
	margin: 0 0 18px;
}

.recruit-banner__text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 30px;
	max-width: 520px;
}

.recruit-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.recruit-banner__photo {
	aspect-ratio: 4 / 3;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.22);
	overflow: hidden;
}

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

.recruit-banner__photo .photo-placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.recruit-banner__photo .photo-placeholder svg {
	stroke: rgba(255, 255, 255, 0.4);
}

/* ==========================================================
   Contact
   ========================================================== */
.contact__inner {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 64px;
	align-items: start;
}

.contact__lead {
	font-size: 15px;
	color: var(--sub);
}

.contact__line {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.contact__line-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact__line-title svg {
	width: 22px;
	height: 22px;
}

.contact__line-text {
	font-size: 14px;
	color: var(--sub);
	margin-bottom: 16px;
}

.btn--line {
	border-color: var(--line-green);
	color: #075e54;
}

.btn--line:hover {
	background: #eafaf1;
}

.contact__card {
	background: var(--bg-alt);
	border: 1px solid var(--line);
	padding: 40px 36px;
}

/* ==========================================================
   Forms (CF7)
   ========================================================== */
.wpcf7-form {
	margin: 0;
}

.wpcf7-form p {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.7;
}

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

.wpcf7-form label {
	display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
	display: block;
	width: 100%;
	margin-top: 7px;
	padding: 10px 12px;
	font-size: 15px;
	font-family: var(--font-body);
	line-height: 1.7;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line-strong);
	border-radius: 2px;
	transition: border-color 0.2s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	border-color: var(--navy);
	outline: none;
	box-shadow: 0 0 0 3px var(--gold-soft);
}

.wpcf7-form textarea {
	resize: vertical;
	min-height: 140px;
}

.wpcf7-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	vertical-align: -3px;
	accent-color: var(--navy);
}

.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-acceptance {
	display: flex;
	align-items: flex-start;
	font-weight: 400;
	font-size: 13px;
	color: var(--sub);
	line-height: 1.9;
}

.wpcf7-form .wpcf7-checkbox span,
.wpcf7-form .wpcf7-acceptance span {
	flex: 1;
}

.wpcf7-form .wpcf7-not-valid {
	border-color: var(--error);
	box-shadow: 0 0 0 3px var(--error-soft);
}

.wpcf7-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12.5px;
	font-weight: 400;
	color: var(--error);
}

.wpcf7-form .wpcf7-validates-as-required::before,
.wpcf7-form .wpcf7-form-control label .wpcf7-validates-as-required {
	color: var(--error);
}

.wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 44px;
	margin-top: 6px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	font-family: var(--font-body);
	color: #fff;
	background: var(--navy);
	border: 1px solid var(--navy);
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.wpcf7-form .wpcf7-submit:hover {
	background: var(--navy-deep);
}

.wpcf7-response-output {
	margin: 18px 0 0;
	padding: 13px 18px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	border-radius: 2px;
}

.wpcf7-response-output--success {
	background: var(--success-soft);
	border: 1px solid #bcd8c4;
	color: var(--success);
}

.wpcf7-response-output--aborted,
.wpcf7-response-output--invalid,
.wpcf7-response-output--spam,
.wpcf7-response-output--mail_sent_ng {
	background: var(--error-soft);
	border: 1px solid #e7c1ba;
	color: #8c2b21;
}

/* ==========================================================
   Breadcrumb / Page hero
   ========================================================== */
.breadcrumbs {
	font-size: 13px;
	color: var(--sub);
	margin-bottom: 14px;
}

.breadcrumbs a {
	color: var(--sub);
}

.breadcrumbs a:hover {
	color: var(--navy);
}

.breadcrumbs .sep {
	margin: 0 8px;
	color: var(--line-strong);
}

.page-hero {
	background: var(--bg-tint);
	border-bottom: 1px solid var(--line);
	padding: 44px 0 48px;
}

.page-hero__title {
	font-family: var(--font-head);
	font-size: 30px;
	color: var(--navy);
	font-weight: 600;
}

.page-hero__sub {
	margin-top: 12px;
	font-size: 15px;
	color: var(--sub);
}

/* ==========================================================
   News list (home.php)
   ========================================================== */
.news-list {
	padding: 44px 0 72px;
}

.news-list__item {
	display: grid;
	grid-template-columns: 128px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
	align-items: center;
}

.news-list__item:first-child {
	border-top: 1px solid var(--line);
}

.news-list__thumb {
	width: 128px;
	height: 96px;
	object-fit: cover;
	border: 1px solid var(--line);
	background: var(--bg-tint);
}

.news-list__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.news-list__date {
	font-size: 13px;
	color: var(--sub);
	font-variant-numeric: tabular-nums;
}

.news-list__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.7;
}

.news-list__item:hover .news-list__title {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.news-list__excerpt {
	margin: 8px 0 0;
	font-size: 14px;
	color: var(--sub);
	line-height: 1.85;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-list__empty {
	padding: 60px 0;
	text-align: center;
	color: var(--sub);
	font-size: 15px;
}

/* ==========================================================
   Pagination
   ========================================================== */
.pagination {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--navy);
	background: #fff;
	border: 1px solid var(--line-strong);
	border-radius: 2px;
}

.pagination .page-numbers:hover {
	border-color: var(--navy);
	text-decoration: none;
}

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

/* ==========================================================
   Single post
   ========================================================== */
.post-header {
	padding: 48px 0 0;
}

.post-header__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 13.5px;
	color: var(--sub);
}

.post-header__title {
	font-family: var(--font-head);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.7;
	color: var(--navy);
	font-weight: 600;
}

.post-lead {
	margin: 20px 0 0;
	font-size: 14.5px;
	color: var(--sub);
}

.sample-notice {
	margin: 28px 0 0;
	padding: 14px 20px;
	background: #fff6e5;
	border: 1px dashed #d9a441;
	font-size: 13.5px;
	line-height: 1.9;
	color: #7a4d0e;
}

.entry-content {
	margin: 32px auto 0;
	font-size: 15.5px;
	line-height: 2.1;
	color: var(--ink);
	max-width: 820px;
}

.entry-content > * {
	max-width: 820px;
}

.entry-content p {
	margin: 0 0 1.5em;
}

.entry-content h2 {
	font-family: var(--font-head);
	font-size: 22px;
	color: var(--navy);
	margin: 44px 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: calc(var(--header-h) + 56px);
}

.entry-content h3 {
	font-size: 17.5px;
	color: var(--navy);
	margin: 32px 0 14px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em;
	padding-left: 24px;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content img {
	margin: 20px auto;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0 28px;
	font-size: 14.5px;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line-strong);
	padding: 12px 16px;
	text-align: left;
	vertical-align: top;
	line-height: 1.9;
}

.entry-content th {
	background: var(--bg-tint);
	color: var(--navy);
	font-weight: 700;
	width: 180px;
	white-space: nowrap;
}

.post-footer {
	margin: 48px 0 72px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--navy);
}

.back-link::before {
	content: "←";
}

/* ==========================================================
   Recruit page
   ========================================================== */
.recruit-hero {
	background: var(--navy);
	color: #fff;
	padding: 56px 0 60px;
}

.recruit-hero__inner {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.recruit-hero__title {
	font-family: var(--font-head);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.7;
	font-weight: 600;
	margin: 0 0 14px;
}

.recruit-hero__sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.78);
	max-width: 480px;
}

.recruit-hero__photo {
	aspect-ratio: 16 / 9;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.22);
	overflow: hidden;
}

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

.recruit-subnav {
	position: sticky;
	top: var(--header-h);
	z-index: 40;
	background: var(--bg-alt);
	border-bottom: 1px solid var(--line);
}

.recruit-subnav__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.recruit-subnav a {
	display: block;
	padding: 13px 16px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--sub);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}

.recruit-subnav a:hover {
	color: var(--navy);
	border-bottom-color: var(--gold);
	text-decoration: none;
}

.recruit-body {
	padding: 56px 0 40px;
}

.recruit-cta {
	margin: 40px 0 80px;
	padding: 40px;
	background: var(--bg-tint);
	border: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.recruit-cta__title {
	font-family: var(--font-head);
	font-size: 20px;
	color: var(--navy);
	font-weight: 600;
}

.recruit-cta__text {
	font-size: 14px;
	color: var(--sub);
	margin: 6px 0 0;
}

.recruit-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ==========================================================
   404
   ========================================================== */
.error-404 {
	padding: 96px 0 120px;
	text-align: center;
}

.error-404__code {
	font-family: var(--font-head);
	font-size: 84px;
	line-height: 1.2;
	color: var(--gold);
}

.error-404__title {
	font-size: 20px;
	color: var(--navy);
	margin: 18px 0 8px;
}

.error-404__text {
	font-size: 14.5px;
	color: var(--sub);
	margin-bottom: 32px;
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.72);
	font-size: 13.5px;
}

.site-footer__inner {
	padding: 44px 0 36px;
}

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer .custom-logo {
	height: 28px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}

.site-footer__brand-text {
	font-family: var(--font-head);
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
}

.site-footer__nav a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 2;
}

.site-footer__nav a:hover {
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 22px;
}

.site-footer__copy {
	margin: 0;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__privacy a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12.5px;
}

.site-footer__privacy a:hover {
	color: #fff;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1023px) {
	:root {
		--header-h: 64px;
	}

	.main-nav,
	.header-cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.site-header.is-nav-open .main-nav {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg-alt);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 16px 24px rgba(31, 54, 92, 0.1);
	}

	.site-header.is-nav-open .main-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 24px 18px;
	}

	.site-header.is-nav-open .main-nav__link {
		padding: 13px 8px;
		border-bottom: 1px solid var(--line);
		font-size: 15px;
	}

	.site-header.is-nav-open .main-nav__link:last-of-type {
		border-bottom: none;
	}

	.site-header.is-nav-open .header-cta {
		display: block;
		padding: 0 8px 16px;
	}

	.site-header.is-nav-open .header-cta .btn {
		width: 100%;
	}

	.section {
		padding: 64px 0;
	}

	.hero {
		padding: 44px 0 64px;
	}

	.hero__inner,
	.about__inner,
	.furusato__inner,
	.recruit-banner,
	.recruit-hero__inner,
	.contact__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero__photo-frame::before,
	.about__photo-frame::before {
		display: none;
	}

	.hero__photo,
	.about__photo {
		max-height: 480px;
	}

	.hero__photo-frame,
	.about__photo-frame {
		max-width: 460px;
	}

	.services__row {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 26px 0;
	}

	.services__num {
		font-size: 16px;
		padding-top: 0;
	}

	.company-table__row {
		grid-template-columns: 1fr;
		gap: 2px;
		padding: 14px 0;
	}

	.company-table__dt {
		font-size: 13px;
		color: var(--sub);
	}

	.section-head--row {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact__card {
		padding: 28px 22px;
	}

	.news-list__item {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.news-list__thumb {
		width: 100%;
		max-width: 320px;
		height: auto;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 479px) {
	.container {
		padding: 0 18px;
	}

	.hero__actions .btn,
	.recruit-banner__actions .btn {
		width: 100%;
	}

	.news__item {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.news__thumb {
		display: none;
	}

	.news__pinned .news__tags {
		margin: 0;
	}

	.recruit-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 22px;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
