.clearfix:after{    /* 자식이 모두 float 을 사용할때 부모가 높이를 갖게하기 위함 */
	content:"";
	display:block;
	clear:both;
}

/* ========== 서브 공통 (sub01~sub05, sub_visual) ========== */

/* 상단 비주얼 — 배경 이미지는 sub_visual.php 에서 $subVisualBg 로 지정 (없으면 단색) */
.sub-visual {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	color: #fff;
	background: linear-gradient(135deg, rgba(30, 58, 95, 0.92), rgba(37, 99, 235, 0.88)),
		var(--sub-visual-bg, none) center/cover no-repeat;
	min-height: clamp(180px, 24vh, 320px);
}
.sub-visual--plain {
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}
.sub-visual .inner {
	width: min(1800px, 100%);
	max-width: 100%;
	margin: 0 auto;
	/* padding: clamp(56px, 8vw, 120px) max(20px, env(safe-area-inset-right, 0px)) clamp(40px, 7vw, 100px) max(20px, env(safe-area-inset-left, 0px)); */
	padding: clamp(56px, 8vw, 80px) max(20px, env(safe-area-inset-right, 0px)) clamp(40px, 7vw, 80px) max(20px, env(safe-area-inset-left, 0px));
	box-sizing: border-box;
}
.sub-kicker {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
}
.sub-title {
	margin: 0;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: clamp(28px, 4.5vw, 40px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
	word-break: keep-all;
}
.sub-copy {
	margin: 12px 0 0;
	max-width: 720px;
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	word-break: keep-all;
}
@media (max-width: 900px) {
	.sub-visual {
		min-height: clamp(160px, 18vh, 260px);
	}
	.sub-visual .inner {
		padding-top: clamp(32px, 6vw, 56px);
		padding-bottom: clamp(28px, 5vw, 48px);
	}
	.sub-kicker {
		font-size: 13px;
		margin-bottom: 8px;
	}
	.sub-title {
		font-size: clamp(24px, 6vw, 32px);
	}
	.sub-copy {
		margin-top: 10px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.sub-visual {
		background-position: center top;
	}
	.sub-visual .inner {
		padding-top: clamp(28px, 8vw, 48px);
		padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
	}
	.sub-kicker {
		font-size: 11px;
		margin-bottom: 8px;
	}
}

/* 서브 본문 래퍼 + 탭 */
.sub-content {
	position: relative;
	background: #fff;
	color: #1f2937;
	padding-top: clamp(40px, 6vw, 64px);
	padding-bottom: clamp(72px, 10vw, 120px);
	padding-left: max(16px, env(safe-area-inset-left, 0px));
	padding-right: max(16px, env(safe-area-inset-right, 0px));
	box-sizing: border-box;
}
.sub-content > .inner {
	width: min(1400px, 100%);
	margin: 0 auto;
}
.about-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin-bottom: 0;
	border-bottom: none;
	background: transparent;
}
.about-tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 18px 32px;
	border: none;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	background: transparent;
	color: #6b7280;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.about-tabs a:hover {
	color: #3b82f6;
}
.about-tabs a.active {
	background: transparent;
	border-bottom-color: #3b82f6;
	color: #3b82f6;
	font-weight: 700;
}

.subContent{
	max-width: 1400px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.subContent{
		padding: 0 max(10px, env(safe-area-inset-left, 0px)) 0 max(10px, env(safe-area-inset-right, 0px));
	}
}

