/* ============================================================
   求人情報(job) 一覧・詳細ページ 専用CSS
   配色・フォントは既存テーマ(common.css / main.css)に準拠。
   ============================================================ */

/* ---------- 共通: 求人カード ---------- */
.job-card-list--archive {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.job-card-list--related {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.job-card-list--archive .job-card,
.job-card-list--related .job-card {
	width: calc(33.333% - 16px);
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	transition: box-shadow .2s, transform .2s;
}
/* トップページ「人気のお仕事」スライダー用: 幅はSlick側(inlineスタイル)に
   完全に委ねるため、archive/relatedと違いwidthを指定しない。 */
.job-card-list--picks {
	list-style: none;
	padding: 0;
	margin: 0;
}
.job-card-list--picks .job-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	transition: box-shadow .2s, transform .2s;
}
.job-card-list--archive .job-card-link,
.job-card-list--related .job-card-link,
.job-card-list--picks .job-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
@media (min-width: 768px) {
	.job-card-list--archive .job-card:hover,
	.job-card-list--related .job-card:hover,
	.job-card-list--picks .job-card:hover {
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
		transform: translateY(-2px);
	}
}
.job-card-img {
	position: relative;
	aspect-ratio: 3 / 2;
	background: #F5F5EE;
	overflow: hidden;
}
.job-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.job-card-noimg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 13px;
	letter-spacing: .1em;
	background: #F5F5EE;
}
.job-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #019FE6;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
}
.job-card-body {
	padding: 20px 20px 22px;
}
.job-card-catch {
	color: #F46105;
}
.job-card-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
}
.job-card-meta li {
	font-size: 13px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 5px;
}
.job-card-meta i {
	color: #019FE6;
	font-size: 12px;
}
.job-card-salary {
	margin: 0 0 8px;
}
.job-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #019FE6;
}
.job-card-more i {
	font-size: 11px;
}

@media (max-width: 991px) {
	.job-card-list--archive .job-card,
	.job-card-list--related .job-card {
		width: calc(50% - 12px);
	}
}
@media (max-width: 600px) {
	.job-card-list--archive .job-card,
	.job-card-list--related .job-card {
		width: 100%;
	}
}


/* ---------- トップページ「人気のお仕事」画像なしプレースホルダー ---------- */


/* ============================================================
   求人一覧(archive-job.php)
   ============================================================ */
.job-search-form {
	display: flex;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #019FE6;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}
.job-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 16px 24px;
	font-size: 16px;
	background: transparent;
}
.job-search-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	cursor: pointer;
	background: #019FE6;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 0 32px;
	transition: opacity .2s;
}
.job-search-btn:hover {
	opacity: .85;
}

.job-result-count {
	text-align: center;
}

.job-active-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 12px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	list-style: none;
	text-align: center;
}

.job-active-filters li {
	font-size: 13px;
	color: #444;
	background: #F4F8FA;
	border: 1px solid #C8DFE8;
	border-radius: 999px;
	padding: 4px 14px;
}

.job-active-filters__label {
	font-weight: 700;
	color: #133F6C;
}

.job-active-filters__label::after {
	content: '：';
}

/* ---------- 絞り込み検索パネル ---------- */
.job-filter-panel {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	border: 1px solid #D3EDFA;
	border-radius: 16px;
	padding: 0 24px;
}
.job-filter-panel[open] {
	padding-bottom: 24px;
}
.job-filter-panel__summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 4px;
	font-size: 18px;
	font-weight: 700;
	color: #133F6C;
}
.job-filter-panel__summary::-webkit-details-marker {
	display: none;
}
.job-filter-panel__summary i.fa-sliders {
	color: #019FE6;
}
.job-filter-panel__summary::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: auto;
	font-size: 13px;
	color: #999;
	transition: transform .2s;
}
.job-filter-panel[open] .job-filter-panel__summary::after {
	transform: rotate(180deg);
}
.job-filter-active-badge {
	background: #F46105;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 999px;
}

