@charset "utf-8";

/* ========================================================
	detail.css => スタッフ詳細ページ用CSS
======================================================== */

/* staff_tab
============================================================================================================ */
.staff_tab {
	margin-bottom: 40px;
}
.staff_tab ul {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.staff_tab ul li {
	display: table-cell;
	border-right: 2px solid #ededed;
	border-left: 2px solid #ededed;
	vertical-align: middle;
}
.staff_tab ul li a {
	display: block;
	color: #333;
	padding: 6px 0;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #ededed;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.5;
}
.staff_tab ul li a.current {
	border-top-color: #ededed;
	border-bottom-color: #fff;
}
.staff_tab ul li a span {
	display: block;
}
.staff_tab ul li a .catch {
	color: #29387d;
}
.staff_tab ul li a .name {
	font-size: 15px;
	font-size: 1.5rem;
}
.staff_tab ul li a.current .name {
	color: #29387d;
}
.staff_tab ul li a:hover .name {
	text-decoration: underline;
}



@media screen and (max-width: 680px) {
	.staff_tab {
		margin-bottom: 20px;
	}
	.staff_tab ul {
		display: block;
		width: auto;
		margin-bottom: 20px;
		border-top: 1px solid #ededed;
		border-left: 1px solid #ededed;
	}
	.staff_tab ul:after {
		content: ""; display: table; clear: both;
	}

	.staff_tab ul li {
		display: block;
		float: left;
		width: 50%;
		border-left: 0;
		border-top: 0;
		border-right: 1px solid #ededed;
		border-bottom: 1px solid #ededed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.staff_tab ul li a {
		padding: 6px 0;
		border-top: 0;
		border-bottom: 1px solid #ededed;
		font-size: 1.1rem;
	}
	.staff_tab ul li a.current {
		background-color: #29387d;
	}
	.staff_tab ul li a.current > * {
		color: #fff !important;
	}
	.staff_tab ul li a .name {
		font-size: 1.4rem;
	}
}






/* staff_detail
============================================================================================================ */
.staff_detail {
	display: table;
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fafafa;
	margin-bottom: 20px;

}
.staff_detail > * {
	display: table-cell;
	padding: 30px;
	vertical-align: top;
}

.staff_detail .left{
	float: left;
	background-color: #fafafa;
}
.staff_detail dl dt{
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2.0;
	margin: 5px 0;
}
.staff_detail dl dt span{
	font-weight: bold;
	font-size: 24px;
	font-size: 2.4rem;
}
.staff_detail .img{
	float: right;
}
.staff_detail .img + .img {
	margin-top: 25px;
}
@media screen and (max-width: 680px) {
	.staff_detail {
		display: block;
		width: auto;
	}
	.staff_detail > * {
		display: block;
		padding: 10px;
		vertical-align: top;
	}

	.staff_detail .left {
		width: auto;
	}
	.staff_detail .left .img + .img {
		margin-top: 15px;
	}
.staff_detail .img{
	float: none;
}
}
/* staff_detail
============================================================================================================ */

@media screen and (max-width: 680px) {
	#mainArea dl dt{
		font-size: 1.6rem;
	}

