/*-----------------------------------------------------------------------------------------
	下層ページ（教授・スタッフ紹介）
-----------------------------------------------------------------------------------------*/
/*------------------------------ ページ背景画像 ----------*/
#professor_staff {
	overflow: hidden;
	background:url(../img/body.jpg) 50% 0 no-repeat #fff;
	background-size: 100% auto;
}
/*------------------------------ ページタイトル ----------*/
#professor_staff h1 {
	background:rgba(0,54,100,0.70);
	color:#fff;
	font-size: 36px;
	letter-spacing: 8px;
	text-align: center;
	padding: 40px 0;
	line-height: 130%;
	margin-bottom:50px;
}
#professor_staff h1 span {
	font-size: 12px !important;
	display: block;
	letter-spacing: 3px;
}
/*------------------------------ ページコンテンツ ----------*/
.staffBox {
	position: relative;
	clear: both;
	overflow: hidden;
	width:1050px;
	padding:20px 0 0 0;
	margin: 0 auto 50px auto;
	background:rgba(255,255,255,0.85);
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
/*------------------------------ スタッフ一覧 ----------*/
.staff-list {
	position: relative;
	clear: both;
	overflow: hidden;
	margin:40px 20px 20px 20px;
}
.staff-list li {
	padding: 25px 20px;
	border-bottom:1px solid rgba(0,54,100,0.30);
	display: flex;
	text-align: left;
}
.staff-list li img {
	margin-right:15px;
	flex-shrink: 0;
}
.staff-list li p {
	display: block;
    margin: 0;
}
.staff-list li .staff-position {
	font-size: 18px;
	color:#003664;
	margin-bottom:20px;
}
.staff-list li .staff-name {
	font-size: 25px;
	font-weight: 700;
	color:#003664;
	margin-bottom:25px;
}
.staff-list li .affiliation {
	font-size: 15px;
}
.staff-list li .staff-theme {
	font-size: 16px;
	font-weight:400;
	color:#003664;
	margin-bottom: 8px;
}

.staff-list li .staff-theme a[href]{
    text-decoration: underline;
}
/*----- ※マーク -----*/
.attention {
	position: relative;
	padding-left:20px;
	margin:0 0 70px 40px;
	text-align: left;
}
.attention:before {
	position: absolute;
	content: '※';
	top:0;
	left: 0;
}

/*-----------------------------------------------------------------------------------------
	レスポンシブ
-----------------------------------------------------------------------------------------*/
@media only screen and (max-width: 680px) {

	/*------------------------------ ページ背景画像 ----------*/
	#professor_staff {
		background-size: 100% auto;
		margin-bottom:10%;
	}
	/*------------------------------ ページタイトル ----------*/
	#professor_staff h1 {
		font-size: 1.2rem;
		letter-spacing: 8px;
		padding: 7% 0;
		line-height: 130%;
		margin-bottom:10%;
	}
	#professor_staff h1 span {
		font-size: 0.7rem !important;
		display: block;
		letter-spacing: 2px;
	}
	/*------------------------------ ページコンテンツ ----------*/
	.staffBox {
		width:96%;
		padding:2% 0 0 0;
		margin: 0 auto 7% auto;
	}
	/*------ 画像幅を 伸縮できるように -----*/
	.staffBox img {
		width:100%;
		height: auto;
	}
	/*------------------------------ スタッフ一覧 ----------*/
	.staff-list {
		margin:10% 0 5% 0;
	}
	.staff-list li {
		overflow: hidden;
		padding: 2% 0;
		display: block;
	}
	.staff-list li img {
		margin-right:0;
		width:30%;
		height: auto;
		display: block;
		float:left;
	}
	.staff-list li p {
		float:right;
		text-align: left;
		width:65%;
		margin: 0 !important;
	}
	.staff-list li p {
        margin: 0;
    }
	.staff-list li .staff-position {
		font-size: 0.8rem;
		margin-bottom:2%;
	}
	.staff-list li .staff-name {
		font-size: 1.1rem;
		margin-bottom:3%;
	}
	.staff-list li .affiliation {
		font-size: 0.7rem;
	}
	/*----- ※マーク -----*/
	.attention {
		padding-left:20px;
		margin:0 0 4% 0 !important;
	}
	.attention:before {}

}
