/* ===================================================
   HR Security Scanner - フロントエンド CSS
   hack-rescue.com デザイン準拠
   =================================================== */

/* --- 変数 --- */
.hrss-scanner {
	--hrss-primary: #1d4ed8;
	--hrss-primary-dark: #1e40af;
	--hrss-danger: #ef4444;
	--hrss-warning: #f97316;
	--hrss-caution: #eab308;
	--hrss-info: #1d4ed8;
	--hrss-safe: #22c55e;
	--hrss-text: #111827;
	--hrss-text-body: #2e3233;
	--hrss-text-light: #6b7280;
	--hrss-bg: #ffffff;
	--hrss-bg-alt: #f9fafb;
	--hrss-border: #e5e7eb;
	--hrss-radius: 12px;
	font-family: 'Noto Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
	max-width: none;
	width: 100%;
	color: var(--hrss-text);
	position: relative;
}

/* --- フォームセクション --- */
.hrss-form-section {
	background: var(--hrss-bg);
	border-radius: var(--hrss-radius);
	padding: 56px 40px;
	text-align: center;
	border: 1px solid var(--hrss-border);
}

.hrss-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 8px;
}

.hrss-brand-icon {
	display: inline-flex;
	color: var(--hrss-primary);
}

.hrss-title {
	font-size: 1.3em;
	font-weight: 800;
	margin: 0;
	color: var(--hrss-primary);
	letter-spacing: 0.02em;
}

.hrss-subtitle {
	font-size: 0.95em;
	color: var(--hrss-text-body);
	margin: 0 0 24px;
	line-height: 1.7;
}

.hrss-subtitle br + * {
	color: var(--hrss-text-light);
}

.hrss-form-note {
	font-size: 0.85em;
	color: var(--hrss-text-light);
	margin: 12px 0 0;
}

.hrss-input-group {
	display: flex;
	gap: 0;
	max-width: 600px;
	margin: 0 auto;
}

.hrss-url-input {
	flex: 1;
	padding: 14px 18px;
	font-size: 16px;
	border: 2px solid var(--hrss-border);
	border-right: none;
	border-radius: var(--hrss-radius) 0 0 var(--hrss-radius);
	outline: none;
	transition: border-color 0.2s;
	font-family: inherit;
}

.hrss-url-input:focus {
	border-color: var(--hrss-primary);
}

.hrss-submit-btn {
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: var(--hrss-primary);
	border: 2px solid var(--hrss-primary);
	border-radius: 0 var(--hrss-radius) var(--hrss-radius) 0;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: inherit;
}

.hrss-submit-btn:hover {
	background: var(--hrss-primary-dark);
	border-color: var(--hrss-primary-dark);
}

.hrss-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.hrss-spinner-icon {
	animation: hrss-spin 1s linear infinite;
}

@keyframes hrss-spin {
	100% { transform: rotate(360deg); }
}

.hrss-disclaimer {
	font-size: 0.8em;
	color: var(--hrss-text-light);
	margin: 16px 0 0;
}

/* --- エラー表示 --- */
.hrss-error {
	background: #fef2f2;
	border: 1px solid var(--hrss-danger);
	color: var(--hrss-danger);
	border-radius: var(--hrss-radius);
	padding: 12px 18px;
	margin: 16px auto 0;
	max-width: 600px;
	font-size: 0.9em;
}

/* --- プログレス --- */
.hrss-progress-section {
	background: var(--hrss-bg);
	border: 1px solid var(--hrss-border);
	border-radius: var(--hrss-radius);
	padding: 30px;
	margin-top: 20px;
}

.hrss-progress-bar-container {
	background: var(--hrss-bg-alt);
	border-radius: 20px;
	height: 12px;
	overflow: hidden;
	margin-bottom: 20px;
}

.hrss-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--hrss-primary), #3b82f6);
	border-radius: 20px;
	transition: width 0.4s ease;
}

