@charset "utf-8";
/* CSS Document */

.l-flow {
	background: #63d6f3;
}
.l-flow .c-secTtl {
	color: white;
}
.l-flow__steps {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.l-flow__steps .step {
	max-width: 250px;
	width: 25%;
}
.l-flow__steps .step img {
	width: 100%;
	height: auto;
}
.l-flow__steps .arrow {
	display: flex;
	max-width: 14px;
	width: 1.4%;
}
.l-flow__steps .step-title {
	font-weight: bold;
	margin-top: 15px;
	text-align: center;
}
.l-flow__steps .step-desc {
	font-size: 14px;
	margin-top: 5px;
	text-align: center;
}
.l-flow__buttons {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.l-flow__buttons .button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: calc(50% - 10px);
	padding: 20px 25px;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	background-image: url("../../images/common/icon_arrow.svg");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: right 20px center;
}
.l-flow__buttons .button img.icon {
	height: 24px;
	width: auto;
}
@media (max-width: 768px) {
	.l-flow__steps {
		justify-content: flex-start;
		flex-direction: column;
		gap: 2em;
	}
	.l-flow__steps .step {
		max-width: 100%;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 1em;
	}
	.l-flow__steps .step img {
		width: 100px;
		height: 140px;
		object-fit: cover;
		object-position: top;
		display: block;
	}
	.l-flow__steps .arrow {
		display: none;
	}
	.l-flow__steps .step-text {
		flex: 1;
	}
	.l-flow__steps .step-title {
		margin-top: 0;
		text-align: left;
	}
	.l-flow__steps .step-desc {
		text-align: left;
	}
	.l-flow__buttons {
		margin-top: 2em;
	}
	.l-flow__buttons .button {
		gap: 5px;
		width: 100%;
		padding: 10px 15px;
		font-size: clamp(1rem, 0.669rem + 1.47vw, 1.375rem) /*360-16/768-22*/ ;
		background-size: 6px;
		background-position: right 14px center;
	}
	.l-flow__buttons .button img.icon {
		height: 20px;
	}
}
@media (max-width: 550px) {
	.l-flow__buttons {
		flex-direction: column;
	}
}