/**
 * Form Progress Block Styles
 * フロント側と同じスタイル（form.cssから統一）
 */

.inta-form-progress {
	margin: 20px 0 32px 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Percentage Display */
.inta-form-progress__percentage {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 10px;
}

.inta-form-progress__percentage-value {
	font-size: 18px;
	color: #007bff;
}

/* Bar Style */
.inta-form-progress__bar-container {
	width: 100%;
	height: 8px;
	background-color: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 15px;
}

.inta-form-progress__bar {
	height: 100%;
	background-color: #007bff;
	border-radius: 4px;
	transition: width 0.4s ease-in-out;
}

/* Dots Style */
.inta-form-progress__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}

.inta-form-progress__dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	transition: all 0.3s ease;
	position: relative;
}

.inta-form-progress__dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	width: 20px;
	height: 2px;
	background-color: #e0e0e0;
	transform: translateY(-50%);
}

.inta-form-progress__dot:last-child::after {
	display: none;
}

.inta-form-progress__dot--completed {
	background-color: #28a745;
}

.inta-form-progress__dot--current {
	background-color: #007bff;
	transform: scale(1.1);
}

/* Numbers Style */
.inta-form-progress__numbers {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 15px;
}

.inta-form-progress__current {
	color: #007bff;
	font-size: 32px;
}

.inta-form-progress__separator {
	margin: 0 8px;
	color: #757575;
}

.inta-form-progress__total {
	color: #757575;
}

/* Step Titles */
.inta-form-progress__steps {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.inta-form-progress__step {
	flex: 1;
	text-align: center;
	font-size: 13px;
	color: #646970;
	padding: 8px;
	transition: all 0.3s ease;
}

.inta-form-progress__step--current {
	color: #007bff;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.inta-form-progress {
		margin: 16px 0 24px 0;
	}

	.inta-form-progress__dots {
		gap: 10px;
	}

	.inta-form-progress__dot {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.inta-form-progress__dot::after {
		width: 10px;
	}

	.inta-form-progress__steps {
		flex-direction: column;
		gap: 5px;
	}

	.inta-form-progress__step {
		font-size: 12px;
	}
}
