/* ==========================================================================
   Life is テーマ メインスタイル
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン（CSS変数）
   ※ 実サイトのCSSを参照していないため現時点では仮値。本番調整必要。
   -------------------------------------------------------------------------- */
:root {
	/* カラーパレット（ブランドカラー）*/
	--color-primary:    #42B153;
	--color-primary-d:  #379448;
	--color-accent:     #FFA193;
	--color-accent-d:   #FF8273;
	--color-text:       #2b2b2b;
	--color-muted:      #6b6b6b;
	--color-line:       #e5e5e5;
	--color-bg:         #ffffff;
	--color-bg-alt:     #F5F4EA;

	/* TOPパネル用 */
	--corp-bg-color:    #e8f5e9;
	--recruit-bg-color: #fbfbdf;
	--noise-bg:         url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");

	/* アセットパス（WPアップロードベース）*/
	--icon-hand:        url('http://recross-test.com/create/lifeis/wp-content/uploads/2026/03/Group-3701.svg');
	--icon-hand-green:  url('http://recross-test.com/create/lifeis/wp-content/uploads/2026/03/Group-3703.svg');

	/* タイポグラフィ */
	--font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
	--font-en: "Cormorant Garamond", "Times New Roman", serif;

	--fs-xs:   0.75rem;
	--fs-sm:   0.875rem;
	--fs-base: 1rem;
	--fs-md:   1.125rem;
	--fs-lg:   1.5rem;
	--fs-xl:   2rem;
	--fs-xxl:  clamp(2rem, 5vw, 3.5rem);

	--lh-tight:  1.3;
	--lh-normal: 1.7;
	--lh-loose:  1.9;

	/* レイアウト */
	--container-max: 1300px;
	--container-pad: clamp(1rem, 4vw, 2rem);
	--section-pad-y: clamp(3rem, 8vw, 6rem);

	/* ブレークポイント（参照用コメント）
	   モバイル:    ～749px      （ベース）
	   タブレット:  750px～1200px （min-width: 750px）
	   PC:         1201px～     （min-width: 1201px）
	*/

	/* 効果 */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
	--radius-sm: 4px;
	--radius-md: 8px;
	--transition: 0.3s ease;
	--header-h: 64px;  /* モバイル基準。タブレット以上で80pxに上書き */
}

/* --------------------------------------------------------------------------
   2. リセット & ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: var(--fs-base);
	line-height: var(--lh-normal);
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	/* 日本語を文節（単語）単位で改行。禁則処理も強める。
	   auto-phrase 非対応ブラウザ（Firefox等）では normal にフォールバック */
	line-break: strict;
	word-break: auto-phrase;
}

/* 主要なテキスト要素にも明示（body を継承しない/上書きされうる箇所の保険） */
h1, h2, h3, h4, h5, h6,
p, li, a, dd, dt, th, td,
figcaption, blockquote {
	word-break: auto-phrase;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.7; }

button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: var(--lh-tight); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; z-index: 9999;
	clip: auto; width: auto; height: auto; padding: 1rem;
	background: #000; color: #fff;
}

/* --------------------------------------------------------------------------
   3. コンテナ
   -------------------------------------------------------------------------- */
.container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* --------------------------------------------------------------------------
   4. サイトヘッダー
   -------------------------------------------------------------------------- */
.site-header {
	position: relative;
	z-index: 10;
	background: var(--color-bg);
}
/* コンテキスト別ヘッダー背景 */
body.is-corporate .site-header { background: #E8F5E0; }
body.is-recruit   .site-header { background: #F9FFE2; }
/* 2パネルTOPのみ：ヘッダー透過（パネルが背後に見える）。
   固定ページをホームにした場合は home-split が付かないので通常ヘッダーになる */
body.home-split .site-header {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.site-header__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: var(--header-h);
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* ロゴ：白カード＋右下角丸（ノッチ） */
.site-logo {
	background: #fff;
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.5rem 0.5rem clamp(1rem, 3vw, 2rem);
	border-radius: 0 0 24px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.site-logo img { max-height: 36px; width: auto; }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem clamp(1rem, 3vw, 2rem) 0.75rem 0;
}

/* ピンクのピル型「求職者の方はこちら」ボタン */
.header-switch-link {
	padding: 0.6rem 1.25rem;
	background: var(--color-accent);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: 500;
	border-radius: 999px;
	transition: background var(--transition), transform var(--transition);
	white-space: nowrap;
}
.header-switch-link:hover {
	background: var(--color-accent-d);
	opacity: 1;
	transform: translateY(-1px);
}
/* 求職者エリアでは緑のピル型に切替（企業側へのリンク） */
.is-recruit .header-switch-link {
	background: var(--color-primary);
}
.is-recruit .header-switch-link:hover {
	background: var(--color-primary-d);
}

/* TOPページのスマホ時：ヘッダーの切替ボタンを非表示（ハンバーガーのみ表示） */
@media (max-width: 749px) {
	body.home .site-header__actions .header-switch-link {
		display: none;
	}
}

/* TOPページ等で複数並べる場合のモディファイア */
.header-switch-link--rec {
	background: var(--color-accent);
}
.header-switch-link--rec:hover {
	background: var(--color-accent-d);
}
.header-switch-link--corp {
	background: var(--color-primary);
}
.header-switch-link--corp:hover {
	background: var(--color-primary-d);
}

/* 緑の丸型ハンバーガー */
.hamburger {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: background var(--transition);
}
.hamburger:hover { background: var(--color-primary-d); }
.hamburger__bar {
	width: 20px;
	height: 2px;
	background: #fff;
	transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. ナビゲーションドロワー（上から下へドロップダウン / 80vh + 下20vhブラー）
   -------------------------------------------------------------------------- */
.nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 92vh;
	z-index: 100;
	background: #fff;
	transform: translateY(-100%);
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.45s;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	visibility: hidden;
	display: flex;
	flex-direction: column;
}
.nav-drawer.is-open {
	transform: translateY(0);
	visibility: visible;
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s;
}

/* 下20vhのブラー領域 */
.nav-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 8vh;
	z-index: 90;
	background: rgba(50, 50, 50, 0.35);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0s linear 0.4s;
	cursor: pointer;
}
.nav-backdrop.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.4s ease, visibility 0s linear 0s;
}

/* 背景パネルは使わず、スマホはカラム／PCはドロワー本体に背景を持たせる
   （絶対配置だとスクロール時に背景が途中で切れるため） */
.nav-drawer__panels {
	display: none !important;
}

/* PC：ドロワー本体（スクロールコンテナ）に背景を付与 → 全高を確実に塗りつぶす */
@media (min-width: 750px) {
	.nav-drawer--corp {
		background-color: var(--corp-bg-color);
		background-image: var(--noise-bg);
		background-size: 200px;
	}
	.nav-drawer--recruit {
		background-color: var(--recruit-bg-color);
		background-image: var(--noise-bg);
		background-size: 200px;
	}
	.nav-drawer--both {
		background-color: var(--corp-bg-color);
		background-image: var(--noise-bg),
			linear-gradient(to right, var(--corp-bg-color) 0 50%, var(--recruit-bg-color) 50% 100%);
		background-size: 200px, 100% 100%;
		background-repeat: repeat, no-repeat;
	}
}

/* 上部バー（ロゴ左・CLOSE右） */
.nav-drawer__top {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	padding: 0 var(--container-pad) 0 0;
	min-height: var(--header-h);
}
.nav-drawer__logo {
	/* .site-logo を継承（白カード + ノッチ） */
}
.nav-drawer__label {
	text-align: center;
	font-family: var(--font-jp);
	font-size: var(--fs-lg);
	letter-spacing: 0.4em;
	color: var(--color-primary);
	font-weight: 700;
	margin: 0;
}
.nav-drawer__close {
	font-size: var(--fs-sm);
	letter-spacing: 0.1em;
	color: #fff;
	padding: 0.5rem 0.95rem;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 6px;
	font-weight: 600;
	white-space: nowrap;
}
.nav-drawer__close:hover { opacity: 0.85; background: rgba(0, 0, 0, 0.6); }

/* カラム本体（スマホ：縦積み・カラムに直接背景色／PC：2カラムグリッド + 絶対背景パネル） */
.nav-drawer__content {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	width: 100%;
}
/* スマホ：企業=緑 / 求職者=黄 をカラムに直接適用（コンテンツの高さに追従） */
.nav-drawer__col--corp {
	background-color: var(--corp-bg-color);
	background-image: var(--noise-bg);
	background-size: 200px;
}
.nav-drawer__col--recruit {
	background-color: var(--recruit-bg-color);
	background-image: var(--noise-bg);
	background-size: 200px;
}
/* 最後のカラムが余白を埋めて下まで色が続くように */
.nav-drawer__content > .nav-drawer__col:last-child {
	flex: 1 0 auto;
}

@media (min-width: 750px) {
	.nav-drawer__content {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem var(--container-pad) 2.5rem;
		max-width: var(--container-max);
		margin-inline: auto;
	}
	/* PCでは背景は絶対パネルが担当するのでカラムは透明に戻す */
	.nav-drawer__col--corp,
	.nav-drawer__col--recruit {
		background: none;
	}
	.nav-drawer--both .nav-drawer__content {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 6vw, 5rem);
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.nav-drawer--single .nav-drawer__content {
		max-width: 600px;
		padding-top: 3rem;
		padding-bottom: 3rem;
		justify-items: center;
	}
}

.nav-drawer__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	/* スマホ：カラムに左右余白と上下余白（背景色がここに乗る） */
	padding: 2rem var(--container-pad);
}
@media (min-width: 750px) {
	.nav-drawer__col {
		padding: 0;
	}
}