.hrss-check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hrss-check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 0.95em;
	border-bottom: 1px solid var(--hrss-bg-alt);
}

.hrss-check-list li:last-child {
	border-bottom: none;
}

.hrss-check-icon {
	font-size: 1.1em;
	width: 24px;
	text-align: center;
}

/* --- 結果セクション --- */
.hrss-results-section {
	background: var(--hrss-bg);
	border: 1px solid var(--hrss-border);
	border-radius: var(--hrss-radius);
	margin-top: 20px;
	overflow-x: auto;
	overflow-y: hidden;
}

.hrss-result-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 30px;
	border-bottom: 1px solid var(--hrss-border);
}

.hrss-result-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.hrss-result-url {
	font-weight: 700;
	font-size: 1em;
	word-break: break-all;
}

.hrss-result-date {
	color: var(--hrss-text-light);
	font-size: 0.85em;
}

.hrss-cached-badge {
	background: var(--hrss-info);
	color: #fff;
	font-size: 0.75em;
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 600;
}

/* --- リスクバー --- */
.hrss-risk-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 20px 0;
}

.hrss-risk-gauge {
	position: relative;
	width: 120px;
	height: 120px;
	flex-shrink: 0;
}

.hrss-risk-gauge svg {
	transform: rotate(-90deg);
	width: 120px;
	height: 120px;
}

.hrss-risk-gauge-bg {
	fill: none;
	stroke: var(--hrss-bg-alt);
	stroke-width: 10;
}

.hrss-risk-gauge-fill {
	fill: none;
	stroke-width: 10;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s ease, stroke 0.6s ease;
}

.hrss-risk-gauge-score {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 1;
}

.hrss-risk-gauge-number {
	font-size: 2.2em;
	font-weight: 800;
	display: block;
}

.hrss-risk-gauge-max {
	font-size: 0.75em;
	color: var(--hrss-text-light);
	display: block;
	margin-top: 2px;
}

.hrss-risk-info {
	text-align: left;
}

.hrss-risk-label {
	font-weight: 700;
	font-size: 1.3em;
	display: block;
	margin-bottom: 4px;
}

.hrss-risk-label.safe { color: var(--hrss-safe); }
.hrss-risk-label.low { color: var(--hrss-info); }
.hrss-risk-label.medium { color: var(--hrss-caution); }
.hrss-risk-label.high { color: var(--hrss-warning); }
.hrss-risk-label.critical { color: var(--hrss-danger); }

.hrss-risk-summary {
	font-size: 0.85em;
	color: var(--hrss-text-light);
	margin: 0;
}

/* --- レポートカード --- */
.hrss-report-card {
	padding: 20px 30px;
	border-bottom: 1px solid var(--hrss-border);
}

.hrss-rc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.hrss-rc-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 14px 8px;
	background: var(--hrss-bg-alt);
	border-radius: var(--hrss-radius);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	min-width: 0;
	text-align: center;
}

.hrss-rc-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hrss-rc-grade {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #fff;
	font-size: 1.2em;
	font-weight: 800;
	flex-shrink: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hrss-rc-label {
	font-size: 0.85em;
	font-weight: 600;
	color: var(--hrss-text);
	line-height: 1.3;
	white-space: nowrap;
}

/* --- 結果セクション（単一ページ） --- */
.hrss-results-body {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px 24px;
}

.hrss-result-section {
	border-bottom: 1px solid var(--hrss-border);
	padding: 24px 0;
}

.hrss-result-section:last-child {
	border-bottom: none;
}

.hrss-result-section-title {
	font-size: 1.05em;
	font-weight: 700;
	margin: 0 0 16px;
	padding: 0 0 10px;
	color: var(--hrss-text);
	border-bottom: 2px solid var(--hrss-primary);
}

.hrss-result-section-body {
	overflow-x: auto;
	padding-left: 20px;
}

/* 結果アイテム */
.hrss-result-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--hrss-bg-alt);
}

.hrss-result-item:last-child {
	border-bottom: none;
}

