/**
 * ご依頼の流れ ステップコンポーネント（.flow-step）
 * 番号バッジ付きの円形アイコン＋タイトル＋説明文。
 */

.flow-step {
	position: relative;
	text-align: center;
	padding: 8px;
}

.flow-step__icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	background-color: var(--color-navy);
	border-radius: 50%;
}

.flow-step__icon {
	width: 28px;
	height: 28px;
	color: #ffffff;
}

.flow-step__number {
	position: absolute;
	top: -6px;
	right: -6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: var(--color-gold);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 50%;
	border: 2px solid var(--color-bg);
}

.flow-step__title {
	margin: 0 0 6px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-text);
}

.flow-step__desc {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.7;
}
