@charset "utf-8";
/*==================================================
	【スタッフ紹介】ページ固有のスタイル
==================================================*/
#staff .box_staff {
	border: 1px solid var(--color-gold);
	align-items: flex-start;
	background-color: #fff;
	margin: 0 auto 80px;
}
#staff .box_staff:last-of-type {
	margin-bottom: 0px;
}
#staff .box_staff img {
	width: 28%;
	object-fit: contain;
	background-color: #eaeaea;
}
#staff .box_staff .box_detail {
	width: 72%;
	padding: 15px 45px;
}
#staff .box_staff .box_detail dl + dl {
	border-top: 1px solid var(--color-gold);
	padding-top: 10px;
	margin-top: 10px;
}
#staff .box_staff .box_detail dt {
	color: var(--color-gold);
	font-size: 90%;
	font-weight: 700;
	letter-spacing: 0.1em;
}
#staff .box_staff .box_detail dt.red {
	color: var(--color-red);
}
#staff .box_staff .box_detail dd.name {
	font-size: 140%;
}
#staff .box_staff .box_detail dd.name span {
	font-size: 70%;
	opacity: 0.6;
	padding-left: 1em;
}
#staff .box_staff .box_detail dd.history {
	font-size: 90%;
}
#staff .box_staff .box_detail dd.logo01 a {
	display: inline-block;
	width: 280px;
	margin-top: 20px;
}
#staff .box_staff .box_detail dd.logo01 a img {
	width: 100%;
	background-color: #fff;
}
#staff .box_staff .box_detail dd ul.maru li {
	position: relative;
	padding-left: 16px;
}
#staff .box_staff .box_detail dd ul.maru li::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	background: #000;
	border-radius: 50%;
	top: 12px;
	left: 0;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#staff .box_staff .box_detail dd ul.yoko {
		display: flex;
		flex-wrap: wrap;
	}
	#staff .box_staff .box_detail dd ul.yoko li + li {
		margin-left: 20px;
	}
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#staff .box_staff .box_detail {
		padding: 15px 25px;
	}
	#staff .box_staff .box_detail dd.logo01 a {
		width: 190px;
		margin-top: 15px;
	}
	#staff .box_staff {
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#staff .box_staff {
		width: 90%;
	}
	#staff .box_staff img {
		width: 100%;
	}
	#staff .box_staff .box_detail {
		width: 100%;
		padding: 15px 20px;
	}
}