@keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
.blinking{
	animation:blink 1s ease-in-out infinite alternate;
}
.recruit{
	color: #000;
	text-align: center;	
}
.recruit__inner{
	border: 7px solid #2111ea;
	background-color: #df2020;
	position: relative;
	overflow: hidden;
	max-width: 80%;
	width: 800px;
	height: 408px;
	max-height: 40.8vw;
	margin: 0 auto;
}
.recruit__inner > div{
	position: absolute;
}
.recruit__item-1{		
	height: 100%;
	left: 2.5vw;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;    
}
.recruit__item-1 p{
	color: #fff;
	font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.recruit__item-1 p:nth-child(1){
	font-size: 50px;
	line-height: 1.3em;
}
.recruit__item-1 p:nth-child(2){
	font-size: 60px;
	line-height: 1.3em;	
}
.recruit__item-2{
	font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	background-color: #fff;
	display: block;
	border-radius: 100%;	
	height: 408px;
	max-height: 40.8vw;
	width: 408px;
	max-width: 40.8vw;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	transform: scale(1.1);
	font-size: 50px;
	line-height: 1.3em;
	padding-top: 1vw;
	box-sizing: border-box;
}
.recruit__item-3{
	background-color: #000;	
	border-radius: 100%;	
	height: 90px;
	width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0.5vw;
	right: 0.5vw;	
}
.recruit__item-3 p{
	color: #fff;
	font-size: 27px;
	line-height: 1.3em;
}
@media(max-width: 768px) {
	.recruit__inner{
		width: 92%;
		height: 47.8vw;
		border: 3px solid #2111ea;
	}
	.recruit__inner{
		width: 90%;
		height: 47.8vw;
	}
	.recruit__item-1 p:nth-child(1){
		font-size: 5vw;
	}
	.recruit__item-1 p:nth-child(2){
		font-size: 6.5vw;
	}
	.recruit__item-2{
		font-size: 5.3vw;
		line-height: 1.3em;
		padding-top: 9vw;
	}
	.recruit__item-3 {
		height: 12vw;
		width: 12vw;
		top: 1vw;
		right: 1.5vw;
	}
	.recruit__item-3 p {
		font-size: 3vw;
		line-height: 1.3em;
	}
}



.average{
	margin-bottom: 50px;
}
.average__title{
	font-size: 22px;
	text-align: center;
	position: relative;
}
.average__title:after{
	content: "";
	width: 70px;
	height: 3px;
	background-color: #E60012;
	position: absolute;
	bottom: 0;
	left: calc(50% - 35px);
}
.average__body{
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
.average__item{
	background-color: #f8f8f8;
	width: 31%;
	padding: 20px;
	box-sizing: border-box;
}
.average__item .panel-value, .average__item .panel-differ{
	color: #005790;
}
.average__item .panel-text{
	font-size: 20px;
	font-weight: bold;
}
.average__item .panel-date {
	font-size: 12px;
	margin: 20px 0;
}
.average__item .panel-value{
	font-size: 30px;
}
@media(max-width: 768px) {
	.average__item{
		width: 100%;
		margin-bottom: 10px;
	}
}