.hrss-result-icon {
	font-size: 1.2em;
	width: 28px;
	text-align: center;
	flex-shrink: 0;
	padding-top: 2px;
}

.hrss-result-detail {
	flex: 1;
}

.hrss-result-detail h4 {
	margin: 0 0 4px;
	font-size: 0.95em;
	font-weight: 600;
}

.hrss-matched-snippet {
	margin: 4px 0 8px 40px;
	padding: 8px 12px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-left: 3px solid var(--hrss-warning, #eab308);
	border-radius: 4px;
	overflow-x: auto;
}

.hrss-matched-snippet code {
	font-size: 0.8em;
	word-break: break-all;
	color: #495057;
}

.hrss-result-detail p {
	margin: 0;
	font-size: 0.85em;
	color: var(--hrss-text-light);
	word-break: break-all;
}

.hrss-severity-badge {
	font-size: 0.7em;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 6px;
}

.hrss-severity-badge.critical { background: #fef2f2; color: var(--hrss-danger); }
.hrss-severity-badge.high { background: #fef2f2; color: #dc2626; }
.hrss-severity-badge.medium { background: #fefce8; color: #a16207; }
.hrss-severity-badge.low { background: #eff6ff; color: var(--hrss-info); }

/* 結果テーブル */
.hrss-result-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	table-layout: auto;
}

.hrss-result-table th,
.hrss-result-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid var(--hrss-bg-alt);
	word-break: normal;
	overflow-wrap: break-word;
}

.hrss-result-table th {
	font-weight: 600;
	color: var(--hrss-text-light);
	font-size: 0.85em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hrss-result-table td:first-child {
	white-space: nowrap;
}

/* 脆弱性テーブル: タイトル列を折り返し、右列を固定幅 */
.hrss-vuln-table { table-layout: fixed; }
.hrss-vuln-table th:first-child { width: auto; }
.hrss-vuln-table th:nth-child(2) { width: 70px; }
.hrss-vuln-table th:nth-child(3) { width: 55px; }
.hrss-vuln-table th:nth-child(4) { width: 60px; }
.hrss-vuln-table td:first-child {
	white-space: normal;
	word-break: break-word;
	overflow-wrap: break-word;
	font-size: 0.85em;
	line-height: 1.4;
}

.hrss-result-table td:last-child {
	word-break: break-all;
}

.hrss-status-ok { color: var(--hrss-safe); }
.hrss-status-warn { color: var(--hrss-warning); }
.hrss-status-fail { color: var(--hrss-danger); }

/* --- CTA --- */
.hrss-cta-section {
	padding: 30px;
	border-top: 1px solid var(--hrss-border);
}

.hrss-cta-box {
	background: var(--hrss-bg-alt);
	border-radius: var(--hrss-radius);
	padding: 30px;
	text-align: center;
}

.hrss-cta-box.danger {
	background: #fef2f2;
	border: 2px solid var(--hrss-danger);
}

.hrss-cta-box.warning {
	background: #fff7ed;
	border: 2px solid var(--hrss-warning);
}

.hrss-cta-box.safe {
	background: #f0fdf4;
	border: 1px solid var(--hrss-safe);
}

.hrss-cta-icon {
	font-size: 2em;
	margin-bottom: 10px;
}

.hrss-cta-title {
	font-size: 1.2em;
	font-weight: 700;
	margin: 0 0 10px;
}

.hrss-cta-text {
	font-size: 0.95em;
	color: var(--hrss-text-light);
	margin: 0 0 20px;
	line-height: 1.7;
}

.hrss-cta-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.hrss-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 14px 28px;
	border-radius: var(--hrss-radius);
	font-weight: 700;
	font-size: 1em;
	text-decoration: none;
	transition: opacity 0.2s;
	font-family: inherit;
}

.hrss-cta-btn:hover {
	opacity: 0.85;
}

.hrss-cta-btn-primary {
	background: var(--hrss-primary);
	color: #fff;
}

.hrss-cta-btn-secondary {
	background: var(--hrss-text);
	color: #fff;
}

.hrss-cta-price {
	font-size: 0.85em;
	color: var(--hrss-text-light);
	margin: 12px 0 0;
}

.hrss-cta-phone {
	font-size: 0.9em;
	margin: 8px 0 0;
	color: var(--hrss-text-light);
}

/* --- レポートメール --- */
.hrss-report-title {
	margin: 0 0 12px;
	font-size: 0.95em;
	font-weight: 600;
}

.hrss-report-input-group {
	display: flex;
	gap: 0;
	max-width: 450px;
	margin: 0 auto;
}

.hrss-report-email {
	flex: 1;
	padding: 10px 14px;
	font-size: 14px;
	border: 2px solid var(--hrss-border);
	border-right: none;
	border-radius: var(--hrss-radius) 0 0 var(--hrss-radius);
	outline: none;
	transition: border-color 0.2s;
	font-family: inherit;
}

.hrss-report-email:focus {
	border-color: var(--hrss-primary);
}

.hrss-report-btn {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--hrss-primary);
	border: 2px solid var(--hrss-primary);
	border-radius: 0 var(--hrss-radius) var(--hrss-radius) 0;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: inherit;
}

.hrss-report-btn:hover {
	background: var(--hrss-primary-dark);
	border-color: var(--hrss-primary-dark);
}

.hrss-report-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.hrss-report-message {
	margin-top: 8px;
	font-size: 0.85em;
	padding: 8px 12px;
	border-radius: 4px;
}

.hrss-report-message.success {
	background: #f0fdf4;
	color: var(--hrss-safe);
	border: 1px solid var(--hrss-safe);
}

.hrss-report-message.error {
	background: #fef2f2;
	color: var(--hrss-danger);
	border: 1px solid var(--hrss-danger);
}

.hrss-report-section {
	padding: 24px 30px;
	border-top: 1px solid var(--hrss-border);
	text-align: center;
}

.hrss-badge-section {
	padding: 16px 30px;
	border-top: 1px solid var(--hrss-border);
	text-align: center;
}

/* --- バッジ --- */
.hrss-badge-code {
	display: block;
	width: 100%;
	max-width: 450px;
	margin: 8px auto;
	padding: 8px 10px;
	font-size: 12px;
	font-family: monospace;
	border: 1px solid var(--hrss-border);
	border-radius: 4px;
	background: var(--hrss-bg-alt);
	color: var(--hrss-text);
	cursor: pointer;
}

/* --- 再スキャン --- */
.hrss-rescan-area {
	padding: 16px 30px;
	text-align: center;
	border-top: 1px solid var(--hrss-border);
}

.hrss-rescan-btn {
	padding: 10px 24px;
	border: 2px solid var(--hrss-border);
	border-radius: var(--hrss-radius);
	background: var(--hrss-bg);
	color: var(--hrss-text);
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s;
	font-family: inherit;
}

.hrss-rescan-btn:hover {
	border-color: var(--hrss-primary);
	color: var(--hrss-primary);
}

/* --- データソース --- */
.hrss-data-source {
	margin: 16px 0 0;
	font-size: 0.65em;
	color: #ccc;
	text-align: right;
}

/* --- サイドバー回避（テーマ fixed-contact 対策） --- */
@media (min-width: 641px) {
	.hrss-scanner {
		margin-right: 350px;
	}
}

/* --- レスポンシブ --- */
@media (max-width: 640px) {
	.hrss-form-section {
		padding: 24px 16px;
	}

	.hrss-input-group {
		flex-direction: column;
		gap: 10px;
	}

	.hrss-url-input {
		border-right: 2px solid var(--hrss-border);
		border-radius: var(--hrss-radius);
	}

	.hrss-url-input:focus {
		border-color: var(--hrss-primary);
	}

	.hrss-submit-btn {
		border-radius: 999px;
		justify-content: center;
	}

	.hrss-title {
		font-size: 1.1em;
	}

	.hrss-brand {
		flex-direction: column;
		gap: 6px;
	}

	.hrss-content-section {
		padding: 32px 20px;
	}

	.hrss-content-heading {
		font-size: 1.1em;
	}

	.hrss-feature-card {
		flex: 0 1 calc(50% - 12px);
		padding: 20px 16px;
	}

	.hrss-reason-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hrss-about-grid {
		grid-template-columns: 1fr;
	}

	.hrss-content-warning-box {
		padding: 24px 20px;
	}

	.hrss-result-header,
	.hrss-results-body,
	.hrss-cta-section,
	.hrss-rescan-area {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hrss-risk-display {
		gap: 16px;
	}

	.hrss-risk-gauge {
		width: 100px;
		height: 100px;
	}

	.hrss-risk-gauge svg {
		width: 100px;
		height: 100px;
	}

	.hrss-risk-gauge-number {
		font-size: 1.8em;
	}

	.hrss-report-card {
		padding: 16px;
	}

	.hrss-rc-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 6px;
	}

	.hrss-rc-item {
		padding: 8px 6px;
		gap: 6px;
	}

	.hrss-rc-grade {
		width: 30px;
		height: 30px;
		font-size: 1em;
	}

	.hrss-rc-label {
		font-size: 0.78em;
	}

	.hrss-cta-buttons {
		flex-direction: column;
	}

	.hrss-cta-btn {
		justify-content: center;
	}

	.hrss-report-input-group {
		flex-direction: column;
		gap: 8px;
	}

	.hrss-report-email {
		border-right: 2px solid var(--hrss-border);
		border-radius: var(--hrss-radius);
	}

	.hrss-report-email:focus {
		border-color: var(--hrss-primary);
	}

	.hrss-report-btn {
		border-radius: var(--hrss-radius);
		justify-content: center;
	}
}

/* --- 読み物コンテンツ --- */
.hrss-content-sections {
	margin-top: 48px;
}

.hrss-content-section {
	background: var(--hrss-bg);
	border: 1px solid var(--hrss-border);
	border-radius: var(--hrss-radius);
	padding: 48px 40px;
	margin-bottom: 24px;
}

.hrss-content-section p {
	font-size: 0.95em;
	line-height: 1.8;
	color: var(--hrss-text-body);
	margin: 0 0 12px;
}

.hrss-content-section p:last-child {
	margin-bottom: 0;
}

/* --- コンテンツ見出し（アイコン付き） --- */
.hrss-content-heading {
	display: flex;
	align-items: center;
	font-size: 1.25em;
	font-weight: 700;
	color: var(--hrss-text);
	margin: 0 0 20px;
}

/* --- コンテンツアイコン共通 --- */
.hrss-content-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	margin-right: 12px;
	flex-shrink: 0;
}

.hrss-content-icon--primary {
	background: rgba(29, 78, 216, 0.1);
	color: var(--hrss-primary);
}

.hrss-content-icon--warning {
	background: rgba(146, 64, 14, 0.1);
	color: #92400e;
}

.hrss-content-icon--white {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

/* --- S1: 不安喚起（淡い青背景） --- */
.hrss-content-s1 {
	background: #eff6ff;
	border: none;
}

.hrss-content-highlight {
	border-left: 3px solid var(--hrss-primary);
	padding-left: 20px;
	margin-top: 16px;
}

.hrss-content-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--hrss-primary);
	font-weight: 600;
	font-size: 0.95em;
	text-decoration: none;
	margin-top: 12px;
}

