@charset "utf-8";

/* ------------------------------
    member
------------------------------ */

/* sec_interview */

#sec_interview {
	overflow: hidden;
}
#sec_interview .wrap {
	width: 980px;
}
#sec_interview .box {
	margin: 80px 0;
	position: relative;
}
#sec_interview .img_box .img {
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: 150px;
}
#sec_interview .img_box .wrap {
	padding-right: 400px;
}
#sec_interview .name {
	color: #333;
	font-size: 1.8rem;
	line-height: 1.4em;
	font-weight: bold;
	margin-bottom: 1em;
}
#sec_interview .career {
	background: #EDF4FA;
	padding: 30px 40px;
}
#sec_interview .ttl_career {
	color: #00529C;
	font-weight: bold;
	margin-bottom: 1em;
	font-size: 18px;
}
#sec_interview .career .career_list div {
	display: flex;
}
#sec_interview .career .career_list dt {
	width: 5em;
	font-size: 15px;
}
#sec_interview .career .career_list dd {
	font-size: 15px;
	width: calc(100% - 5em);
}
#sec_interview .box:first-child {
	margin-bottom: -40px;
}

@media screen and (max-width : 767px) {

	#sec_interview .wrap {
		width: 90%;
	}
	#sec_interview .box {
		margin: 8vw 0;
	}
	#sec_interview .img_box .img {
		position: static;
		margin-left: 0;
		margin-bottom: 5vw;
		text-align: center;
	}
	#sec_interview .img_box .wrap {
		padding-right: 0;
	}
	#sec_interview .name {
		font-size: 4vw;
	}
	#sec_interview .career {
		padding: 20px;
	}
	#sec_interview .ttl_career {
		font-size: 15px;
	}
	#sec_interview .career .career_list div {
		display: block;
		margin-top: 10px;
	}
	#sec_interview .career .career_list div:first-child {
		margin-top: 0;
	}
	#sec_interview .career .career_list dt {
		width: 5em;
		font-size: 12px;
		font-weight: bold;
	}
	#sec_interview .career .career_list dd {
		font-size: 12px;
		width: 100%;
	}
	#sec_interview .box:first-child {
		margin-bottom: -3vw;
	}

}

/* sec_link */

#sec_link {
	margin-top: 50px;
}
#sec_link .ttl {
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1.5em;
}
#sec_link .list .item {
	flex: 1 1 auto;
	position: relative;
}
#sec_link .list .item a:hover {
	opacity: 1;
}
#sec_link .list .item .img img {
	width: 100%;
}
#sec_link .list .item .name {
	background: rgba(0, 0, 0, .5);
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	opacity: 0;
	transition: opacity .5s;
	text-align: center;
}
#sec_link .list .item a:hover .name {
	opacity: 1;
}

@media screen and (max-width : 767px) {

	#sec_link {
		margin-top: 10vw;
	}
	#sec_link .ttl {
		font-size: 5vw;
	}
	#sec_link .list {
		flex-wrap: wrap;
	}
	#sec_link .list .item {
		width: 100%;
		height: 35vw;
		overflow: hidden;
	}
	#sec_link .list .item .name {
		font-size: 3vw;
		padding: 5vw;
	}

}