@charset "shift-JIS";


.step-item {
	display: flex;
	align-items: center;
	background: #f2fafc;
	padding: 1em;
	border-radius: 12px;
	margin-bottom: 2em;
	gap: 1em;
	position: relative;
}

/* STEPラベル */
.step-label {
	background: #1fb6d5;
	color: #fff;
	padding: 0.5em 1em;
	border-radius: 4px;
	font-weight: bold;
	min-width: 80px;
	text-align: center;
	z-index: 1;
}

/* テキスト */
.step-text {
	flex: 1;
}

.step-text {
	flex: 1;
	display: flex;
	align-items: center;
	line-height: 1.5;
	margin: 0 !important;
	font-size: 1.2rem;
}


/* 画像 */
.step-item img {
	width: 200px;
	height: auto;
}

@media screen and (max-width:767px) {

	.step-item {
		flex-direction: column;
		align-items: center;
	}

	.step-text {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.step-item img {
		width: 50%;
		height: auto;
		margin: auto;
	}

	.steps::before {
		left: 50%;
		transform: translateX(-50%);
	}
}