.hrss-content-link:hover {
	text-decoration: underline;
}

/* --- S2: 確認できること（カードグリッド） --- */
.hrss-feature-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.hrss-feature-card {
	flex: 0 1 180px;
	background: var(--hrss-bg-alt);
	border-radius: var(--hrss-radius);
	padding: 24px 20px;
	text-align: center;
	transition: box-shadow 0.2s;
}

.hrss-feature-card:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hrss-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(29, 78, 216, 0.08);
	color: var(--hrss-primary);
	margin-bottom: 12px;
}

.hrss-feature-title {
	font-size: 0.9em;
	font-weight: 700;
	color: var(--hrss-text);
	margin: 0 0 8px;
}

.hrss-feature-card p {
	font-size: 0.82em !important;
	color: var(--hrss-text-light) !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}

/* --- S3: 症状チェック（暖色系） --- */
.hrss-content-s3 {
	background: #fffbeb;
	border: 1px solid #fde68a;
}

.hrss-content-s3 .hrss-content-heading {
	color: #92400e;
}

.hrss-symptom-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.hrss-symptom-list li {
	position: relative;
	padding: 12px 0 12px 32px;
	font-size: 0.95em;
	line-height: 1.6;
	border-bottom: 1px solid rgba(253, 230, 138, 0.5);
}

