@charset "utf-8";

/* ============================================================================================== */
/* MAIN CONTENT                                                                                   */
/* ============================================================================================== */

.pt--subpage .page-header.keyvisual {
	background-image: url(../images/job-seeker/flow_bg.jpg);
}

.page-section {
	margin-bottom: 40px;
}

.page-section .headding-state {
	font-size: 2.2rem;
}



.flow-case {
	padding: 20px 0;
}

.flow-case__section {
	margin-top: 30px;
	counter-reset: step;
}

.flow-case__header {
	margin-bottom: 30px;
}
.flow-case__header-title {
	color: #26afd5;
}

.flow-case__steps-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0;
}

.flow-case__steps-container::before,
.flow-case__steps-container::after {
	content: "";
	display: block;
	width: calc(33.333% - 20px);
	height: 0;
	order: 2;
}

.flow-case__step {
	width: calc(33.333% - 20px);
	margin-bottom: 30px;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
}

.flow-case__step {
	position: relative;
	display: block;
	padding: 40px;
}

.flow-case__step::before {
	content: "";
	display: block;
	position: absolute;
	left: auto;
	top: 0;
	bottom: 0;
	right: -5px;
	margin: auto;
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	transform: rotate(45deg);
	clear: both;
}

.flow-case__step:last-child:before {
	display: none;
}

.flow-case__step-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.flow-case__step-title::before {
	counter-increment: step;
	content: "Step " counter(step);
	font-size: 1.2rem;
	margin-right: 10px;
	padding: 2px 5px;
	display: inline-block;
	position: static;
	font-weight: bold;
	width: auto;
	color: #fff;
	text-transform: uppercase;
	background: #26afd5;
	border-radius: 3px;
}

.flow-case__step-title-text {
	display: inline-block;
}

.flow-case__step-text {
	
}

.flow-case__step-image {
	float: right;
	margin-left: 40px;
	width: 28%;
}

.flow-case__step-image img {
	width: 100%;
	height: auto;
}

.flow-case__step-notice {
	margin-top: 20px;
	font-size: 1.2rem;
}

.flow-case__step-button {
	margin-top: 20px;
}

.flow-case__step-finish {
	display: block;
}

.flow-case__step-finish .button-state.emboss-button{
	line-height: 1.5;
}


@media screen and (max-width: 1280px) {
	.flow-case__steps-container {
		
	}
	
	.flow-case__steps-container::before,
	.flow-case__steps-container::after,
	.flow-case__step {
		width: calc(50% - 10px);
	}
	.flow-case__step {
		padding: 30px;
	}
}


@media screen and (max-width: 540px) {
	
	.page-header::after {
		background-size: auto 70px;
		margin-top: 20px;
		height: 70px;
	}
	
	.page-section .headding-state {
		font-size: 1.8rem;
	}
	
	.flow-case__steps-container {
		display: block;
	}
	
	.flow-case__steps-container::before,
	.flow-case__steps-container::after,
	.flow-case__step {
		width: 100%;
	}
	.flow-case__step {
		padding: 20px;
	}
	
	.flow-case__step {
		padding: 20px 20px 40px;
	}
	.flow-case__step-title {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	.flow-case__step-title:before {
		display: table;
		margin: 0 auto 15px;
		padding: 2px 10px;
		font-size: 1.2rem;
	}
	.flow-case__step-title-text {
		display: block;
		text-align: center;
	}
	.flow-case__step-image {
		float: none;
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	
	.flow-case__step-image img {
		width: 50%;
		border-radius: 50%;
	}
}



