/* テンプレート利用～印刷までの流れ*/

.order-flow-section{
	margin:40px 0;
}

.order-flow-box{
	display:flex;
	flex-wrap:wrap;
	gap:15px;
	margin-top:20px;
}

.order-flow-step{
	position:relative;
	flex:1;
	min-width:180px;
	padding:20px 15px;
	border:1px solid #d9d9d9;
	border-radius:8px;
	background:#fff;
	box-sizing:border-box;
}

.order-flow-step::after{
	content:"▶";
	position:absolute;
	right:-12px;
	top:50%;
	transform:translateY(-50%);
	color:#0202e5;
	font-size:20px;
	font-weight:bold;
}

.order-flow-step:last-child::after{
	display:none;
}

.order-flow-num{
	display:flex;
	align-items:center;
	justify-content:center;
	width:34px;
	height:34px;
	border-radius:50%;
	background:#0202e5;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	margin-bottom:12px;
}

.order-flow-step h3{
	margin:0 0 10px;
	padding:0;
	border:none;
	font-size:16px;
	font-weight:bold;
	line-height:1.4;
	color:#0202e5;
}

.order-flow-step p{
	margin:0;
	font-size:14px;
	line-height:1.8;
}

/* タブレット */

@media screen and (max-width:1024px){

	.order-flow-step{
		min-width:calc(50% - 8px);
	}

	.order-flow-step::after{
		display:none;
	}
}

/* スマホ */

@media screen and (max-width:767px){

	.order-flow-box{
		display:block;
	}

	.order-flow-step{
		width:100%;
		margin-bottom:15px;
	}

	.order-flow-step:last-child{
		margin-bottom:0;
	}

	.order-flow-step::after{
		content:"▼";
		display:block;
		position:static;
		transform:none;
		text-align:center;
		margin-top:12px;
		color:#0202e5;
	}

	.order-flow-step:last-child::after{
		display:none;
	}
}