.hrss-symptom-list li:last-child {
	border-bottom: none;
}

.hrss-symptom-list li::before {
	content: '\26A0';
	position: absolute;
	left: 0;
	top: 12px;
	color: #d97706;
	font-size: 1.1em;
}

/* 警告ボックス */
.hrss-content-warning-box {
	background: #fef3c7;
	border: 2px solid #f59e0b;
	border-radius: var(--hrss-radius);
	padding: 32px;
	text-align: center;
}

.hrss-content-warning-box p {
	margin: 0 0 12px;
	font-size: 0.9em;
	line-height: 1.7;
	text-align: left;
}

.hrss-warning-note {
	color: var(--hrss-text-light) !important;
	font-size: 0.85em !important;
}

.hrss-warning-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f59e0b;
	color: #fff;
	margin-bottom: 16px;
}

.hrss-content-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 16px 40px;
	background: var(--hrss-primary);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1em;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
	margin-top: 8px;
}

.hrss-content-cta-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

/* --- S4: 選ばれる理由 --- */
.hrss-reason-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.hrss-reason-item {
	background: var(--hrss-bg);
	border: 1px solid var(--hrss-border);
	border-radius: var(--hrss-radius);
	padding: 28px 20px;
	text-align: center;
	transition: box-shadow 0.2s, transform 0.2s;
}