.job-filter-block {
	padding-top: 18px;
	border-top: 1px solid #F5F5EE;
	margin-top: 18px;
}
.job-filter-block:first-of-type {
	border-top: none;
	margin-top: 0;
}
.job-filter-block__ttl {
	font-size: 16px;
	font-weight: 700;
	color: #133F6C;
	margin: 0 0 10px;
}

/* 都道府県未選択エラー(勤務地見出しの直上に表示) */
.job-filter-pref-error {
	color: #E8402B;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 10px;
}

.job-facet-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.job-facet-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
}
.job-facet-checkbox input {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #019FE6;
	border-radius: 4px;
	background: #fff;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
}
.job-facet-checkbox input:checked {
	background: #019FE6;
	border-color: #019FE6;
}
.job-facet-checkbox input:checked::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 45%;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

.job-facet-scroll {
	max-height: 180px;
	overflow-y: auto;
	padding-right: 6px;
}

.job-input-text {
	height: 52px;
	width: 100%;
	max-width: 480px;
	border: 2px solid #C8DFE8;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 16px;
	font-family: inherit;
	color: #333;
	background: #fff;
}
.job-input-text:focus {
	outline: none;
	border-color: #019FE6;
}

.job-input-select {
	height: 52px;
	width: 100%;
	max-width: 320px;
	border: 2px solid #C8DFE8;
	border-radius: 8px;
	padding: 0 40px 0 16px;
	font-size: 16px;
	font-family: inherit;
	color: #333;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23019FE6'/%3E%3C/svg%3E") no-repeat right 16px center;
	appearance: none;
	cursor: pointer;
}
.job-input-select:focus {
	outline: none;
	border-color: #019FE6;
}

.job-facet-group {
	border: 1px solid #F5F5EE;
	border-radius: 8px;
	padding: 0 14px;
	margin-bottom: 8px;
}
.job-facet-group[open] {
	padding-bottom: 12px;
}
.job-facet-group summary {
	cursor: pointer;
	list-style: none;
	padding: 10px 0;
	font-size: 15px;
	font-weight: 600;
	color: #019FE6;
	display: flex;
	align-items: center;
}
.job-facet-group summary::-webkit-details-marker {
	display: none;
}
.job-facet-group summary::before {
	content: "\f067";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 10px;
	margin-right: 8px;
	color: #999;
}
.job-facet-group[open] summary::before {
	content: "\f068";
}

/* ---------- 職種・こだわり条件モーダル内のグループ表示 ---------- */
/* .job-picker-modal__body は本来、都道府県ナビ+ツリーの横並びflex用だが、
   このシンプルモーダルにはナビが無いため、通常の縦積みブロックに上書きする。 */
.job-picker-modal__body.job-simple-modal__body {
	display: block;
	overflow-y: auto;
	padding: 20px 24px;
}
.job-facet-group-block {
	border: 1px solid #F0F0F0;
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 12px;
}
.job-facet-group-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #133F6C;
	cursor: pointer;
	margin-bottom: 12px;
	background: #F5F9FB;
	margin: -14px -16px 12px;
	padding: 10px 16px;
	border-radius: 8px 8px 0 0;
}
.job-facet-group-header input {
	appearance: none;
	-webkit-appearance: none;
	width: 17px;
	height: 17px;
	border: 2px solid #019FE6;
	border-radius: 4px;
	background: #fff;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
}
.job-facet-group-header input:checked {
	background: #019FE6;
	border-color: #019FE6;
}
.job-facet-group-header input:checked::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 45%;
	width: 4px;
	height: 7px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- 給与(給与形態・金額の2セレクト) ---------- */
.job-salary-selects {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.job-salary-select-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.job-salary-select-label {
	font-size: 13px;
	font-weight: 600;
	color: #666;
}

.job-filter-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #F5F5EE;
}
.job-filter-submit-btn {
	background: #019FE6;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 44px;
	border-radius: 999px;
	transition: opacity .2s;
}
.job-filter-submit-btn:hover {
	opacity: .85;
}
.job-filter-reset-btn {
	font-size: 14px;
	color: #666;
	text-decoration: underline;
}