/* ========== 서브 about 레이아웃 (sub01, sub02, sub03 공통) ========== */
.about-hero {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.about-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about-hero-dim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.72) 100%);
}
.about-hero-text {
	position: absolute;
	left: 50%;
	bottom: clamp(48px, 8vw, 72px);
	transform: translateX(-50%);
	width: min(1400px, calc(100% - 40px));
	color: #fff;
	text-align: center;
}
.about-hero-text .label {
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	backdrop-filter: blur(4px);
}
.about-hero-text h1 {
	margin: 0 0 12px;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.about-hero-text p {
	margin: 0;
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	word-break: keep-all;
}
.about-nav-wrap {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	position: sticky;
	top: var(--headerStackH, 0px);
	z-index: 100;
}
.about-nav-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.about-body {
	background: #fff;
	padding: clamp(56px, 8vw, 88px) 0 clamp(80px, 10vw, 120px);
}
.about-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.about-section-label {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	color: #3b82f6;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.about-section-title {
	margin: 0 0 36px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
}

/* ========== sub02 주요사업 ========== */
.biz-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	margin-bottom: clamp(56px, 8vw, 80px);
}
.biz-intro-copy h2 {
	margin: 0 0 20px;
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 800;
	line-height: 1.4;
	color: #111827;
	letter-spacing: -0.03em;
	word-break: keep-all;
}
.biz-intro-copy h2 strong {
	color: #3b82f6;
}
.biz-intro-copy p {
	margin: 0;
	font-size: 17px;
	line-height: 1.85;
	color: #4b5563;
	word-break: keep-all;
}
.biz-intro-visual {
	border-radius: 20px;
	overflow: hidden;
	min-height: 260px;
	background: #0f172a;
}
.biz-intro-visual img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}
.biz-intro-visual--soon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
	border: 1px dashed #cbd5e1;
}
.biz-intro-soon {
	text-align: center;
	padding: 32px 24px;
}
.biz-intro-soon i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	background: #fff;
	border-radius: 16px;
	color: #94a3b8;
	font-size: 24px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.biz-intro-soon span {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #64748b;
	letter-spacing: -0.02em;
}
.biz-intro-soon p {
	margin: 10px 0 0;
	font-size: 14px;
	color: #94a3b8;
	word-break: keep-all;
}
.biz-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: clamp(48px, 7vw, 64px);
}
.biz-card {
	padding: 28px 24px;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.biz-card:hover {
	border-color: #bfdbfe;
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
}
.biz-card-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	border-radius: 12px;
	color: #3b82f6;
	font-size: 22px;
}
.biz-card h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 800;
	color: #111827;
	line-height: 1.4;
	word-break: keep-all;
}
.biz-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #4b5563;
	word-break: keep-all;
}
.biz-info {
	margin-top: clamp(32px, 5vw, 48px);
	padding: 36px 32px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.biz-info h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 800;
	color: #111827;
}
.biz-info p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #4b5563;
	word-break: keep-all;
}
.biz-info a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}
.biz-info a:hover {
	text-decoration: underline;
}
.biz-apply {
	margin-top: clamp(48px, 7vw, 64px);
	padding: clamp(32px, 5vw, 48px);
	text-align: center;
	background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
	border: 1px solid #dbeafe;
	border-radius: 20px;
}
.biz-apply h3 {
	margin: 0 0 10px;
	font-size: clamp(20px, 2.5vw, 26px);
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
}
.biz-apply > p {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #64748b;
	word-break: keep-all;
}
.biz-apply__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 240px;
	padding: 16px 32px;
	background: #3b82f6;
	border: 1px solid #3b82f6;
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.biz-apply__btn:hover {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.28);
	transform: translateY(-2px);
}
.biz-apply__btn.is-disabled {
	background: #94a3b8;
	border-color: #94a3b8;
	cursor: not-allowed;
	pointer-events: none;
	transform: none;
	box-shadow: none;
}
.biz-apply__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: #94a3b8;
	word-break: keep-all;
}
.biz-screen-list {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.biz-screen-list li {
	position: relative;
	padding-left: 14px;
	font-size: 14px;
	line-height: 1.65;
	color: #4b5563;
	word-break: keep-all;
}
.biz-screen-list li + li {
	margin-top: 6px;
}
.biz-screen-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3b82f6;
}
.biz-bridge-visual {
	margin-bottom: clamp(64px, 9vw, 100px);
}
.biz-bridge-visual__main.biz-bridge-visual__item--soon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #94a3b8;
	background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px dashed #cbd5e1;
}
.biz-bridge-visual__caption {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	text-align: center;
	word-break: keep-all;
}
.biz-history {
	margin-bottom: clamp(48px, 7vw, 64px);
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
}
.biz-history-year {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 24px;
	padding: 28px 32px;
	border-bottom: 1px solid #e2e8f0;
}
.biz-history-year:last-child {
	border-bottom: none;
}
.biz-history-year__label {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	min-width: 72px;
	padding: 10px 0;
	font-size: 22px;
	font-weight: 800;
	color: #3b82f6;
	letter-spacing: -0.02em;
}
.biz-history-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.biz-history-list li {
	position: relative;
	padding-left: 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #374151;
	word-break: keep-all;
}
.biz-history-list li + li {
	margin-top: 10px;
}
.biz-history-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #93c5fd;
}

