@charset "UTF-8";

/* recruit */
h2.recruit {
	background-color: #00AFEC;
}
.recruit_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
}
.recruit_btn {
	background-color: #0068B6;
	width: 48%;
	padding: 2.5rem 0;
	position: relative;
}
.recruit_btn:nth-child(4n - 2),
.recruit_btn:nth-child(4n - 1) {
	background-color: #00AFEC;
}

.recruit_btn::after {
	position: absolute;
	font-size: 2rem;
	content: "→";
	color: #fff;
	display: inline-block;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 959px){}


@media screen and (max-width: 768px){
	.recruit_btn {
    width: 100%;
	}
	.recruit_btn::after {
    right: 5%;
		top: 80%;
	}
	.recruit_btn:nth-child(odd){
		background-color: #0068B6;
	}
	.recruit_btn:nth-child(even){
    background-color: #00AFEC;
	}
	.recruit_wrap {
    font-size: 1.2rem;
	}
}