/* ---------- 駅・地域ピッカー(トリガーボタン・サマリー) ---------- */
.job-picker-triggers {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.job-picker-trigger-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 2px solid #019FE6;
	color: #019FE6;
	font-size: 15px;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 999px;
	cursor: pointer;
	transition: background .2s, color .2s;
}
.job-picker-trigger-btn:hover {
	background: #019FE6;
	color: #fff;
}
.job-picker-summary {
	margin: 12px 0 0;
	font-size: 14px;
	color: #133F6C;
	font-weight: 600;
}
.job-picker-nationwide {
	margin: 14px 0 0;
	font-size: 15px !important;
}
.job-picker-nationwide-hint {
	margin: 6px 0 0;
	font-size: 13px;
	color: #666;
}

/* ---------- 駅・地域ピッカー モーダル ---------- */
.job-picker-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.job-picker-modal[hidden] {
	display: none;
}
body.job-picker-modal-open {
	overflow: hidden;
}
.job-picker-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(19, 63, 108, .55);
}
.job-picker-modal__panel {
	position: relative;
	background: #fff;
	border-radius: 16px;
	width: min(920px, 92vw);
	max-height: 86vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.job-picker-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: #019FE6;
	color: #fff;
}
.job-picker-modal__header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}
.job-picker-modal__close {
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.job-picker-modal__tabs {
	display: flex;
	border-bottom: 1px solid #E5E5E5;
}
.job-picker-tab-btn {
	flex: 1;
	background: #F5F9FB;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 14px 10px;
	font-size: 15px;
	font-weight: 700;
	color: #999;
	cursor: pointer;
}
.job-picker-tab-btn.is-active {
	background: #fff;
	color: #019FE6;
	border-bottom-color: #019FE6;
}
.job-picker-modal__body {
	display: flex;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}
.job-picker-pref-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 150px;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 1px solid #E5E5E5;
	background: #FAFCFD;
}
.job-picker-pref-btn {
	display: block;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	border-bottom: 1px solid #F0F0F0;
	padding: 12px 16px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
.job-picker-pref-btn.is-active {
	background: #019FE6;
	color: #fff;
	font-weight: 700;
}
.job-picker-content {
	flex: 1;
	overflow-y: auto;
	padding: 16px 20px;
}
.job-picker-placeholder {
	color: #999;
	font-size: 14px;
	text-align: center;
	margin-top: 40px;
}
.job-picker-company-block {
	margin-bottom: 16px;
}
.job-picker-company-heading {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: #133F6C;
	padding: 6px 12px;
	border-radius: 6px;
	margin-bottom: 8px;
}
.job-picker-line {
	border: 1px solid #F0F0F0;
	border-radius: 8px;
	padding: 0 14px;
	margin-bottom: 8px;
}
.job-picker-line[open] {
	padding-bottom: 12px;
}
.job-picker-line summary {
	cursor: pointer;
	list-style: none;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 600;
	color: #019FE6;
	display: flex;
	align-items: center;
}
.job-picker-line summary::-webkit-details-marker {
	display: none;
}
.job-picker-line summary::before {
	content: "\f067";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 10px;
	margin-right: 8px;
	color: #999;
}
.job-picker-line[open] summary::before {
	content: "\f068";
}
.job-picker-group-block {
	border: 1px solid #F0F0F0;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 8px;
}
.job-picker-group-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #133F6C;
	cursor: pointer;
	margin-bottom: 10px;
}
.job-picker-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px 14px;
}
.job-picker-checkbox {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
.job-picker-checkbox input,
.job-picker-group-header input {
	appearance: none;
	-webkit-appearance: none;
	width: 17px;
	height: 17px;
	border: 2px solid #019FE6;
	border-radius: 4px;
	background: #fff;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
}
.job-picker-checkbox input:checked,
.job-picker-group-header input:checked {
	background: #019FE6;
	border-color: #019FE6;
}
.job-picker-checkbox input:checked::after,
.job-picker-group-header input:checked::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 45%;
	width: 4px;
	height: 7px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}