/* 大型ピル CTA（テキスト中央寄せ・矢印は右に絶対配置） */
.nav-drawer__cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 320px;
	padding: 0.95rem 3.25rem;
	border-radius: 999px;
	font-size: var(--fs-md);
	font-weight: 700;
	color: #fff;
	box-sizing: border-box;
	transition: transform var(--transition), box-shadow var(--transition);
}
.nav-drawer__cta:hover {
	opacity: 1;
	transform: translateY(-2px);
}
.nav-drawer__cta--corp {
	background: var(--color-primary);
	box-shadow: 0 6px 16px rgba(66, 177, 83, 0.3);
}
.nav-drawer__cta--corp:hover {
	background: var(--color-primary-d);
	box-shadow: 0 8px 20px rgba(66, 177, 83, 0.4);
}
.nav-drawer__cta--recruit {
	background: var(--color-accent);
	box-shadow: 0 6px 16px rgba(255, 161, 147, 0.35);
}
.nav-drawer__cta--recruit:hover {
	background: var(--color-accent-d);
	box-shadow: 0 8px 20px rgba(255, 161, 147, 0.45);
}
.nav-drawer__cta-arrow {
	position: absolute;
	right: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fs-sm);
	flex-shrink: 0;
}
.nav-drawer__cta--corp .nav-drawer__cta-arrow    { color: var(--color-primary); }
.nav-drawer__cta--recruit .nav-drawer__cta-arrow { color: var(--color-accent); }

/* ドット区切りリスト */
.nav-drawer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 360px;
}
.nav-drawer__list li {
	border-bottom: 2px dotted rgba(0, 0, 0, 0.18);
}
.nav-drawer__list li:last-child {
	border-bottom: none;
}
.nav-drawer__list a {
	display: block;
	padding: 0.9rem 0.25rem;
	text-align: center;
	font-size: var(--fs-base);
	color: var(--color-text);
	font-weight: 500;
}
.nav-drawer__list a:hover { color: var(--color-primary); opacity: 1; }

/* 無料相談CTA（メニュー下部・検索の上） */
.nav-drawer__contact {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 1.25rem var(--container-pad) 0.25rem;
	text-align: center;
}
.nav-drawer__contact-btn {
	font-size: var(--fs-md);
}

/* 検索バー（白帯の上に配置） */
.nav-drawer__search {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 1rem var(--container-pad);
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.04);
}
.nav-drawer__search-form {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}
.nav-drawer__search-input {
	width: 100%;
	padding: 0.85rem 3rem 0.85rem 1.5rem;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	font-size: var(--fs-sm);
	background: #fff;
	font-family: inherit;
	color: var(--color-text);
	outline: none;
	transition: border-color var(--transition);
}
.nav-drawer__search-input:focus {
	border-color: var(--color-primary);
}
.nav-drawer__search-btn {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-muted);
	border-radius: 50%;
}
.nav-drawer__search-btn:hover { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   6. サイトフッター
   -------------------------------------------------------------------------- */
.site-footer-wrap {
	background: #ECECEC;
	padding: clamp(2rem, 4vw, 3rem) clamp(0.75rem, 2vw, 2rem);
	margin-top: clamp(3rem, 6vw, 5rem);
}

.site-footer {
	background: var(--color-primary);
	color: #fff;
	border-radius: 32px;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem);
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 750px) {
	.site-footer {
		grid-template-columns: 1fr auto 1fr;
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.site-footer__col--left {
	text-align: left;
}
.site-footer__tagline {
	font-size: var(--fs-sm);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}
.site-footer__logo img {
	max-height: 90px;
	width: auto;
}

/* 縦の点線ディバイダー（タブレット以上のみ） */
.site-footer__divider {
	display: none;
}
@media (min-width: 750px) {
	.site-footer__divider {
		display: block;
		width: 1px;
		min-height: 160px;
		background-image: linear-gradient(180deg, rgba(255,255,255,0.5) 50%, transparent 50%);
		background-size: 1px 10px;
		background-repeat: repeat-y;
	}
}

.site-footer__col--right {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.site-footer__company {
	font-weight: 700;
	font-size: var(--fs-md);
	margin-bottom: 0.5rem;
}
.site-footer__address,
.site-footer__tel {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	margin: 0;
}

.site-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}
.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	color: #fff;
	transition: transform var(--transition), filter var(--transition);
}
.site-footer__social-link:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
	opacity: 1;
}
.site-footer__social-link svg { width: 20px; height: 20px; }

/* ブランドカラー */
.site-footer__social-link--line      { background: #06C755; }
.site-footer__social-link--youtube   { background: #FF0000; }
.site-footer__social-link--facebook  { background: #1877F2; }
.site-footer__social-link--instagram {
	background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

/* コピーライト（緑カード外） */
.site-footer__copy {
	margin: 1.5rem 0 0;
	text-align: center;
	font-size: var(--fs-xs);
	color: var(--color-text);
}

/* --------------------------------------------------------------------------
   7. Back to top
   -------------------------------------------------------------------------- */
.back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	width: 48px;
	height: 48px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
	z-index: 50;
}
.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* --------------------------------------------------------------------------
   8. 共通セクション
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-pad-y); }
.section--alt { background: var(--color-bg-alt); }

.section-label {
	font-family: var(--font-en);
	font-size: var(--fs-md);
	letter-spacing: 0.3em;
	color: var(--color-accent);
	text-transform: lowercase;
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: var(--fs-xl);
	margin-bottom: 2rem;
}

/* CTAボタン */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2.5rem;
	background: var(--color-primary);
	color: #fff;
	font-weight: 500;
	border-radius: 999px;
	transition: background var(--transition), transform var(--transition);
}
.btn:hover { background: var(--color-primary-d); transform: translateY(-2px); opacity: 1; }
.btn--outline {
	background: var(--color-primary);
	color: #fff;
	border: 1px solid var(--color-primary);
}
.btn--accent { background: var(--color-accent); color: #fff; }

/* --------------------------------------------------------------------------
   9. レスポンシブ（モバイルファースト共通）
   ベース = モバイル（～749px）に準拠
   min-width: 750px = タブレット以上
   min-width: 1201px = PC
   -------------------------------------------------------------------------- */

/* タブレット以上 */
@media (min-width: 750px) {
	:root { --header-h: 80px; }

	.site-logo img { max-height: 48px; }
	.header-switch-link {
		padding: 0.6rem 1.2rem;
		font-size: var(--fs-sm);
	}
	.site-footer__social { flex-wrap: nowrap; }
}

/* ==========================================================================
   セクション別スタイル（Phase 2: front-page / servicetop / recruit）
   ========================================================================== */

/* --------------------------------------------------------------------------
   10. Hero Split（TOPページ 2分割パネル）
   ※Elementor方式：パネルがヘッダーの背後に回り込む構造
   -------------------------------------------------------------------------- */
.hero-split {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 0 var(--container-pad) clamp(2rem, 5vw, 4rem);
	max-width: var(--container-max);
	margin-inline: auto;
}
/* body.home の場合のみ、ヘッダー分上にずらして背後に潜らせる */
body.home .hero-split {
	margin-top: 0;
	/* ヘッダーが absolute なので、パネルは自然と上から始まる */
}
/* スマホ：先頭パネルのテキストが透過ヘッダーと重ならないよう上部に余白 */
@media (max-width: 749px) {
	body.home .hero-split > .hero-panel:first-child {
		justify-content: flex-start;
		padding-top: 6.5rem;
	}
}

.hero-panel {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	padding: clamp(3rem, 5vw, 5rem) 2rem;
	text-align: center;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: none;
	min-height: 60vh;
}
.hero-panel:hover {
	opacity: 1; /* override default a:hover */
}

.hero-panel--corp {
	background-color: var(--corp-bg-color);
	background-image: var(--noise-bg);
}
.hero-panel--rec {
	background-color: var(--recruit-bg-color);
	background-image: var(--noise-bg);
}

.hero-panel__label {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: 0.04em;
}
.hero-panel__sub {
	font-size: var(--fs-md);
	margin-bottom: 2rem;
}

.hero-panel__box {
	background: #fff;
	border: 1px solid var(--color-text);
	border-radius: 200px;
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hero-panel__bullets {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0 auto 1.75rem;
	text-align: left;
	width: max-content;
	max-width: 100%;
}
.hero-panel__bullets li {
	font-size: var(--fs-md);
	font-weight: 500;
	padding: 0.25rem 0 0.25rem 1.75rem;
	background-image: var(--icon-hand);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 1.1em auto;
}

.hero-panel__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1.5rem 0.9rem 1.75rem;
	border-radius: 999px;
	font-size: var(--fs-md);
	font-weight: 700;
	color: #fff !important;
	transition: transform var(--transition), filter var(--transition);
}
.hero-panel__cta--corp  { background: var(--color-primary); }
.hero-panel__cta--rec   { background: var(--color-accent); }

.hero-panel:hover .hero-panel__cta {
	filter: brightness(1.05);
	transform: translateX(2px);
}

/* CTA内の白丸＋矢印 */
.hero-panel__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 50%;
	color: var(--color-primary);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}