.hrss-reason-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.hrss-reason-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(29, 78, 216, 0.08);
	color: var(--hrss-primary);
	margin-bottom: 12px;
}

.hrss-reason-number {
	font-size: 1.6em;
	font-weight: 800;
	color: var(--hrss-primary);
	line-height: 1.2;
}

.hrss-reason-label {
	font-size: 0.85em;
	font-weight: 600;
	color: var(--hrss-text);
	margin-bottom: 8px;
}

.hrss-reason-item p {
	font-size: 0.8em !important;
	color: var(--hrss-text-light) !important;
	margin: 0 !important;
	line-height: 1.5 !important;
}

/* --- S5: スキャナーについて（青背景） --- */
.hrss-content-s5 {
	background: var(--hrss-primary);
	border: none;
	color: #fff;
}

.hrss-content-s5 .hrss-content-heading {
	color: #fff;
}

.hrss-about-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hrss-about-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--hrss-radius);
	padding: 28px 24px;
}

.hrss-about-card h4 {
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 10px;
}

.hrss-about-card p {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 0.88em !important;
	line-height: 1.7 !important;
}

.hrss-about-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	margin-bottom: 14px;
}

/* --- セクション見出し（統合タブ内） --- */
.hrss-section-heading {
	margin: 24px 0 12px;
	padding: 8px 12px;
	font-size: 1em;
	font-weight: 700;
	color: var(--hrss-text);
	border-left: 4px solid var(--hrss-primary);
	background: var(--hrss-bg-alt);
	border-radius: 0 var(--hrss-radius) var(--hrss-radius) 0;
}

.hrss-section-heading:first-child {
	margin-top: 0;
}
