/*--- 医師・クリニック紹介 ---*/

/* ページタイトル */
#page_header::before{
	background-image: url(../images/hd_clinic.jpg);
}

/* 院長あいさつ */
.msg_container{
	display: flex;
	justify-content: space-between;
}
.msg_container .doctor_photo{
	flex-shrink: 0;
	width: 360px;
	margin-right: 40px;
}
.msg_container .doctor_photo > img{
	width: 100%;
	border-radius: 40px;
}
.msg_container .doctor_photo figcaption{
	margin-top: 10px;
	font-size: 1.2em;
	text-align: center;
}
.msg_container .doctor_msg{
	line-height: 2;
}

/* 経歴他 */
.career_content{
	list-style: none;
	margin-top: 40px;
}
.career_content > li{
	display: flex;
	padding: 20px;
	border-bottom: solid 1px #CCC2A3;
}
.career_content > li:first-of-type{
	border-top: solid 1px #CCC2A3;
}
.career_content > li > h4{
	flex-shrink: 0;
	margin-right: 40px;
	min-width: 6em;
	font-size: 1.5em;
}

.career_history{
	display: table;
}
.career_history > dl{
	display: table-row;
}
.career_history > dl > dt,
.career_history > dl > dd{
	display: table-cell;
	padding: 0.2em 0;
}
.career_history > dl > dt{
	padding-right: 1em;
	white-space: nowrap;
}

.career_list{
	list-style: none;
}
.career_list > li{
	padding: 0.2em 0;
}
.career_list.career_works > li:not(:first-of-type){
	margin-top: 0.5em;
}