.hero-panel__cta--rec .hero-panel__cta-icon { color: var(--color-accent); }

/* タブレット以上：横並び */
@media (min-width: 750px) {
	.hero-split {
		grid-template-columns: 1fr 1fr;
	}
	.hero-panel {
		min-height: auto;
		aspect-ratio: 1 / 1;
	}
}

/* PC：余裕を持たせる */
@media (min-width: 1201px) {
	.hero-split {
		padding: 0 var(--container-pad) 4rem;
	}
	.hero-panel {
		/* PCでも正方形維持 */
		aspect-ratio: 1 / 1;
	}
}

/* --------------------------------------------------------------------------
   11. Page Hero（下層ページのヒーロー）
   -------------------------------------------------------------------------- */
.page-hero {
	padding-block: clamp(3rem, 8vw, 6rem);
	background: linear-gradient(135deg, var(--color-bg-alt), #fff);
}
.page-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
.page-hero__title {
	font-size: var(--fs-xxl);
	line-height: var(--lh-tight);
	margin-bottom: 1.5rem;
	color: var(--color-primary);
}
.page-hero__sub {
	font-size: var(--fs-md);
	color: var(--color-muted);
	margin-bottom: 2rem;
	line-height: var(--lh-loose);
}
.page-hero__cta { margin-top: 1rem; }
.page-hero__image img {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	aspect-ratio: 4/3;
	object-fit: cover;
}

@media (min-width: 750px) {
	.page-hero__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* --------------------------------------------------------------------------
   12. Brand Section
   -------------------------------------------------------------------------- */
.brand-section {
	padding-block: clamp(4rem, 10vw, 8rem);
	text-align: center;
	background:
		radial-gradient(ellipse at top, rgba(201, 169, 97, 0.08), transparent 60%),
		var(--color-bg);
}
.brand-section__tagline {
	font-family: var(--font-en);
	font-style: italic;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	color: var(--color-primary);
	margin-bottom: 2rem;
	line-height: 1.4;
}
.brand-section__tagline-line { display: block; }
.brand-section__heading {
	font-size: var(--fs-xl);
	margin-bottom: 1rem;
	color: var(--color-text);
}
.brand-section__subtitle {
	font-family: var(--font-en);
	font-style: italic;
	color: var(--color-muted);
	font-size: var(--fs-md);
}

/* --------------------------------------------------------------------------
   13. About Section
   -------------------------------------------------------------------------- */
.about-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
.about-section__body {
	font-size: var(--fs-base);
	line-height: var(--lh-loose);
}
.about-section__body p { margin-bottom: 1rem; }
.about-section__image img {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

@media (min-width: 750px) {
	.about-section__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* --------------------------------------------------------------------------
   14. Service Section
   -------------------------------------------------------------------------- */
.service-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.service-card {
	background: #fff;
	padding: 2.5rem 2rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__number {
	font-family: var(--font-en);
	font-size: var(--fs-xl);
	color: var(--color-accent);
	margin-bottom: 0.5rem;
	line-height: 1;
}
.service-card__title {
	font-size: var(--fs-lg);
	margin-bottom: 1rem;
	color: var(--color-primary);
}
.service-card__text {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-muted);
	margin-bottom: 1.5rem;
}
.service-card__more {
	font-size: var(--fs-sm);
	color: var(--color-primary);
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   15. Reason Section
   -------------------------------------------------------------------------- */
.reason-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.reason-card {
	background: var(--color-bg-alt);
	padding: 2rem;
	border-radius: var(--radius-md);
}
.reason-card__number {
	font-family: var(--font-en);
	font-size: 2rem;
	color: var(--color-accent);
	margin-bottom: 1rem;
	line-height: 1;
}
.reason-card__image {
	margin-bottom: 1.5rem;
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.reason-card__image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.reason-card__text {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
}

/* --------------------------------------------------------------------------
   16. Step Section (求職者向け)
   -------------------------------------------------------------------------- */
.step-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.step-card {
	background: #fff;
	padding: 2rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	position: relative;
	transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--color-accent); }
.step-card__link { display: block; color: inherit; }
.step-card__link:hover { opacity: 1; }
.step-card__number {
	font-family: var(--font-en);
	font-size: var(--fs-sm);
	letter-spacing: 0.2em;
	color: var(--color-accent);
	text-transform: lowercase;
	margin-bottom: 0.5rem;
}
.step-card__title {
	font-size: var(--fs-lg);
	color: var(--color-primary);
	margin-bottom: 1rem;
}
.step-card__text {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   17. Support Section (サポート内容)
   -------------------------------------------------------------------------- */
.support-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.support-card {
	background: #fff;
	padding: 2rem 1.5rem;
	text-align: center;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}
.support-card__number {
	font-family: var(--font-en);
	font-size: var(--fs-xl);
	color: var(--color-accent);
	margin-bottom: 0.75rem;
	line-height: 1;
}
.support-card__title {
	font-size: var(--fs-base);
	color: var(--color-primary);
	line-height: var(--lh-tight);
}

/* --------------------------------------------------------------------------
   18. Voice Pickup
   -------------------------------------------------------------------------- */
.voice-pickup__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.voice-card {
	display: block;
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	color: inherit;
}
.voice-card:hover {
	opacity: 1;
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.voice-card__thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.voice-card__body { padding: 1.5rem; }
.voice-card__meta {
	font-size: var(--fs-sm);
	color: var(--color-muted);
	margin-bottom: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.voice-card__quote {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.voice-pickup__more {
	text-align: center;
	margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   19. Latest Posts
   -------------------------------------------------------------------------- */
.latest-posts {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: var(--color-bg-alt);
}
.latest-posts__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 720px;
	margin-inline: auto;
}
.latest-posts__item {
	border-bottom: 1px solid var(--color-line);
}
.latest-posts__link {
	display: flex;
	gap: 1.5rem;
	padding: 1rem 0.5rem;
	align-items: baseline;
	flex-wrap: wrap;
}
.latest-posts__date {
	font-family: var(--font-en);
	font-size: var(--fs-sm);
	color: var(--color-accent);
	min-width: 8em;
	letter-spacing: 0.05em;
}
.latest-posts__title {
	flex: 1;
	font-size: var(--fs-base);
	color: var(--color-text);
}

/* --------------------------------------------------------------------------
   20. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
	padding-block: clamp(3rem, 6vw, 5rem);
	background:
		linear-gradient(135deg, var(--color-primary), var(--color-primary-d));
	color: #fff;
	text-align: center;
}
.cta-section .section-label { color: var(--color-accent); margin-bottom: 1.5rem; }
.cta-section__btn {
	background: var(--color-accent);
	color: #fff;
	padding: 1.2rem 3rem;
	font-size: var(--fs-md);
}
.cta-section__btn:hover { background: var(--color-accent-d); color: #fff; opacity: 1; }

/* --------------------------------------------------------------------------
   21. Job Info Section
   -------------------------------------------------------------------------- */
.job-info-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.job-card {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	transition: border-color var(--transition), transform var(--transition);
}
.job-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.job-card a {
	display: block;
	padding: 1.5rem;
	color: inherit;
}
.job-card a:hover { opacity: 1; }
.job-card__title {
	font-size: var(--fs-md);
	margin-bottom: 0.75rem;
	color: var(--color-primary);
}
.job-card__company {
	font-size: var(--fs-sm);
	color: var(--color-muted);
	margin-bottom: 0.25rem;
}
.job-card__location {
	font-size: var(--fs-xs);
	color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   22. Post List (index.php)
   -------------------------------------------------------------------------- */
.post-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.post-card {
	display: block;
	color: inherit;
}
.post-card:hover { opacity: 1; }
.post-card__thumb {
	overflow: hidden;
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
}
.post-card__thumb img {
	aspect-ratio: 16/9;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__date {
	font-family: var(--font-en);
	font-size: var(--fs-sm);
	color: var(--color-accent);
	display: block;
	margin-bottom: 0.5rem;
}
.post-card__title {
	font-size: var(--fs-base);
	color: var(--color-text);
	line-height: var(--lh-normal);
}

.pagination {
	margin-top: 3rem;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 0.25rem;
	padding: 0 0.75rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	transition: background var(--transition), color var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	opacity: 1;
}

/* --------------------------------------------------------------------------
   23. Article (page.php)
   -------------------------------------------------------------------------- */
.page-article__header { margin-bottom: 3rem; text-align: center; }
.page-article__content {
	max-width: 800px;
	margin-inline: auto;
	line-height: var(--lh-loose);
}
.page-article__content h2 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-size: var(--fs-lg);
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--color-accent);
}
.page-article__content h3 {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-size: var(--fs-md);
	color: var(--color-primary);
}
.page-article__content p { margin-bottom: 1.25rem; }
.page-article__content ul,
.page-article__content ol {
	margin: 1rem 0 1.5rem 1.5rem;
}
.page-article__content ul { list-style: disc; }
.page-article__content ol { list-style: decimal; }
.page-article__content a {
	color: var(--color-primary);
	text-decoration: underline;
}

/* ==========================================================================
   セクション別スタイル（Phase 3: message / company / service / blog / voice / job）
   ========================================================================== */

/* --------------------------------------------------------------------------
   24. Message Section（代表メッセージ）
   -------------------------------------------------------------------------- */
.message-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 2rem;
}
.message-section__photo img {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	aspect-ratio: 3/4;
	object-fit: cover;
}
.message-section__name {
	margin-top: 1rem;
	font-weight: 700;
	font-size: var(--fs-md);
	color: var(--color-primary);
	text-align: center;
}
.message-section__body {
	font-size: var(--fs-base);
	line-height: var(--lh-loose);
}
.message-section__body p { margin-bottom: 1.25rem; }

@media (min-width: 750px) {
	.message-section__inner {
		grid-template-columns: 360px 1fr;
		gap: 4rem;
		align-items: start;
	}
}

/* リード文 */
.message-section__lead {
	font-size: var(--fs-md);
	line-height: var(--lh-loose);
	color: var(--color-text);
	margin: 1rem 0 2rem;
	max-width: 800px;
}

/* 役職・氏名 */
.message-section__position {
	display: block;
	font-size: var(--fs-sm);
	color: var(--color-muted);
	font-weight: 500;
	margin-bottom: 0.25rem;
}
.message-section__person {
	display: block;
	font-size: var(--fs-md);
	color: var(--color-primary);
	font-weight: 700;
}

/* 経営理念 / ビジョン / ミッション / 追加セクション 共通 */
.message-blocks {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
	margin-top: clamp(2.5rem, 6vw, 4rem);
}
.message-block {
	background: #fff;
	border-radius: 16px;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--color-primary);
}
.message-block__heading {
	font-size: var(--fs-lg);
	color: var(--color-primary);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
}
.message-block__body {
	font-size: var(--fs-base);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.message-block__body p { margin-bottom: 1rem; }
.message-block__body p:last-child { margin-bottom: 0; }

/* セクション種別ごとの色分け */
.message-block--vision  { border-left-color: var(--color-accent); }
.message-block--vision  .message-block__heading { color: var(--color-accent); }
.message-block--mission { border-left-color: #C9A961; }
.message-block--mission .message-block__heading { color: #C9A961; }

/* --------------------------------------------------------------------------
   25. Company Table（会社概要）
   -------------------------------------------------------------------------- */
.company-table {
	width: 100%;
	margin-top: 2rem;
	border-collapse: collapse;
	background: #fff;
}
.company-table tr {
	border-bottom: 1px solid var(--color-line);
}
.company-table th,
.company-table td {
	padding: 1.25rem 1rem;
	text-align: left;
	vertical-align: top;
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
}
.company-table th {
	width: 30%;
	font-weight: 700;
	color: var(--color-primary);
	background: var(--color-bg-alt);
}
@media (max-width: 749px) {
	.company-table,
	.company-table tbody,
	.company-table tr,
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
	}
	.company-table th { padding-bottom: 0.25rem; }
	.company-table td { padding-top: 0.25rem; padding-bottom: 1rem; }
}

/* --------------------------------------------------------------------------
   26. Access Section（Googleマップ）
   -------------------------------------------------------------------------- */
.access-section__map {
	margin-top: 2rem;
	overflow: hidden;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}
.access-section__map iframe {
	display: block;
	width: 100%;
	height: 400px;
	border: 0;
}

/* --------------------------------------------------------------------------
   27. サービス詳細（page-service.php）
   -------------------------------------------------------------------------- */

/* ページ全体の淡い緑背景（カンプ準拠） */
body.is-service-detail {
	background: #61CE70;
}

/* パンくず */
.sd-breadcrumb-wrap {
	padding-top: 1rem;
}
.lifeis-breadcrumbs {
	font-size: var(--fs-xs);
	color: var(--color-muted);
}
.lifeis-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
}
.lifeis-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.lifeis-breadcrumbs__item a:hover { color: var(--color-primary); opacity: 1; }
.lifeis-breadcrumbs__item [aria-current="page"] { color: var(--color-text); }
.lifeis-breadcrumbs__sep {
	color: var(--color-muted);
	opacity: 0.6;
}

/* ヒーロー（タイトル + 右にアイコン画像） */
.sd-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: center;
	padding-block: 1rem 2rem;
}
.sd-hero__title {
	font-size: clamp(1.5rem, 4vw, 1.75rem);
	color: var(--color-text);
	margin-bottom: 0.75rem;
	line-height: var(--lh-tight);
}
.sd-hero__lead {
	font-size: var(--fs-sm);
	color: var(--color-text);
	line-height: var(--lh-loose);
}
.sd-hero__icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sd-hero__icon img {
	max-width: clamp(110px, 18vw, 160px);
	max-height: clamp(90px, 14vw, 130px);
	width: auto;
	height: auto;
	object-fit: contain;
}
@media (min-width: 750px) {
	.sd-hero {
		grid-template-columns: 1fr auto;
		gap: 2rem;
		padding-block: 1.5rem 2.5rem;
	}
	.sd-hero__title { font-size: 1.75rem; }
}

/* ブロック共通 */
.sd-blocks {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 4vw, 2.5rem);
}
.sd-block { margin: 0; }

/* ─────────── 1. point_list ─────────── */
.sd-point-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.sd-point {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sd-point__label {
	font-size: var(--fs-sm);
	color: var(--color-primary);
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
.sd-point__heading {
	font-size: 1.15rem;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}
/* サブ見出し：本文と同じサイズで太字 */
.sd-point__subheading {
	font-size: var(--fs-sm);
	font-weight: 700;
	color: var(--color-text);
	line-height: var(--lh-tight);
	margin-bottom: 1rem;
}
.sd-point__lead {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.sd-point__right {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
@media (min-width: 750px) {
	.sd-point {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
		padding: 1.75rem 2rem;
	}
	.sd-point__right {
		border-left: 1px solid var(--color-line);
		padding-left: 1.5rem;
	}
}

/* ─────────── 2. feature_box_grid ─────────── */
.sd-feature-box-grid__card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
}
.sd-feature-box-grid__title {
	text-align: center;
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--color-primary);
	margin: 0 auto 1rem;
}
.sd-feature-box-grid__card { text-align: center; }
.sd-feature-box-grid__sub {
	font-size: var(--fs-sm);
	color: var(--color-text);
	margin-bottom: 1.5rem;
	line-height: var(--lh-loose);
}
.sd-feature-box-grid__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: left;
}
.sd-feature-box__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--color-line);
	margin-bottom: 0.75rem;
}
.sd-feature-box__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-xs);
	flex-shrink: 0;
}
.sd-feature-box__title {
	font-size: var(--fs-md);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
}
.sd-feature-box__body {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
@media (min-width: 750px) {
	.sd-feature-box-grid__card { padding: 2.5rem 2rem; }
	.sd-feature-box-grid__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─────────── 3. plan_card ─────────── */
.sd-plan-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sd-plan-card__head {
	background: var(--color-primary);
	color: #fff;
	padding: 0.75rem 1.25rem;
	text-align: center;
}
.sd-plan-card__name {
	font-size: var(--fs-md);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
}
.sd-plan-card__name.has-hand::before {
	background-color: #fff;
}
.sd-plan-card__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	padding: 1.5rem;
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.sd-plan-card__left { font-size: var(--fs-sm); }
.sd-plan-card__price {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.4rem 1.5rem;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 999px;
	font-weight: 700;
	font-size: var(--fs-sm);
	text-align: center;
}
@media (min-width: 750px) {
	.sd-plan-card__body {
		grid-template-columns: 1fr 1.6fr;
		gap: 2rem;
		padding: 1.75rem 2rem;
	}
	.sd-plan-card__right { text-align: left; }
	.sd-plan-card__price { display: block; width: max-content; margin-left: auto; margin-right: auto; }
}

/* ─────────── 4. feature_list ─────────── */
.sd-feature-list {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sd-feature-list__label {
	font-size: var(--fs-sm);
	color: var(--color-primary);
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}
.sd-feature-list__items {
	display: flex;
	flex-direction: column;
}
.sd-feature-list__item {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--color-line);
}
.sd-feature-list__item:first-child { padding-top: 0; }
.sd-feature-list__item:last-child { border-bottom: 0; padding-bottom: 0; }
.sd-feature-list__heading {
	font-size: var(--fs-md);
	color: var(--color-text);
	margin-bottom: 0.75rem;
}
.sd-feature-list__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
}
@media (min-width: 750px) {
	.sd-feature-list { padding: 2rem 2.25rem; }
	.sd-feature-list__cols { grid-template-columns: 1fr 1.5fr; gap: 2rem; }
}

/* ─────────── 5. process_steps ─────────── */
.sd-process-steps__label {
	font-size: var(--fs-sm);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
.sd-process-steps__title {
	font-size: var(--fs-md);
	color: var(--color-text);
	margin-bottom: 1.25rem;
}
.sd-process-steps__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
.sd-process-step {
	position: relative;
	background: #fff;
	border: 1.5px solid var(--color-primary);
	border-radius: 14px;
	padding: 1.25rem 1.25rem;
}
.sd-process-step__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
}
.sd-process-step__label {
	font-size: var(--fs-xs);
	color: var(--color-text);
	font-weight: 700;
}
.sd-process-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-xs);
}
.sd-process-step__title {
	font-size: var(--fs-md);
	color: var(--color-text);
	margin-left: 0.25rem;
}
.sd-process-step__text {
	font-size: var(--fs-xs);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
@media (min-width: 750px) {
	.sd-process-steps__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem 2.5rem;
	}
	/* 各行左カードの右側に緑▶ */
	.sd-process-step:nth-child(odd):not(:last-child)::after {
		content: "";
		position: absolute;
		right: -2rem;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 14px solid var(--color-primary);
	}
}

/* ─────────── 6. free_text ─────────── */
.sd-free-text {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sd-free-text__heading {
	font-size: var(--fs-lg);
	color: var(--color-text);
	margin-bottom: 1rem;
}
.sd-free-text__body { font-size: var(--fs-sm); line-height: var(--lh-loose); }
.sd-free-text__body p { margin-bottom: 1rem; }
.sd-free-text__body p:last-child { margin-bottom: 0; }
@media (min-width: 750px) {
	.sd-free-text { padding: 2rem 2.25rem; }
}

/* --------------------------------------------------------------------------
   28. Blog Single / Voice Single
   -------------------------------------------------------------------------- */
.blog-single__inner,
.voice-single .blog-single__inner {
	max-width: 800px;
	margin-inline: auto;
}
.blog-single__header,
.voice-single__header {
	text-align: center;
	margin-bottom: 2rem;
}
.blog-single__meta {
	font-size: var(--fs-sm);
	color: var(--color-muted);
	margin-bottom: 1rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.blog-single__cat {
	background: var(--color-accent);
	color: #fff;
	padding: 0.2rem 0.75rem;
	border-radius: 999px;
	font-size: var(--fs-xs);
}
.blog-single__title,
.voice-single__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--color-primary);
	line-height: var(--lh-tight);
}
.voice-single__meta {
	margin-top: 1rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	color: var(--color-muted);
	font-size: var(--fs-sm);
}
.blog-single__thumb,
.voice-single__thumb {
	margin-bottom: 2rem;
	border-radius: var(--radius-md);
	overflow: hidden;
}
.blog-single__thumb img,
.voice-single__thumb img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.blog-single__footer,
.voice-single__footer {
	margin-top: 3rem;
	text-align: center;
}

/* --------------------------------------------------------------------------
   29. Job Single
   -------------------------------------------------------------------------- */
.job-single__article {
	max-width: 800px;
	margin-inline: auto;
}
.job-single__header { text-align: left; margin-bottom: 2rem; }
.job-single__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}
.job-single__company {
	color: var(--color-muted);
	font-size: var(--fs-md);
}
.job-single__thumb { margin-bottom: 2rem; border-radius: var(--radius-md); overflow: hidden; }
.job-single__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.job-table {
	width: 100%;
	margin: 2rem 0 3rem;
	border-collapse: collapse;
}
.job-table tr { border-bottom: 1px solid var(--color-line); }
.job-table th,
.job-table td {
	padding: 1rem;
	text-align: left;
	font-size: var(--fs-sm);
}
.job-table th {
	width: 30%;
	background: var(--color-bg-alt);
	font-weight: 700;
	color: var(--color-primary);
}
@media (max-width: 749px) {
	.job-table, .job-table tbody, .job-table tr, .job-table th, .job-table td { display: block; width: 100%; }
	.job-table th { padding-bottom: 0.25rem; }
	.job-table td { padding-top: 0.25rem; padding-bottom: 1rem; }
}

.job-single__section { margin-bottom: 2.5rem; }
.job-single__heading {
	font-size: var(--fs-lg);
	color: var(--color-primary);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--color-accent);
}
.job-single__footer {
	margin-top: 3rem;
	text-align: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Phase 4: /servicetop/ Image 2 再現スタイル
   ========================================================================== */

/* --------------------------------------------------------------------------
   30. サブページの背景色（2パネルTOP以外の corporate 系）
   ※ 固定ページをホームにした場合も緑背景を適用したいので、
      判定は .home ではなく 2パネルTOP専用の .home-split を使う
   -------------------------------------------------------------------------- */
body.is-corporate:not(.home-split) {
	background: #E8F5E0;
}

/* --------------------------------------------------------------------------
   31. ピル型ボタン（共通）
   -------------------------------------------------------------------------- */
.btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 0.85rem 0.85rem 1.5rem;
	background: var(--color-primary);
	color: #fff !important;
	border-radius: 999px;
	font-weight: 700;
	font-size: var(--fs-md);
	transition: filter var(--transition), transform var(--transition);
	border: 0;
	cursor: pointer;
}
.btn-pill:hover {
	opacity: 1;
	filter: brightness(1.05);
	transform: translateX(2px);
}
.btn-pill__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #fff;
	color: var(--color-primary);
	border-radius: 50%;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}