@media (max-width: 1024px) {
	.biz-cards {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.biz-intro {
		grid-template-columns: 1fr;
	}
	.biz-history-year {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 24px 20px;
	}
	.biz-history-year__label {
		justify-content: flex-start;
		padding: 0;
		font-size: 20px;
	}
}

/* ========== sub03 신청안내 ========== */
.apply-section-nav {
	margin-bottom: clamp(40px, 6vw, 56px);
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}
.apply-subtabs {
	justify-content: center;
}
.apply-subtabs a {
	flex: 1;
	min-width: 0;
	padding: 16px clamp(10px, 2vw, 24px);
	font-size: 16px;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
}
.apply-subtabs a.active {
	background: #fff;
}
.apply-section {
	margin-bottom: clamp(64px, 9vw, 100px);
	scroll-margin-top: calc(var(--headerStackH, 120px) + 88px);
}
.apply-section:last-child {
	margin-bottom: 0;
}
.apply-section-intro {
	margin: -20px 0 clamp(28px, 4vw, 36px);
	max-width: 820px;
	font-size: 17px;
	line-height: 1.85;
	color: #4b5563;
	word-break: keep-all;
}
.apply-intro-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
	border: 1px solid #dbeafe;
}
.apply-intro-badge {
	text-align: center;
	padding: 24px;
}
.apply-intro-badge i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	background: #fff;
	border-radius: 18px;
	color: #3b82f6;
	font-size: 28px;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}
.apply-intro-badge span {
	display: block;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
}
.apply-intro-badge p {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #64748b;
	word-break: keep-all;
}
.apply-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: clamp(28px, 4vw, 36px);
}
.apply-step {
	padding: clamp(24px, 3vw, 28px) clamp(20px, 2.5vw, 24px);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.apply-step:hover {
	border-color: #bfdbfe;
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
}
.apply-step__num {
	display: inline-block;
	margin-bottom: 16px;
	padding: 5px 12px;
	background: #eff6ff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #2563eb;
	letter-spacing: 0.06em;
}
.apply-step h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 800;
	color: #111827;
	line-height: 1.4;
	word-break: keep-all;
}
.apply-step p {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #4b5563;
	word-break: keep-all;
}
.apply-panel {
	padding: clamp(24px, 3vw, 32px);
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.apply-panel--policy {
	background: #fff;
}
.apply-panel__title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 800;
	color: #111827;
}
.apply-panel .biz-screen-list li {
	font-size: 16px;
	line-height: 1.75;
	color: #374151;
}
.apply-panel .biz-screen-list li + li {
	margin-top: 12px;
}
.apply-panel a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}
.apply-panel a:hover {
	text-decoration: underline;
}
.apply-policy-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}
.apply-policy-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	color: #1f2937;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
	word-break: keep-all;
}
.apply-policy-links a:hover {
	border-color: #3b82f6;
	color: #2563eb;
	background: #eff6ff;
}
.apply-policy-links a i {
	color: #94a3b8;
	font-size: 12px;
}
.apply-policy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 24px;
}
.apply-policy-item {
	padding: 24px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}
.apply-policy-item h4 {
	margin: 0 0 16px;
	font-size: 17px;
	font-weight: 800;
	color: #111827;
}
.apply-policy-item .biz-screen-list li {
	font-size: 16px;
	line-height: 1.75;
	color: #374151;
}
.apply-policy-notes {
	padding-top: 24px;
	border-top: 1px dashed #e2e8f0;
}
.apply-policy-notes p {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.75;
	color: #4b5563;
	word-break: keep-all;
}
.apply-policy-notes p:last-child {
	margin-bottom: 0;
}
.apply-reduction-basis {
	margin: -12px 0 24px;
	padding: 16px 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	font-size: 16px;
	color: #4b5563;
	line-height: 1.7;
	word-break: keep-all;
}
.apply-reduction-basis strong {
	color: #111827;
}
.apply-info-note {
	margin-top: 24px;
	margin-bottom: 0;
}
.apply-info-note p {
	font-size: 16px;
}