.job-picker-modal__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding: 14px 24px;
	border-top: 1px solid #E5E5E5;
	background: #FAFCFD;
}
.job-picker-selected-count {
	margin-right: auto;
	font-size: 13px;
	color: #666;
}
.job-picker-clear-btn {
	background: none;
	border: none;
	font-size: 14px;
	color: #666;
	text-decoration: underline;
	cursor: pointer;
}
.job-picker-confirm-btn {
	background: #F46105;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 32px;
	border-radius: 999px;
	transition: opacity .2s;
}
.job-picker-confirm-btn:hover {
	opacity: .85;
}

@media (max-width: 640px) {
	.job-picker-modal__body {
		flex-direction: column;
	}
	.job-picker-pref-nav {
		width: 100%;
		max-height: 120px;
		display: flex;
		flex-wrap: wrap;
		border-right: none;
		border-bottom: 1px solid #E5E5E5;
	}
	.job-picker-pref-btn {
		width: auto;
		border-bottom: none;
		border-right: 1px solid #F0F0F0;
	}
}

.job-no-result {
	padding: 60px 0;
	color: #666;
}

.job-pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.job-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 0 4px;
	padding: 0 8px;
	border-radius: 8px;
	background: #fff;
	color: #019FE6;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #019FE6;
	transition: background .2s, color .2s;
}
.job-pagination .page-numbers.current {
	background: #019FE6;
	color: #fff;
}
.job-pagination .page-numbers.dots {
	border: none;
	background: transparent;
}
@media (min-width: 768px) {
	.job-pagination a.page-numbers:hover {
		background: #D3EDFA;
	}
}


/* ============================================================
   求人詳細(single-job.php)
   ============================================================ */
.job-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.job-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 999px;
}
.job-tag--branch {
	background: #133F6C;
	color: #fff;
}
.job-tag--type {
	background: #D3EDFA;
	color: #019FE6;
}
.job-tag--employment {
	background: #F5F5EE;
	color: #666;
}

.job-single-title {
	line-height: 1.4;
}

.job-single-catch {
	border-radius: 12px;
	padding: 18px 24px;
}
.job-single-catch p {
	margin: 0;
	line-height: 1.6;
}

.job-merit-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin-bottom: 32px !important;
}
.job-merit-chip {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	color: #019FE6;
	background: #fff;
	border: 1px solid #BCECFE;
	border-radius: 999px;
	padding: 7px 16px;
}

/* スマホでは項目数が多くタグが何段にも折り返されるため、行間(row-gap)を
   列間(column-gap)より広めに取り、見出し・キャッチコピー・タグ群・画像の
   各ブロック間の余白も詰まって見えないよう広げる。mb-*ユーティリティ
   (css/common.css)より詳細度で確実に上回らせるため!importantを使用。 */
@media (max-width: 600px) {
	.job-single-tags {
		margin-bottom: 18px !important;
	}
	.job-single-catch {
		padding: 16px 18px;
	}
	.job-merit-list {
		gap: 10px 8px;
		margin-bottom: 32px !important;
	}
	.job-apply-buttons {
		margin-bottom: 24px !important;
	}
	.job-single-table {
		margin-bottom: 24px !important;
	}
}

.job-single-media {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
}
.job-single-media__img {
	flex: 1 1 320px;
	border-radius: 12px;
	overflow: hidden;
}
.job-single-media__img img {
	width: 100%;
	display: block;
}
.job-single-media__comment {
	flex: 1 1 280px;
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin: 0;
}

/* サブ画像エリア(画像3・4・5)を横並び3列で表示 */
.job-subimage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.job-subimage-grid__img img {
	width: 100%;
	display: block;
	border-radius: 12px;
}
.job-subimage-grid__caption {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}
@media (max-width: 767px) {
	.job-subimage-grid {
		grid-template-columns: 1fr;
	}
}

.job-single-pr {
	background: #F5F5EE;
	border-radius: 12px;
	padding: 24px;
	font-size: 15px;
	line-height: 1.9;
	color: #333;
}
.job-single-pr p {
	margin: 0;
}