.btn-pill--lg {
	padding: 1.05rem 1.05rem 1.05rem 2rem;
	font-size: var(--fs-md);
}
.btn-pill--lg .btn-pill__arrow {
	width: 32px;
	height: 32px;
}
.btn-pill--ghost {
	background: var(--color-primary);
	color: #fff !important;
	border: 1px solid var(--color-primary);
}
.btn-pill--ghost .btn-pill__arrow {
	background: #fff;
	color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   32. セクションラベル
   -------------------------------------------------------------------------- */
.section-label {
	font-family: var(--font-jp);
	font-size: var(--fs-md);
	letter-spacing: 0.3em;
	color: var(--color-primary);
	text-transform: lowercase;
	margin-bottom: 0.5rem;
}
.section-label.has-hand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.section-label.has-hand::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: var(--color-primary);
	-webkit-mask: var(--icon-hand) no-repeat center / contain;
	mask: var(--icon-hand) no-repeat center / contain;
}

/* --------------------------------------------------------------------------
   33. /servicetop/ ヒーロー
   -------------------------------------------------------------------------- */
.st-hero {
	padding-block: 0 2rem;
}
.st-hero__visual {
	position: relative;
	width: 100%;
}
.st-hero__circle {
	width: 100%;
	overflow: hidden;
	background: transparent;
}
.st-hero__circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 縦書きヒーローテキスト */
.st-hero__vertical {
	position: absolute;
	top: 2%;
	right: 12%;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 0.5rem;
	z-index: 2;
}
.st-hero__vertical p {
	writing-mode: vertical-rl;
	background: rgba(255, 255, 255, 0.88);
	padding: 0.85rem 0.4rem;
	margin: 0;
	font-weight: 700;
	font-size: clamp(0.95rem, 1.3vw, 1.15rem);
	letter-spacing: 0.08em;
	color: var(--color-text);
	border-radius: 4px;
}

