@charset "utf-8";

/* ===================================================================

	初めての方へbeginners

=================================================================== */
.sp {
	display: none;
}

.beginners_intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 80px;
	padding: 10vw 3%;
	position: relative;
}
.beginners_intro::before,
.beginners_intro::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}
.beginners_intro::before {
	z-index: -2;
	background: url(../img/entry_bk.png) no-repeat center center;
	background-size: cover;
}
.beginners_intro::after {
	background: rgba(128, 128, 128, 0.8);
	z-index: -1;
	mix-blend-mode: multiply;
}
.beginners_intro_title {
	margin-bottom: 1rem;
	font-family: var(--maru-font-family);
	font-size: var(--font-size--xxl);
	font-weight: 900;
	text-align: center;
	color: var(--bs-white);
}
.beginners_intro_title span {
	color: var(--bs-primary);
}
.beginners_intro_txt {
	padding: 0 15vw;
	text-align: center;
	font-size: var(--font-size--md);
	font-weight: 600;
	line-height: 2;
	color: var(--bs-white);
}


.more_btn_search {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 40px auto;
}


a.btn_seach_job {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	border: none;
	background: var(--bs-primary);
	color: var(--bs-white);
	border-radius: 2.2em;
}
a.btn_seach_job:hover {
	background: var(--bs-primary-light);
}
a.btn_seach_job::before {
	content: '';
	display: block;
	margin-right: 0.5rem;
	width: 1.6em;
	height: 1.6em;
	background: url(../img/icon_search_white.svg) no-repeat center center;
	background-size: contain;
}
a.btn_seach_job::after {
	display: none;
}

.beginners_intro .more_btn_search {
	margin-bottom: 0;
}


.service_title {
	margin: 0 auto 60px;
	text-align: center;
	font-size: var(--font-size--xxl);
	font-family: var(--maru-font-family);
	font-weight: 900;
}



.beginners_flow {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 100px auto 80px;
}

.flow_list {
	display: flex;
	justify-content: space-between;
	margin: 80px auto 60px;
}
.flow_list li {
	position: relative;
	width: 31%;
	background: var(--bs-white);
	border: 3px solid var(--main-txt-color);
	border-radius: var(--border-radius-bs);
}
.flow_step {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6em;
	height: 40px;
	margin: 0 auto;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 20px;
	background: var(--main-txt-color);
	font-family: var(--en-font-family);
	font-size: calc(var(--font-size--md) * 1.3);
	font-weight: 700;
	color: var(--bs-white);
	text-align: center;
}
.flow_img {
	border-radius: calc(var(--border-radius-bs) - 3px) calc(var(--border-radius-bs) - 3px) 0 0;
	overflow: hidden;
}
.flow_list_inner {
	padding: 20px 30px;
}
.flow_title {
	margin-bottom: 20px;
	font-family: var(--maru-font-family);
	font-size: var(--font-size--lg);
	font-weight: 700;
	color: var(--bs-primary);
	text-align: center;
}




/* ===================================================================
	レスポンシブ対応用
=================================================================== */

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
@media ( max-width : 1200px ){
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.service_title {
		font-size: var(--font-size--xl);
	}
	.sp {
		display: inline-block;
	}
	
	.flow_list {
		display: block;
		margin: 40px auto;
	}
	.flow_list li {
		width: auto;
		margin-bottom: 40px;
		display: flex;
		align-items: stretch;
	}
	.flow_img {
		flex-grow: 0;
		flex-shrink: 0;
		align-self: stretch;
		width: 35%;
	/*	height: 100%;*/
		max-width: 300px;
		border-radius: calc(var(--border-radius-bs) - 3px) 0 0 calc(var(--border-radius-bs) - 3px);
	}
	.flow_img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.flow_list_inner {
		padding-top: 35px;
	}
	.flow_title {
		margin-bottom: 10px;
		text-align: left;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.flow_list_inner {
		padding: 35px 20px 20px;
	}

}
