@charset "UTF-8";
/* staff.css */

/* ===== 最上部 スタッフ ===== */
.top_staff_flex {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.top_staff_flex .cont_wrap,
.top_staff_flex .img_wrap  {
	width: calc(100%/2 - 3%);
}
/* 文字 */
.top_staff_flex .cont_wrap p {
	line-height: 2;
	margin-bottom: 1.25em;
}
.top_staff_flex .cont_wrap .katagaki {
	line-height: 1.7;
	font-size: 1.25em;
	font-weight: bold;
	margin-bottom: .75em;
}
/* 名前 */
.dl_name {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.dl_name dt,
.dl_name dd {
	line-height: 1.3;
	display: inline-block;
}
.dl_name dt {
	font-weight: 500;
}
.dl_name rt,
.staff_small_wrap rt {
	margin-bottom: .25em;
}
/* 資格 */
.dl_sikaku dt,
.dl_sikaku dd {
	line-height: 1.5;
	font-weight: 500;
}
.dl_sikaku dt {
	margin-bottom: .25em;
}
.dl_sikaku ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.dl_sikaku li {
	min-width: 22em;
	display: inline-block;
	margin-right: 1.5em;
}
/* 写真 */
.staff_card img,
.top_staff_flex img {
	width: 100%;
	max-width: inherit;
}
@media screen and (min-width:1201px) {
	.dl_sikaku ul {
		max-width: 800px;
	}
	.dl_sikaku li {
		width: 40%;
	}
}



/* ===== 写真付きスタッフ ===== */
.staff_big_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
.staff_big_wrap .staff_card {
	width: calc(100%/2 - 3%);
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-start;
}
.staff_big_wrap .staff_card:nth-of-type(n+3) {
	margin-top: 6%;
}
.staff_big_wrap .dl_name {
	line-height: 1;
	display: inline;
}
.staff_big_wrap .dl_name > * {
	width: 100%;
	display: block;
}
.staff_big_wrap .dl_name dt {
	margin-top:   1.25em;
	margin-bottom: .35em;
}
.staff_big_wrap .dl_name dd {
	text-align: right;
	margin-bottom: 0 !important;
}
.staff_big_wrap .list_flex:before {
	content: "○";
}


/* ===== 写真なしスタッフ ===== */
.staff_small_wrap ul {
	width: 100%;
	max-width: 700px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-left:  auto;
	margin-right: auto;
}
.staff_small_wrap li {
	width: calc(100%/3 - 3%);
	margin-bottom: 1.5em;
}





@media screen and (max-width:768px) {
	/* ===== 最上部 スタッフ ===== */
	.top_staff_flex {
		justify-content: center;
		flex-direction: column-reverse;
	}
	.top_staff_flex .img_wrap {
		width: 60%;
		margin: auto;
	}
	.top_staff_flex .cont_wrap {
		width: 100%;
	}
	/* スタッフ 肩書き */
	.top_staff_flex .cont_wrap .katagaki {
		font-size: 1em;
		font-weight: bold;
	}

	/* ===== 写真付きスタッフ ===== */
	.staff_big_wrap .staff_card {
		width: 100%;
	}
	.staff_big_wrap .staff_card:nth-of-type(n+2) {
		margin-top: 40px;
	}
	.staff_big_wrap .dl_name {
		display: flex;
		flex-wrap: nowrap;
		margin-top: 10px;
	}
	.staff_big_wrap .dl_name dt {
		margin-top: 0;
		margin-right: 2em;
	}
	.staff_big_wrap .dl_name dd {
		width: fit-content;
	}


	/* ===== 写真なしスタッフ ===== */
	.staff_small_wrap ul {
		max-width: 300px;
	}
	.staff_small_wrap li {
		width: calc(100%/2 - 3%);
		margin-bottom: 1.5em;
	}
}