@charset "UTF-8";


/* === staff_box === */
.staff_box {
	
}

.staff_content_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin: 0 auto 4rem;
	border: 1px solid #ddd;
	padding: 10px;
}

.staff_content_image_box {
	flex: 0 0 400px;
	text-align: center;
}

.staff_content_image_photo {
	display: inline-block;
}

.staff_content_image_photo > img {
	width: 180px;
}

.staff_content_image_name {
	font-size: 1.08rem;
	font-weight: bold;
}

.staff_content_list {
	flex: 1 0 300px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 10px;
}

.staff_content_list dt,
.staff_content_list dd {
	flex: 1 1 50%;
	padding: 0 10px;
}
.staff_content_list dt {
	text-align: center;
	font-weight: bold;
}

.staff_content_comment_box {
	flex: 0 0 380px;
	line-height: 2.0;
}

.staff_content_comment_text {
	font-size: 0.93em;
}

.staff_content_comment_headline {
	font-weight: bold;
}

@media screen and (max-width: 480px){
	.staff_content_box {
		flex-flow: row wrap;
	}
	
	.staff_content_image_box {
		flex: 1 1 auto;
	}

	.staff_content_image_photo {
		width: 45%;
	}
	
	.staff_list > li {
		flex: 1 1 auto;
	}

	.staff_content_comment_box {
		flex: 1 1 auto;
	}
}