.job-apply-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.job-apply-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 260px;
	padding: 16px 32px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity .2s, transform .2s;
}
.job-apply-btn--main {
	background: #F46105;
	color: #fff!important;
	box-shadow: 0 4px 14px rgba(244, 97, 5, 0.35);
}
.job-apply-btn--tel {
	background: #fff;
	color: #019FE6;
	border: 2px solid #019FE6;
}
@media (min-width: 768px) {
	.job-apply-btn:hover {
		opacity: .85;
		transform: translateY(-2px);
	}
}
@media (max-width: 480px) {
	.job-apply-btn {
		min-width: 0;
		width: 100%;
	}
}

.job-single-h2 {
	border-left: 6px solid #019FE6;
	padding-left: 14px;
}

.job-single-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.job-single-table th,
.job-single-table td {
	padding: 14px 20px;
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}
.job-single-table tr:last-child th,
.job-single-table tr:last-child td {
	border-bottom: none;
}
.job-single-table th {
	width: 180px;
	background: #F5F5EE;
	color: #133F6C;
	font-weight: 600;
	white-space: nowrap;
}
@media (max-width: 600px) {
	.job-single-table,
	.job-single-table tbody,
	.job-single-table tr,
	.job-single-table th,
	.job-single-table td {
		display: block;
		width: auto;
	}
	.job-single-table tr {
		padding: 0;
	}
	.job-single-table th {
		border-bottom: none;
		padding-bottom: 4px;
	}
	.job-single-table td {
		padding-top: 0;
	}
}

.job-back-link a {
	color: #019FE6;
	font-weight: 600;
	text-decoration: none;
}
.job-back-link a:hover {
	text-decoration: underline;
}


/* ============================================================
   求人キープ機能
============================================================ */
.job-card-list--archive .job-card,
.job-card-list--related .job-card,
.job-card-list--picks .job-card {
	position: relative;
}

/* ---- キープボタン共通(★アイコン) ---- */
.job-keep-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
/* Font Awesome本体のCSS(.fa-solid等にdisplay指定あり)がjob.cssより後に
   読み込まれ、同じ詳細度のため上書きされてしまう。親セレクタを足して
   詳細度を上げ、確実にこちらが勝つようにする。 */
.job-keep-btn .job-keep-btn__icon-on { display: none; }
.job-keep-btn.is-kept .job-keep-btn__icon-on { display: inline-block; }
.job-keep-btn.is-kept .job-keep-btn__icon-off { display: none; }