@media (max-width: 1024px) {
	.apply-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.apply-policy-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.apply-steps {
		grid-template-columns: 1fr;
	}
	.apply-subtabs {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}
	.apply-subtabs a {
		flex: 0 0 auto;
		white-space: nowrap;
	}
}

/* ========== sub 공통 준비중 ========== */
.sub-soon {
	max-width: 560px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 72px) clamp(24px, 4vw, 40px);
	text-align: center;
	border-radius: 20px;
}
.sub-soon__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	background: #fff;
	border-radius: 18px;
	color: #3b82f6;
	font-size: 28px;
}
.sub-soon__title {
	margin: 0 0 16px;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.02em;
	word-break: keep-all;
}
.sub-soon__copy {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.8;
	color: #64748b;
	word-break: keep-all;
}
.sub-soon__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	background: #3b82f6;
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}
.sub-soon__link:hover {
	background: #2563eb;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.28);
	color: #fff;
}

/* ========== sub04 예약안내 ========== */
.guide-wrap {
	margin: 0 auto;
}
.guide-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}
.guide-aside {
	position: sticky;
	top: calc(var(--headerStackH, 120px) + 72px);
}
.guide-aside__box {
	padding: 20px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.guide-aside__title {
	margin: 0 0 14px;
	padding: 0 8px 12px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 12px;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.guide-switch {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}
.guide-switch a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 14px;
	font-size: 16px;
	font-weight: 500;
	color: #64748b;
	text-decoration: none;
	border-radius: 10px;
	transition: color 0.2s, background 0.2s;
	word-break: keep-all;
	line-height: 1.35;
}
.guide-switch a i {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #e2e8f0;
	color: #94a3b8;
	font-size: 13px;
	flex-shrink: 0;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.guide-switch a:hover {
	color: #1e40af;
	background: #fff;
}
.guide-switch a:hover i {
	color: #3b82f6;
	border-color: #bfdbfe;
}
.guide-switch a.is-active {
	color: #1e40af;
	font-weight: 700;
	background: #fff;
	box-shadow: 0 1px 4px rgba(59, 130, 246, 0.12);
}
.guide-switch a.is-active i {
	background: #3b82f6;
	border-color: #3b82f6;
	color: #fff;
}
.guide-main {
	min-width: 0;
}
.guide-panel {
	scroll-margin-top: calc(var(--headerStackH, 120px) + 88px);
}
.guide-panel + .guide-panel {
	margin-top: 56px;
	padding-top: 56px;
	border-top: 1px solid #e2e8f0;
}
.guide-panel-head {
	margin-bottom: 28px;
}
.guide-panel-head .guide-label {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #3b82f6;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.guide-panel-head .guide-title {
	margin: 0;
	font-size: clamp(24px, 2.8vw, 32px);
	font-weight: 800;
	color: #111827;
	letter-spacing: -0.03em;
	line-height: 1.25;
}
.guide-card {
	margin-bottom: 20px;
	padding: clamp(24px, 3.5vw, 32px);
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.guide-card:last-child {
	margin-bottom: 0;
}
.guide-card__title {
	margin: 0 0 20px;
	font-size: clamp(20px, 2.2vw, 22px);
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 8px;
}
.guide-card__title::before {
	content: '';
	width: 4px;
	height: 1em;
	background: #3b82f6;
	border-radius: 2px;
	flex-shrink: 0;
}
#equip-guide .guide-card__title::before {
	background: #0ea5e9;
}
.guide-desc {
	margin: -8px 0 24px;
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.75;
	color: #64748b;
	word-break: keep-all;
}
.space-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.space-grid .space-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: border-color 0.2s;
}
.space-grid .space-item:hover {
	border-color: #bfdbfe;
}
.space-grid .space-item i {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #3b82f6;
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
}
.space-grid .space-item span {
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
	word-break: keep-all;
}
.flow-timeline {
	display: flex;
	gap: 0;
	overflow-x: auto;
	padding: 4px 0 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.flow-timeline__step {
	position: relative;
	flex: 1 1 0;
	min-width: 108px;
	padding: 0 8px;
	text-align: center;
}
.flow-timeline__step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 20px;
	left: calc(50% + 20px);
	right: calc(-50% + 20px);
	height: 2px;
	background: #e2e8f0;
	z-index: 0;
}
.flow-timeline__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: #3b82f6;
	color: #fff;
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 700;
}
#equip-guide .flow-timeline__num {
	background: #0ea5e9;
}
.flow-timeline__text {
	display: block;
	font-size: clamp(13px, 1.2vw, 16px);
	font-weight: 600;
	color: #334155;
	line-height: 1.45;
	word-break: keep-all;
}
.flow-timeline__sub {
	display: block;
	margin-top: 3px;
	font-size: clamp(11px, 1vw, 14px);
	font-weight: 400;
	color: #94a3b8;
	line-height: 1.35;
}
.guide-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.guide-list > li {
	position: relative;
	padding: 13px 0 13px 18px;
	border-bottom: 1px solid #f1f5f9;
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.75;
	color: #475569;
	word-break: keep-all;
}
.guide-list > li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 19px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #cbd5e1;
}
.guide-list > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.guide-list > li:first-child {
	padding-top: 0;
}
.guide-list > li:first-child::before {
	top: 8px;
}
.guide-list a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}
.guide-list a:hover {
	text-decoration: underline;
}
.guide-sub {
	margin-bottom: 24px;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
}
.guide-sub:last-child {
	margin-bottom: 0;
}
.guide-sub h4 {
	margin: 0 0 12px;
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 700;
	color: #1e293b;
}
.guide-table-wrap {
	margin-top: 20px;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}
