
* {
	font-family: "Noto Sans JP", sans-serif;
}

p {
	line-height: 2.2;
	padding: 1rem;
}

h3 {
	font-weight: bold;
}

h3 span {
	display: block;
}


.flex {
	display: flex;
}

.merit_box {
/*	width: 80%;*/
	width: 70%;
	margin: auto;
	margin-top: 150px;
	margin-bottom: 60px;
	gap: 70px
}

.merit_item_box {
	display: flex;
	align-items: center;
}

.recruiter_left {
	width: 60%
}

.recruiter_right {
	width: 40%;
}

.recruiter_msg {
/*	line-height: 30px;*/
	line-height: 2.2;
}

.recruiter_subtitle {
	display: block;
	color: #f1881a;
	font-size: 28px;
}

.recruiter_img {
	width: 100%;
}

.number {
	font-size: 2.5rem;
	color: #f8d8b6;
}

.item_msg_leftbox {
/*	display: flex;*/
/*	align-items: center;*/
	margin-right: 70px;
	box-sizing: border-box;
}

.item_msg_rightbox {
	margin-left: 70px;
	box-sizing: border-box;
}

.item_photo_right {
	margin-right: calc(40% - 50vw);
}

.item_photo_left {
	margin-left: calc(40% - 50vw);
}


.flow_title {
	color: #f8d8b6;
/*	font-size: 48px;*/
	font-size: 7rem;
	text-align: center;
	line-height: 0.9;
}

.flow_title {
/*	margin-bottom: 80px;*/
	margin-bottom: 140px;
}

.flow_subtitle {
/*	font-size: 28px;*/
	font-size: 1rem;
	color: #111111;
	display: block;
}

.flow_msg {
	text-align: center;
	margin-bottom: 80px;
}

.step_section {
	width: 60%;
	margin: auto;
	margin-bottom: 100px;
}

.step_left {
	width: 20%;
}

.step_right {
	width: 80%;
}

.flow_box {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 50px;
}

.flow_box:after {
	position: absolute;
	font-family: "Material Icons";
	content: "\e5cf";
	display: block;
	font-size: 3rem;
	bottom: -1.5rem;
	left: 40%;
	z-index: 100;
}

.step_img_box {
	width: 90px;
	height: 90px;
	border: 1px solid #dcdddd;
	border-radius: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.step_img {
	width: 60px;
	height: 60px;
}

.step {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	letter-spacing: 2px;
}

.step_num {
	color: #f1881a;
	font-size: 24px;
	display: flex;
}

.photo_out {
	opacity: 0;
}

.photo_in {
	animation-name: photo_in_anime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes photo_in_anime {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


@media	screen	and	(max-width:	767px) {
	.flex {
		flex-wrap: wrap;
	}
	
	.flow_title {
		font-size: 3rem;
	}
	
	.recruiter_left {
		width: 100%;
	}
	
	.recruiter_right {
		width: 100%;
	}
	
	.merit_box {
		width: 100%;
	}
	
	.merit_item_box {
		flex-direction: column;
	}
	
	.item_msg_rightbox {
		margin-left: 12px;
	}
	
	.item_msg_leftbox {
		margin-right: 0px;
		margin-left: 12px;
	}
	
	.item_photo_right {
		margin-right: 0px;
	}
	
	.item_photo_left {
		margin-left: 0px;
	}
	
	.item_photo_right > img, .item_photo_left > img {
		width: 100%;
		height: auto;
	}
	
	.order_photo {
		order: 1;
	}
	
	.step_left {
		width: 100%;
	}
	
	.step_right {
		width: 100%;
	}
	
	.step_img_box {
		margin: auto;
	}
	
	.step {
		text-align: center;
	}
	
	.step_num {
		justify-content: center;
	}
}