@charset "utf-8";

.box_staff_list {
	width: 100%;
	margin: 5em auto;
	padding: 0 5%;
}
.box_staff_list section {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2%;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.box_staff_list section article {
	width: 23.5%;
	margin-bottom: 4em;
	font-weight: bold;
}
.box_staff_list section article a {
	display: block;
	padding: 0 0 2.5rem 0;
	background-color: #E6DCD6;
	color: #333;
	line-height: 1;
	transition: all 300ms 0s ease;
}
.box_staff_list section article a:hover {
	background-color: #D4C4BA;
}
.box_staff_list section article div {
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
}
.box_staff_list section article div img{
	transition: all 300ms 0s ease;
}
.box_staff_list section article a:hover div img {
	transform: scale(1.05,1.05);
	transition: all 300ms 0s ease;
}
.box_staff_list section article span {
	display: block;
	width: 80%;
	margin: 1.5rem 10%;
	padding: 0.4rem 1em;
	background-color: #55301B;
	color: #FFF;
	line-height: 1.5;
}
.box_staff_list section article h2 {
	width: 80%;
	margin: 0 10% 1.5rem 10%;
	font-size: 1.4rem;
	line-height: 1.3;
}
.box_staff_list section article small {
	width: 80%;
	margin: 0 10%;
	font-size: 1.0rem;
	color: #808080;
	font-weight: normal;
}
@media screen and (max-width: 920px) {
	.box_staff_list {
		margin: 4em auto;
	}
	.box_staff_list section article {
		margin-bottom: 3em;
	}
	.box_staff_list section article span {
		margin: 1.0rem 10%;
		font-size: 0.9em;
	}
	.box_staff_list section article h2 {
		margin: 0 10% 0.5rem 10%;
		font-size: 1.2rem;
	}
	.box_staff_list section article small {
		font-size: 0.9em;
	}
}
@media screen and (max-width: 700px) {
	.box_staff_list section {
		gap: 2.75%;
	}
	.box_staff_list section article {
		width: 31.5%;
		margin-bottom: 2em
	}
	.box_staff_list section article a {
		padding: 0 0 1.5rem 0;
	}
	.box_staff_list section article span {
		font-size: 0.8em;
	}
	.box_staff_list section article h2 {
		font-size: 1.1rem;
	}
	.box_staff_list section article small {
		font-size: 0.8em;
	}
}
@media screen and (max-width: 540px) {
	.box_staff_list {
		margin: 3em auto;
	}
	.box_staff_list section {
		gap: 4.0%;
	}
	.box_staff_list section article {
		width: 48.0%;
		margin-bottom: 2em
	}
}

.box_staff_detail {
	width: 100%;
	margin: 11em auto 6em auto;
	padding: 0 5%;
}
.box_staff_detail section {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0 5%;
	background-color: #E6DCD6;
}
.box_staff_detail section article {
	position: relative;
	top: -5em;
	width: 100%;
	max-width: 720px;
	margin: auto;
}
.box_staff_detail section article header {
	display: flex;
	align-items: flex-end;
	margin-bottom: 3em;
}
.box_staff_detail section article header div:first-child {
	width: 40%;
	margin-right: 15%;
}
.box_staff_detail section article header div:last-child {
	text-align: center;
}
.box_staff_detail section article header div span {
	display: block;
	min-width: 13em;
	margin: 1.5rem auto;
	padding: 0.4rem 1em;
	background-color: #55301B;
	font-size: 1.1em;
	font-weight: bold;
	color: #FFF;
	line-height: 1.5;
}
.box_staff_detail section article header div h2 {
	margin: 0 auto 1.0rem auto;
	font-size: 1.6rem;
	line-height: 1.3;
}
.box_staff_detail section article header div small {
	margin: 0 auto;
	font-size: 1.0rem;
	color: #808080;
	font-weight: normal;
}
.box_staff_detail section article main {
	margin-bottom: 4em;
	font-weight: bold;
	color: #5C5C5C;
	text-align: left;
	font-size: 1.1em;
}
.box_staff_detail section article main dl {
	position: relative;
	margin-bottom: 2em;
}
.box_staff_detail section article main dl dt {
	position: absolute;
	width: 20%;
	color: #623D28;
	padding: 1.5em 0 1.5em 0;
}
.box_staff_detail section article main dl dd {
	position: relative;
	padding: 1.5em 0 1.5em 25%;
	border-bottom: 1px dotted #707070;
}
.box_staff_detail section article main p {
	position: relative;
	margin-bottom: 2em;
	line-height: 2;
}
@media screen and (max-width: 920px) {
	.box_staff_detail {
		margin: 8em auto 5em auto;
	}
	.box_staff_detail section {
		padding: 0 10%;
	}
	.box_staff_detail section article header {
		flex-direction: column;
		margin-bottom: 3em;
	}
	.box_staff_detail section article header div:first-child {
		width: auto;
		max-width: 300px;
		margin: auto auto 2em auto;
	}
	.box_staff_detail section article header div:last-child {
		width: 100%;
		margin: auto;
	}
	.box_staff_detail section article header div span {
		display: block;
		width: 100%;
		max-width: 300px;
	}
	.box_staff_detail section article main {
		margin-bottom: 2em;
		font-size: 1.0em;
	}
	.box_staff_detail section article main dl dt {
		width: 35%;
	}
	.box_staff_detail section article main dl dd {
		padding: 1.5em 0 1.5em 40%;
	}
}
@media screen and (max-width: 540px) {
	.box_staff_detail {
		margin: 6em auto 4em auto;
	}
	.box_staff_detail section article {
		top: -3em;
	}
	.box_staff_detail section article header {
		margin-bottom: 1em;
	}
	.box_staff_detail section article header div:first-child {
		margin-bottom: 1em;
	}
	.box_staff_detail section article header div span {
		min-width: inherit;
		margin: 0 auto 1em auto;
	}
	.box_staff_detail section article main dl dt {
		width: 40%;
	}
	.box_staff_detail section article main dl dd {
		padding: 1.5em 0 1.5em 45%;
	}
}