/* カード上(一覧・トップページ・関連求人)：サムネイル右上に浮かぶ丸ボタン */
.job-keep-btn--card {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 5;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	color: #b0b0b0;
	font-size: 15px;
	transition: transform .15s;
}
.job-keep-btn--card .job-keep-btn__label { display: none; }
.job-keep-btn--card:hover { transform: scale(1.08); }
.job-keep-btn--card.is-kept { color: #F2A900; }

/* 求人詳細ページ：画面に固定されるフロートボタン */
.job-keep-btn--fixed {
	position: fixed;
	right: 20px;
	bottom: 110px;
	z-index: 100;
	flex-direction: column;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
	color: #b0b0b0;
	font-size: 20px;
}
.job-keep-btn--fixed .job-keep-btn__label {
	font-size: 10px;
	font-weight: 600;
	color: #666;
}
.job-keep-btn--fixed.is-kept {
	color: #F2A900;
}
.job-keep-btn--fixed.is-kept .job-keep-btn__label {
	color: #F2A900;
}
@media (max-width: 600px) {
	.job-keep-btn--fixed {
		right: 12px;
		bottom: 90px;
		width: 52px;
		height: 52px;
		font-size: 17px;
	}
}

/* /keep/ 一覧ページ内のキープ済ボタン(グレーのボタン、旧サイト踏襲) */
.job-keep-btn--list {
	padding: 12px 24px;
	border-radius: 6px;
	background: #d9d9d9;
	color: #666;
	font-size: 15px;
	font-weight: 600;
}
.job-keep-btn--list.is-kept { color: #F2A900; }
.job-keep-btn--list:not(.is-kept) {
	background: #fff;
	border: 1px solid #d9d9d9;
}

/* ---- ヘッダーの浮遊キープボタン(旧サイトと同じ、画面右端に張り付く縦型タブ) ---- */
.keep-float-btn {
	position: fixed;
	top: 100px;
	right: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 10px 10px 12px;
	border-radius: 4px 0 0 4px;
	background: #019FE6;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
	transition: background .15s;
}
.keep-float-btn:hover { background: #0186c4; }
.keep-float-btn__main {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}
.keep-float-btn__main i {
	color: #FFD200;
	font-size: 16px;
	margin-bottom: 2px;
}
.keep-count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	border-radius: 30px;
	background: #fff;
	color: #FC8300;
	font-size: 12px;
	font-weight: 400;
}
.keep-count-badge.is-hidden { display: none; }
@media (max-width: 782px) {
	.keep-float-btn {
		top: auto;
		bottom: 16px;
		right: 0;
		padding: 8px 8px 8px 10px;
	}
}


/* ============================================================
   キープ一覧ページ(/keep/)
============================================================ */
.keep-notes {
	background: #F8F8F5;
	border-radius: 8px;
	padding: 20px 24px;
	margin-bottom: 30px;
}
.keep-notes p {
	font-size: 13px;
	color: #666;
	line-height: 1.8;
}
.keep-list-count {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}
.keep-list-count span {
	color: #B71A36;
	font-size: 22px;
	font-weight: 700;
	margin: 0 2px;
}
.keep-list-empty,
.keep-list-loading {
	text-align: center;
	padding: 60px 20px;
	color: #888;
	font-size: 16px;
}

.keep-item-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.keep-item {
	border-top: 2px solid #019FE6;
	padding: 28px 0;
}
.keep-item-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 14px;
}
.keep-item-title a {
	color: #222;
	text-decoration: none;
}
.keep-item-title a:hover { text-decoration: underline; }

.keep-item-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	align-items: center;
}
.keep-item-tag {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid #F2A900;
	border-radius: 999px;
	color: #F2A900;
	font-size: 12px;
	font-weight: 600;
	background: #fff;
}
.keep-item-tags__more-wrap { display: none; }
.keep-item-tags.is-expanded .keep-item-tags__more-wrap {
	display: contents;
}
.keep-item-tags__toggle {
	border: none;
	background: none;
	color: #019FE6;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.keep-item-body {
	display: flex;
	gap: 24px;
	margin-bottom: 20px;
}
.keep-item-media {
	flex-shrink: 0;
	width: 260px;
	aspect-ratio: 3 / 2;
	border-radius: 8px;
	overflow: hidden;
	background: #F5F5EE;
}
.keep-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.keep-item-media .job-card-noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #999;
	font-size: 13px;
}
.keep-item-info {
	flex: 1;
	min-width: 0;
}
.keep-item-salary {
	font-size: 17px;
	font-weight: 700;
	color: #B71A36;
	margin-bottom: 14px;
}
.keep-item-info__row {
	display: flex;
	gap: 20px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	margin: 0;
}
.keep-item-info__row dt {
	flex-shrink: 0;
	width: 110px;
	font-size: 13px;
	font-weight: 600;
	color: #888;
}
.keep-item-info__row dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

.keep-item-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.keep-item-apply-btn,
.keep-item-detail-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}
.keep-item-apply-btn {
	background: #F2A900;
	color: #fff;
}
.keep-item-apply-btn:hover { background: #d99600; }
.keep-item-detail-btn {
	background: #019FE6;
	color: #fff;
}
.keep-item-detail-btn:hover { background: #0186c4; }

@media (max-width: 600px) {
	.keep-item-body {
		flex-direction: column;
	}
	.keep-item-media {
		width: 100%;
	}
	.keep-item-actions {
		flex-direction: column;
	}
	.keep-item-apply-btn,
	.keep-item-detail-btn,
	.job-keep-btn--list {
		width: 100%;
		justify-content: center;
	}
}