/* CTAボタン（画像の下に重ねて配置）＋ ふわふわ浮遊アニメーション */
@keyframes lifeis-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-9px); }
}

.st-hero__cta {
	position: absolute;
	bottom: -1rem;
	left: -1rem;
	z-index: 2;
	animation: lifeis-float 2.8s ease-in-out infinite;
	box-shadow: 0 10px 22px rgba(66, 177, 83, 0.35);
	will-change: transform;
}
.st-hero__cta.btn-pill--coral {
	box-shadow: 0 10px 22px rgba(255, 161, 147, 0.4);
}
/* ホバー時は浮遊を一時停止して少し持ち上げる */
.st-hero__cta:hover {
	animation-play-state: paused;
	transform: translateY(-5px);
	filter: brightness(1.05);
}
/* アニメーションを減らす設定のユーザーには静止表示 */
@media (prefers-reduced-motion: reduce) {
	.st-hero__cta {
		animation: none;
	}
}

@media (min-width: 1201px) {
	.st-hero__cta {
		font-size: 24px;
	}
}

/* サイドバー（最新ブログ） */
.st-page-layout__sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.sidebar-card {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	color: var(--color-text);
	transition: transform var(--transition);
}
.sidebar-card:hover {
	opacity: 1;
	transform: translateY(-2px);
}
.sidebar-card__thumb {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.sidebar-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sidebar-card__date {
	display: block;
	padding: 0.75rem 0.75rem 0;
	font-size: var(--fs-xs);
	color: var(--color-muted);
}
.sidebar-card__title {
	padding: 0.25rem 0.75rem 0.75rem;
	font-size: var(--fs-sm);
	font-weight: 700;
	line-height: var(--lh-tight);
	color: #000;
}

/* --------------------------------------------------------------------------
   33-B. Layout for servicetop main & sidebar
   -------------------------------------------------------------------------- */
.st-page-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
	padding-top: clamp(2rem, 5vw, 4rem);
	padding-bottom: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 750px) {
	.st-page-layout {
		grid-template-columns: 1fr 260px;
		gap: 2.5rem;
	}
}

