/*※印部分*/
div.kome > ol {
	padding-left: 0px;
}

div.kome > ol li {
	font-size: 14px;
	font-weight: 500;
	color: #001317;
	padding-left: 1em;
	text-indent: -1em;
}

div.kome > ol li:before {
	display: inline;
	position: static;
	content: "※";
}




/*** 社員の声一覧 *****************/
section.interview_list {
	padding-bottom: 110px;
}
/*スタッフ画像一覧部分*/
section.interview_list ul.staff {
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
section.interview_list ul.staff li {
	width: 344px;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
	margin-bottom: 40px;
}
ul.staff li::before {
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../../images/recruit/interview/interview_parts_01.png);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	width: 44px;
	height: 284px;
	z-index:1;
}
ul.staff li::after {
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../../images/recruit/interview/interview_parts_02.png);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	width: 344px;
	height: 6px;
}
section.interview_list ul.staff li:not(:nth-of-type(3n)) {
	margin-right: calc((100% - (344px * 3) )/ 2);
}
section.interview_list ul.staff li a {
	display: block;
}
section.interview_list ul.staff li a img {
	width: 100%;
	height: auto;
}

/*オンマウス調整*/
ul.staff div.box {
	width: 100%;
	height: 464px;
	cursor: pointer;
}
ul.staff div.box a {
	display: block;
	width: 100%;
	height: 100%;
	transition: .5s;
	position: relative;
}
ul.staff div.box a::after {
	position: absolute;
	bottom: 18px;
	right: 20px;
	background-image: url(../../images/recruit/interview/interview_parts_off.png);
	background-size: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	content: '';
	display: inline-block;
	width: 46px;
	height: 46px;
}
ul.staff div.box a img {
	width: 100%;
	height: auto;
	transition: .5s;
}
/*hover*/
ul.staff div.box a:hover {
	opacity: 0.75;
}
ul.staff div.box a:hover img {
	transform: scale(110%);
	opacity: 1;
}
ul.staff div.box a:hover::after {
	background-image: url(../../images/recruit/interview/interview_parts_on.png);
}

/*スタッフ情報*/
ul.staff div.box a > div {
	position: absolute;
	bottom: 24px;
	left: 20px;
}
ul.staff div.box a > div h3 {
	font-size: 19px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 16px;
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 1.0));
}
ul.staff div.box a > div p {
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
	filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 1.0));
}
ul.staff div.box a > div p b {
	font-size: 26px;
	font-weight: 500;
	margin-top: 12px;
}

@media screen and (max-width: 1220px) {
	
    section.interview_list {
    	padding-bottom: 80px;
    }
	section.interview_list ul.staff {
		max-width: 710px;
	}
	section.interview_list ul.staff li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	section.interview_list ul.staff li:nth-child(odd) {
		margin-right: calc(100% - (344px * 2));
	}

}
@media screen and (max-width: 820px) {

	section.interview_list ul.staff {
		max-width: 344px;
	}
	section.interview_list ul.staff li:nth-child(odd) {
		margin-right: 0;
	}

}

