/**
 * 副業適性診断 - 専用スタイル
 */
:root { --fts-primary: #D4A017; --fts-primary-light: rgba(212,160,23,0.08); --fts-primary-border: rgba(212,160,23,0.3); }

.fts-quiz-area { padding: 32px 20px; }
.fts-quiz-inner { max-width: 520px; margin: 0 auto; }

.fts-progress { height: 6px; background: var(--color-border); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.fts-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, #D4A017, #B8860B); border-radius: 3px; transition: width 0.4s ease; }
.fts-progress-text { font-size: 12px; color: var(--color-text-muted); text-align: right; margin-bottom: 24px; }

.fts-question { margin-bottom: 20px; min-height: 50px; }
.fts-question-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); line-height: 1.7; }

.fts-options { display: flex; flex-direction: column; gap: 10px; }
.fts-option {
	display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 16px;
	font-family: inherit; font-size: 14px; font-weight: 500; color: var(--color-text);
	text-align: left; line-height: 1.6; background: var(--color-white);
	border: 2px solid var(--color-border); border-radius: var(--radius);
	cursor: pointer; transition: all 0.2s ease;
}
.fts-option:hover { border-color: var(--fts-primary); background: var(--fts-primary-light); }
.fts-option.selected { border-color: var(--fts-primary); background: var(--fts-primary-light); }

.fts-option-icon {
	display: flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; font-size: 15px; font-weight: 700;
	color: #fff; border-radius: 50%; flex-shrink: 0;
}
.fts-option-text { flex: 1; }

/* 分析 */
.fts-analyze-area { padding: 60px 20px; text-align: center; }
.fts-analyze-inner { max-width: 400px; margin: 0 auto; }
.fts-analyze-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 24px; }
.fts-analyze-icons { display: flex; justify-content: center; gap: 12px; }
.fts-analyze-icon {
	display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; font-size: 16px; font-weight: 700;
	color: #fff; border-radius: 50%; animation: ftsBounce 0.6s ease-in-out infinite alternate;
}
.fts-analyze-icon:nth-child(2) { animation-delay: 0.12s; }
.fts-analyze-icon:nth-child(3) { animation-delay: 0.24s; }
.fts-analyze-icon:nth-child(4) { animation-delay: 0.36s; }
@keyframes ftsBounce { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

/* 結果 */
.fts-result-area { padding: 24px 20px; }
.fts-result-inner { max-width: 560px; margin: 0 auto; }
.fts-result-lead { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-text); text-align: center; margin-bottom: 20px; }
.fts-result-list { display: flex; flex-direction: column; gap: 16px; }

/* 結果カード */
.fts-result-card {
	background: var(--color-white); border: 2px solid var(--color-border); border-radius: 12px;
	padding: 20px; position: relative;
	opacity: 0; transform: translateY(16px); animation: ftsCardIn 0.5s ease forwards;
}
.fts-result-card:nth-child(1) { animation-delay: 0.1s; }
.fts-result-card:nth-child(2) { animation-delay: 0.3s; }
.fts-result-card:nth-child(3) { animation-delay: 0.5s; }
@keyframes ftsCardIn { to { opacity: 1; transform: translateY(0); } }

.fts-result-card--1st { border-color: #DAA520; background: linear-gradient(135deg, rgba(218,165,32,0.04), rgba(255,215,0,0.02)); }
.fts-result-card--2nd { border-color: #A0A0A0; background: linear-gradient(135deg, rgba(160,160,160,0.04), rgba(192,192,192,0.02)); }
.fts-result-card--3rd { border-color: #CD7F32; background: linear-gradient(135deg, rgba(205,127,50,0.04), rgba(222,184,135,0.02)); }

.fts-rank-badge {
	position: absolute; top: -10px; left: 16px;
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 48px; height: 24px; padding: 0 10px;
	font-size: 11px; font-weight: 700; color: #fff; border-radius: 12px;
}
.fts-result-card--1st .fts-rank-badge { background: linear-gradient(135deg, #DAA520, #B8860B); }
.fts-result-card--2nd .fts-rank-badge { background: linear-gradient(135deg, #A0A0A0, #808080); }
.fts-result-card--3rd .fts-rank-badge { background: linear-gradient(135deg, #CD7F32, #A0652B); }

.fts-card-header { display: flex; align-items: center; gap: 12px; margin-top: 8px; margin-bottom: 12px; }
.fts-job-icon {
	display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; font-size: 18px; font-weight: 700;
	color: #fff; border-radius: 50%; flex-shrink: 0;
}
.fts-job-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-text); }

.fts-reason { font-size: 13px; color: var(--color-text); line-height: 1.7; margin-bottom: 14px; padding: 10px 12px; background: var(--color-bg); border-radius: 8px; }

.fts-metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fts-metric {
	display: inline-flex; align-items: center; gap: 4px; font-size: 12px; padding: 4px 10px;
	border-radius: 20px; background: var(--color-bg); border: 1px solid var(--color-border);
}
.fts-metric-label { color: var(--color-text-muted); font-weight: 500; }
.fts-metric-value { font-weight: 700; color: var(--color-text); }
.fts-metric-value--income { color: #2DA68E; }

/* ステップ */
.fts-steps { padding: 10px 12px; background: var(--color-bg); border-radius: 8px; }
.fts-steps-title { font-size: 12px; font-weight: 700; color: var(--color-text-muted); margin-bottom: 6px; }
.fts-steps-list { display: flex; flex-direction: column; gap: 4px; }
.fts-step { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--color-text); line-height: 1.5; }
.fts-step-num {
	display: flex; align-items: center; justify-content: center;
	width: 18px; height: 18px; font-size: 10px; font-weight: 700;
	color: #fff; background: var(--fts-primary); border-radius: 50%; flex-shrink: 0; margin-top: 1px;
}

/* CTA（コメントアウト） */
/*
.fts-cta-area { margin-top: 14px; }
.fts-cta-box { padding: 14px 16px; background: rgba(212,160,23,0.06); border: 1px solid var(--fts-primary-border); border-radius: 8px; }
.fts-cta-text { font-size: 13px; color: var(--color-text); line-height: 1.7; margin-bottom: 10px; }
.fts-cta-button { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 10px 16px; font-family: inherit; font-size: 14px; font-weight: 600; color: #fff; background: linear-gradient(135deg, #D4A017, #B8860B); border: none; border-radius: var(--radius); text-decoration: none; cursor: pointer; }
*/

/* 副業一覧 */
.fts-jobs-overview { display: flex; flex-direction: column; gap: 10px; }
.fts-overview-card {
	display: flex; align-items: flex-start; gap: 10px; padding: 12px;
	background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius);
}
.fts-overview-icon {
	display: flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; font-size: 13px; font-weight: 700;
	color: #fff; border-radius: 50%; flex-shrink: 0;
}
.fts-overview-body { flex: 1; }
.fts-overview-name { font-size: 13px; font-weight: 700; color: var(--color-text); }
.fts-overview-desc { font-size: 11px; color: var(--color-text-muted); line-height: 1.5; }

/* レスポンシブ */
@media (max-width: 480px) { .fts-job-name { font-size: 16px; } }
@media (max-width: 360px) { .fts-quiz-area, .fts-result-area { padding: 24px 16px; } .fts-metrics { gap: 6px; } .fts-metric { font-size: 11px; padding: 3px 8px; } }