/* --------------------------------------------------------------------------
   34. /servicetop/ ブランドセクション（横分割）
   -------------------------------------------------------------------------- */
.st-brand {
	padding-block: 1rem 3rem;
}
.st-brand__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
.st-brand__heading {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--color-text);
	line-height: var(--lh-tight);
	margin-bottom: 1rem;
}
@media (min-width: 1201px) {
	.st-brand__heading {
		font-size: 45px;
	}
}
.st-brand__sub {
	font-family: var(--font-jp);
	font-size: 23px;
	color: var(--color-muted);
}
.st-brand__tagline {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.st-brand__hand {
	display: inline-block;
	width: 60px;
	height: 60px;
	background-color: var(--color-primary);
	-webkit-mask: var(--icon-hand) no-repeat center / contain;
	mask: var(--icon-hand) no-repeat center / contain;
	flex-shrink: 0;
}
.st-brand__text {
	font-family: var(--font-jp);
	color: var(--color-text);
	font-size: var(--fs-md);
	letter-spacing: 0.15em;
	line-height: 1.6;
}
.st-brand__text span {
	display: block;
}

@media (min-width: 750px) {
	.st-brand__layout {
		grid-template-columns: 1fr auto;
		gap: 4rem;
	}
}



/* --------------------------------------------------------------------------
   35. /servicetop/ 共通セクション (white card)
   -------------------------------------------------------------------------- */
.st-section {
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.st-section__title {
	font-size: var(--fs-xl);
	margin-bottom: 2rem;
}

.content-card {
	background: #fff;
	border-radius: 24px;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.content-card__title {
	font-size: var(--fs-lg);
	margin: 0.5rem 0 1.5rem;
	line-height: var(--lh-tight);
	color: var(--color-primary);
}
.content-card__layout--text-image {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}
.content-card__body {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.content-card__body p {
	margin-bottom: 1rem;
}
.content-card__image img {
	width: 100%;
	border-radius: 12px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

@media (min-width: 750px) {
	.content-card__layout--text-image {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

/* --------------------------------------------------------------------------
   36. /servicetop/ サービス3項目（縦並び）
   -------------------------------------------------------------------------- */
.service-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.service-item {
	position: relative;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--color-line);
}
.service-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.service-item__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.service-item__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-sm);
	flex-shrink: 0;
}
.service-item__title {
	font-size: var(--fs-md);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
}
.service-item__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	align-items: center;
}
.service-item__icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-item__icon img {
	max-width: 140px;
	max-height: 140px;
	object-fit: contain;
}
.service-item__text {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
	margin: 0;
	padding-right: 3rem; /* 右下の→ボタンと重ならないよう余白 */
}
.service-item__more {
	position: absolute;
	bottom: 1.5rem;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-size: var(--fs-sm);
	transition: filter var(--transition);
	z-index: 2;
}
.service-item__more span {
	color: #fff;
}
.service-item__more:hover {
	filter: brightness(1.1);
	opacity: 1;
}

@media (min-width: 750px) {
	.service-item__body {
		grid-template-columns: 180px 1fr;
		gap: 2rem;
	}
}

/* --------------------------------------------------------------------------
   37. /servicetop/ 選ばれる理由（2x2 グリッド）
   -------------------------------------------------------------------------- */
.reason-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}
.reason-item {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}
/* 番号バッジ + 見出しの行 */
.reason-item__head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1rem;
}
.reason-item__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-base);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.reason-item__title {
	font-size: var(--fs-md);
	font-weight: 700;
	color: var(--color-text);
	line-height: var(--lh-tight);
	margin: 0;
}
.reason-item__image {
	margin: 0 0 1.25rem 0;
	width: 100%;
	max-width: none;
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	overflow: hidden;
}
.reason-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reason-item__text {
	margin: 0;
	font-size: var(--fs-sm);
	text-align: left;
	line-height: var(--lh-loose);
	color: var(--color-text);
}