.guide-table-wrap h4 {
	margin: 0;
	padding: 14px 18px;
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}
.guide-table {
	width: 100%;
	border-collapse: collapse;
	font-size: clamp(15px, 1.5vw, 16px);
}
.guide-table th,
.guide-table td {
	padding: 13px 18px;
	border-bottom: 1px solid #f1f5f9;
	text-align: left;
	line-height: 1.65;
	word-break: keep-all;
}
.guide-table tr:last-child th,
.guide-table tr:last-child td {
	border-bottom: none;
}
.guide-table th {
	width: 32%;
	font-weight: 700;
	color: #1e293b;
	background: #fafbfc;
	vertical-align: top;
}
.guide-table td {
	color: #64748b;
}
.guide-alert {
	padding: 22px 24px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
}
.guide-alert h4 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	font-size: clamp(16px, 1.8vw, 18px);
	font-weight: 700;
	color: #92400e;
}
.guide-alert h4 i {
	font-size: 16px;
}
.guide-alert .guide-list > li {
	color: #78350f;
	border-bottom-color: rgba(253, 230, 138, 0.5);
}
.guide-alert .guide-list > li::before {
	background: #f59e0b;
}
.guide-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	padding: 13px 24px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #3b82f6;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}
.guide-btn:hover {
	background: #2563eb;
	color: #fff;
	transform: translateY(-1px);
}
#equip-guide .guide-btn {
	background: #0ea5e9;
}
#equip-guide .guide-btn:hover {
	background: #0284c7;
}
.guide-spacer {
	margin-top: 20px;
}

@media (max-width: 900px) {
	.guide-layout {
		grid-template-columns: 1fr;
	}
	.guide-aside {
		position: static;
	}
	.guide-aside__box {
		padding: 0;
		background: transparent;
		border: none;
		border-radius: 0;
		border-bottom: 1px solid #e2e8f0;
		padding-bottom: 0;
	}
	.guide-aside__title {
		display: none;
	}
	.guide-switch {
		flex-direction: row;
		gap: 0;
	}
	.guide-switch a {
		flex: 1;
		justify-content: center;
		flex-direction: column;
		gap: 6px;
		padding: 14px 8px;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		border-bottom: 3px solid transparent;
		margin-bottom: -1px;
		font-size: 15px;
	}
	.guide-switch a i {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
	.guide-switch a.is-active {
		border-bottom-color: #3b82f6;
		background: transparent;
		box-shadow: none;
	}
	.guide-switch a.is-active i {
		background: #3b82f6;
		border-color: #3b82f6;
		color: #fff;
	}
}
@media (max-width: 600px) {
	.space-grid {
		grid-template-columns: 1fr;
	}
	.flow-timeline__step {
		min-width: 90px;
	}
	.guide-table th,
	.guide-table td {
		display: block;
		width: 100%;
	}
	.guide-table th {
		padding-bottom: 4px;
		border-bottom: none;
	}
}