@media (min-width: 750px) {
	.reason-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem 4rem;
	}
}

/* --------------------------------------------------------------------------
   38. /servicetop/ お客様の声カード
   -------------------------------------------------------------------------- */
.voice-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}
.voice-item {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 12px;
	border: 2px solid var(--color-primary);
	color: var(--color-text);
	transition: border-color var(--transition), transform var(--transition);
}
.voice-item:hover {
	opacity: 1;
	border-color: var(--color-primary);
	transform: translateY(-2px);
}
.voice-item__photo {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-bg-alt);
}
.voice-item__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voice-item__body {
	flex: 1;
	min-width: 0;
}
.voice-item__meta {
	font-size: var(--fs-xs);
	color: var(--color-text);
	margin: 0 0 0.5rem;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.voice-item__quote {
	font-size: var(--fs-xs);
	line-height: var(--lh-loose);
	color: var(--color-muted);
	margin: 0;
}

.voice-more {
	margin-top: 2rem;
	text-align: right;
}

@media (min-width: 750px) {
	.voice-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

/* --------------------------------------------------------------------------
   39. /servicetop/ Contact CTA
   -------------------------------------------------------------------------- */
.st-contact {
	padding-block: clamp(2.5rem, 6vw, 4rem);
	text-align: center;
}
.st-contact .section-label {
	display: block;
	margin-bottom: 1rem;
	font-size: var(--fs-md);
	letter-spacing: 0.3em;
}

/* ==========================================================================
   Phase 5: /recruit/ 求職者向けTOP スタイル
   ========================================================================== */

/* --------------------------------------------------------------------------
   40. 求職者ページ背景
   -------------------------------------------------------------------------- */
body.is-recruit:not(.home-split) {
	background: #ECF2D5;
}

/* --------------------------------------------------------------------------
   41. コーラル版ピルボタン
   -------------------------------------------------------------------------- */
.btn-pill--coral {
	background: var(--color-accent);
}
.btn-pill--coral .btn-pill__arrow {
	color: var(--color-accent);
}
.btn-pill--coral:hover {
	filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   42. ステップカード（選ばれる理由・4個2x2＋▶矢印）
   -------------------------------------------------------------------------- */
.step-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 2rem;
}
.step-card {
	position: relative;
	background: #fff;
	border: 2px solid var(--color-accent);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
}
.step-card__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 161, 147, 0.3);
}
.step-card__label {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: rgba(255, 161, 147, 0.15);
	color: var(--color-accent);
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	font-size: var(--fs-xs);
	font-weight: 700;
	flex-shrink: 0;
	white-space: nowrap;
}
.step-card__title {
	font-size: var(--fs-md);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
}
.step-card__text {
	font-size: var(--fs-xs);
	line-height: var(--lh-loose);
	margin: 0;
	color: var(--color-text);
}

/* 横矢印（タブレット以上のみ） */
@media (min-width: 750px) {
	.step-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 3rem;
	}
	/* 奇数番目（1, 3, 5...）の右側に矢印（2列グリッドなので各行の左カードに矢印） */
	.step-card:nth-child(odd):not(:last-child)::after {
		content: "";
		position: absolute;
		right: -2.25rem;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 14px solid var(--color-accent);
	}
}

/* --------------------------------------------------------------------------
   43. サポートカード（service content・4個2x2、ナンバーバッジ + イラスト）
   -------------------------------------------------------------------------- */
.support-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 2rem;
}
.support-card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 1.75rem 1.5rem;
	display: grid;
	grid-template-columns: 110px 1fr;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.support-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-xs);
}
.support-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(66, 177, 83, 0.08);
	border-radius: 12px;
	aspect-ratio: 1;
	padding: 0.75rem;
}
.support-card__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.support-card__title {
	font-size: var(--fs-base);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: var(--lh-tight);
}

@media (min-width: 750px) {
	.support-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

/* ==========================================================================
   求人情報 アーカイブ / 詳細（/jobs/）
   ========================================================================== */

/* ページ全体の淡黄緑背景 */
body.is-recruit:not(.home-split) {
	background: #F9FFE2;
}

/* ヘッダー */
.jobs-archive__header {
	padding: 1rem 0 2rem;
}
.jobs-archive__title {
	font-size: clamp(1.5rem, 4vw, 1.875rem);
	color: var(--color-text);
	margin-bottom: 0.5rem;
}
.jobs-archive__sub {
	font-size: var(--fs-sm);
	color: var(--color-text);
	letter-spacing: 0.05em;
}

/* グリッド */
.jobs-grid {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
}
@media (min-width: 750px) {
	.jobs-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* 求人カード */
.job-card-wrap { list-style: none; }
.job-card {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
	color: var(--color-text);
	transition: transform var(--transition), box-shadow var(--transition);
	position: relative;
	height: 100%;
}
.job-card:hover {
	opacity: 1;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.job-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.job-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.job-card__new {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--color-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 0.2rem 0.85rem;
	border-radius: 999px;
	letter-spacing: 0.05em;
}

.job-card__body {
	padding: 1rem 1.25rem 1.25rem;
	position: relative;
}

.job-card__excerpt {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: #222;
	margin-bottom: 0.75rem;
}

.job-card__tags {
	list-style: none;
	padding: 0;
	margin: 0 0 0.75rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.job-card__tags li {
	font-size: 12px;
	color: var(--color-accent);
	background: #fff;
	border: 1px solid var(--color-accent);
	padding: 0.25rem 0.6rem;
	border-radius: 5px;
	font-weight: 500;
}

.job-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 0.75rem;
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
	font-size: 12px;
	color: #777;
}
.job-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.job-card__meta-item svg { flex-shrink: 0; }

.job-card__company {
	background: #f2f2f2;
	border-radius: 12px;
	padding: 0.85rem 1rem;
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 0.75rem;
	align-items: center;
}
.job-card__logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.job-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.job-card__logo--placeholder {
	color: #888;
	font-size: 12px;
	border: 1px dashed #ccc;
}
.job-card__company-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 0.15rem;
}
.job-card__company-desc {
	font-size: 12px;
	color: var(--color-text);
	margin: 0;
}

.job-card__arrow {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	line-height: 1;
}

/* ページネーション */
.jobs-pagination {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}
.jobs-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: var(--fs-md);
	color: var(--color-text);
}
.jobs-pagination .page-numbers {
	min-width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--color-text);
	font-weight: 500;
	transition: background var(--transition), color var(--transition);
}
.jobs-pagination .page-numbers.current {
	background: var(--color-accent);
	color: #fff;
}
.jobs-pagination .page-numbers:hover:not(.current) {
	background: rgba(0,0,0,0.05);
	opacity: 1;
}
.jobs-pagination .prev,
.jobs-pagination .next {
	border-radius: 6px;
	min-width: auto;
	padding: 0 0.4rem;
}

.jobs-empty {
	padding: 3rem 0;
	text-align: center;
	color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   求人詳細
   -------------------------------------------------------------------------- */
.job-single {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-top: 0.5rem;
}
.job-single__header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
}
@media (min-width: 750px) {
	.job-single__header { grid-template-columns: 390px 1fr; gap: 1.75rem; }
}
.job-single__media {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.job-single__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.job-single__title {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: var(--color-text);
	margin-bottom: 1rem;
}
.job-single__lead {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.job-single__lead p { margin-bottom: 0.75rem; }

.job-single__tags {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.job-single__tags li {
	background: #fff;
	border: 1.5px solid var(--color-accent);
	color: var(--color-accent);
	border-radius: 8px;
	padding: 0.4rem 1rem;
	font-size: var(--fs-sm);
	font-weight: 500;
}

.job-single__meta {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	font-size: var(--fs-md);
	color: #777;
}
.job-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.job-single__section--plain {
	padding: 0 0 0.5rem;
}
.job-single__card {
	background: #fff;
	border-radius: 20px;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	margin-bottom: 0;
}
.job-single__heading {
	font-size: var(--fs-md);
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1rem;
}
.job-single__body {
	font-size: var(--fs-sm);
	line-height: var(--lh-loose);
	color: var(--color-text);
}
.job-single__body p { margin-bottom: 0.5rem; }
.job-single__body p:last-child { margin-bottom: 0; }
.job-single__body ul,
.job-single__body ol { padding-left: 1.25rem; margin-bottom: 0.5rem; }
.job-single__body li { list-style: disc; margin-bottom: 0.25rem; }

/* 応募バー */
.job-single__apply-bar {
	background: var(--color-accent);
	border-radius: 0;
	margin: 1rem 0 1.25rem;
	padding: 1.1rem;
	text-align: center;
}
.job-single__apply-bar,
.job-single__apply-bar span,
.job-single__apply-link {
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-md);
}
.job-single__apply-link {
	display: block;
	width: 100%;
	color: #fff;
}
.job-single__apply-link:hover { opacity: 0.85; color: #fff; }

/* 応募フォーム（CF7テンプレート側で組み立てる前提） */
.job-form {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-top: 1rem;
	display: block;
	width: 100%;
}
/* CF7 form を確実に幅100%にする（旧テンプレ流用時の幅崩れ対策） */
.job-form--cf7,
.job-form--cf7 .wpcf7,
.job-form--cf7 .wpcf7-form {
	width: 100%;
	max-width: 100%;
	margin: 0;
}
/* CF7テンプレ内で「この求人に応募する」見出しを使う際の共通スタイル */
.job-form__header {
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: var(--fs-md);
	text-align: center;
	padding: 1.1rem 1rem;
	margin: 0;
	letter-spacing: 0.05em;
}
.job-form__notice {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	font-size: var(--fs-sm);
	margin-bottom: 0.5rem;
}
.job-form__notice--success { background: #e8f5e0; color: var(--color-primary-d); }
.job-form__notice--error { background: #ffe8e3; color: var(--color-accent-d); }

.job-form__label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: 0.4rem;
}
.job-form__req {
	background: var(--color-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	padding: 0.15rem 0.6rem;
	border-radius: 4px;
}
.job-form__row { display: flex; flex-direction: column; }
.job-form input[type="text"],
.job-form input[type="tel"],
.job-form input[type="email"],
.job-form input[type="date"] {
	width: 100%;
	border: 0.5px solid #ccc;
	border-radius: 5px;
	padding: 0.65rem 0.85rem;
	font-size: var(--fs-sm);
	font-family: inherit;
	background: #fff;
	color: var(--color-text);
}
.job-form input::placeholder { color: #c0bbbb; }
.job-form input:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }

.job-form__radios {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.job-form__radios label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--fs-sm);
}
.job-form__radios input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary);
}

.job-form__submit { margin-top: 0.5rem; }
.job-form__btn {
	width: 100%;
	background: var(--color-accent);
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 1rem 1.5rem;
	font-size: var(--fs-md);
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background var(--transition);
}
.job-form__btn:hover { background: var(--color-accent-d); }

/* 詳細ページ下部のページャー */
.job-single__pager {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.job-single__pager-link {
	font-size: var(--fs-sm);
	letter-spacing: 0.1em;
	color: #333;
	padding: 0.5rem 0.85rem;
}
.job-single__pager-link.is-disabled { opacity: 0.3; pointer-events: none; }
.job-single__pager-link--center { font-weight: 500; }

/* PCサイドバー（求人ページのみ細身に） */
@media (min-width: 750px) {
	.jobs-layout.st-page-layout {
		grid-template-columns: 1fr 260px;
		gap: 2rem;
	}
}

/* --------------------------------------------------------------------------
   CF7 を Figmaデザインに寄せる（求人応募フォーム）
   -------------------------------------------------------------------------- */
.job-form--cf7 .wpcf7 { margin: 0; }
.job-form--cf7 .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.job-form--cf7 .wpcf7-form > p {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.job-form--cf7 .wpcf7-form label {
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--color-text);
	display: block;
}
.job-form--cf7 .wpcf7-form > p > label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.job-form--cf7 .wpcf7-form-control-wrap { display: block; width: 100%; }

.job-form--cf7 .wpcf7-form input[type="text"],
.job-form--cf7 .wpcf7-form input[type="tel"],
.job-form--cf7 .wpcf7-form input[type="email"],
.job-form--cf7 .wpcf7-form input[type="url"],
.job-form--cf7 .wpcf7-form input[type="number"],
.job-form--cf7 .wpcf7-form input[type="date"],
.job-form--cf7 .wpcf7-form select,
.job-form--cf7 .wpcf7-form textarea {
	width: 100%;
	border: 1px solid #d6d6d6;
	border-radius: 6px;
	padding: 0.95rem 1rem;
	font-size: var(--fs-sm);
	font-family: inherit;
	background: #fff;
	color: var(--color-text);
}
.job-form--cf7 .wpcf7-form textarea { min-height: 140px; }
.job-form--cf7 .wpcf7-form input::placeholder,
.job-form--cf7 .wpcf7-form textarea::placeholder { color: #c0bbbb; }
.job-form--cf7 .wpcf7-form input:focus,
.job-form--cf7 .wpcf7-form select:focus,
.job-form--cf7 .wpcf7-form textarea:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 1px;
	border-color: var(--color-primary);
}

/* ラジオ / チェックボックス（コーラルのチェックボックス型） */
.job-form--cf7 .wpcf7-radio,
.job-form--cf7 .wpcf7-checkbox,
.job-form--cf7 .wpcf7-acceptance {
	display: flex !important;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.25rem;
}
.job-form--cf7 .wpcf7-list-item {
	margin: 0 !important;
	display: flex;
	align-items: center;
	gap: 0.65rem;
}
.job-form--cf7 .wpcf7-list-item > label {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	cursor: pointer;
	font-size: var(--fs-sm);
}
.job-form--cf7 .wpcf7-list-item-label {
	font-size: var(--fs-sm);
	color: var(--color-text);
}
/* チェックボックス風カスタムラジオ：白四角→チェック時コーラル */
.job-form--cf7 .wpcf7-form input[type="radio"],
.job-form--cf7 .wpcf7-form input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	border: 1.5px solid #434343;
	border-radius: 4px;
	background: #fff;
	margin: 0;
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition);
}
.job-form--cf7 .wpcf7-form input[type="radio"]:checked,
.job-form--cf7 .wpcf7-form input[type="checkbox"]:checked {
	background: var(--color-accent);
	border-color: var(--color-accent);
}
.job-form--cf7 .wpcf7-form input[type="radio"]:checked::after,
.job-form--cf7 .wpcf7-form input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	inset: 0;
	display: block;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
}

/* 「必須」マーク（CF7では .wpcf7-validates-as-required にしか印が付かないため、
   labelに <span class="job-form__req">必須</span> を手書きする想定。
   ここでは見た目だけ揃える。 */
.job-form--cf7 .wpcf7-form label .job-form__req,
.job-form--cf7 .wpcf7-form .job-form__req {
	display: inline-flex;
	align-items: center;
	background: var(--color-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	padding: 0.15rem 0.6rem;
	border-radius: 4px;
	margin-left: 0.4rem;
}

/* 送信ボタン（中央寄せ・矢印なし・シンプル） */
.job-form--cf7 .wpcf7-form > p:has(input[type="submit"]),
.job-form--cf7 .wpcf7-form > p.submit-row {
	margin-top: 1rem;
	display: block;
	text-align: center;
}
.job-form--cf7 .wpcf7-form input[type="submit"],
.job-form--cf7 .wpcf7-submit {
	display: inline-block;
	width: 100%;
	max-width: 420px;
	background-color: var(--color-accent);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 1.1rem 2rem;
	font-size: var(--fs-md);
	font-weight: 700;
	cursor: pointer;
	transition: background-color var(--transition);
	margin-top: 0.5rem;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.2;
}
.job-form--cf7 .wpcf7-form input[type="submit"]:hover,
.job-form--cf7 .wpcf7-submit:hover {
	background-color: var(--color-accent-d);
}

/* CF7スピナー：レイアウトに影響しないよう非表示 */
.job-form--cf7 .wpcf7-spinner {
	display: none !important;
}

/* CF7メッセージ */
.job-form--cf7 .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 6px;
	font-size: var(--fs-sm);
	border: 1px solid currentColor;
}
.job-form--cf7 .wpcf7-not-valid-tip {
	color: var(--color-accent-d);
	font-size: var(--fs-xs);
	margin-top: 0.25rem;
}
.job-form--cf7 .wpcf7-spinner {
	margin-left: 0.5rem;
	vertical-align: middle;
}
