@charset "utf-8";
/*--------------------------------------------------
	チーム紹介 一覧
--------------------------------------------------*/
#team_list li {
	margin-bottom: var(--px60);
}
#team_list li a {
	display: block;
}
#team_list li a .photo {
	overflow: hidden;
	margin-bottom: var(--px18);
	aspect-ratio: 1 / 1;
}
#team_list li a .photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: none;
}
#team_list li a:hover .photo img {
	transform: scale(1.1); /* 拡大 */
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#team_list li a .position {
	font-weight: 500;
	letter-spacing: 0.15em;
}
#team_list li a .name {
	margin-bottom: var(--px18);
	font-size: var(--px30w);
	font-weight: 600;
	line-height: 1.2;
}
#team_list li a .comment {
	font-size: 90%;
	line-height: 1.6;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#team_list {
		/* フレックス */
		display: flex;
		flex-wrap: wrap;
		column-gap: 3.5%;
	}
	#team_list li {
		width: 31%;
	}
}
@media only screen and (max-width: 820px) and (min-width: 641px){
	#team_list {
		column-gap: 4%;
	}
	#team_list li {
		width: 48%;
	}
}
/*--------------------------------------------------
	チーム紹介 詳細
--------------------------------------------------*/
#team_detail h2 {
	margin-bottom: var(--px24);
	font-size: var(--px50);
	font-weight: 900;
	line-height: 1.2;
	text-align: left;
	letter-spacing: 0;
}
#team_detail h2 span {
	display: block;
	font-size: var(--px12);
	letter-spacing: 0.05em;
	font-family: var(--font-family02);
	font-weight: 700;
	line-height: 1;
}
#team_detail .position {
	margin-bottom: 0.3em;
	font-size: var(--px20);
	font-weight: 900;
	letter-spacing: 0.15em;
}
#team_detail .table_style04 th,
#team_detail .table_style04 td {
	padding: 30px;
}
#team_detail .sns {
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}
#team_detail .sns li a {
	width: 40px;
	height: 40px;
	background: var(--color-primary);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
}
#team_detail .sns li a:hover {
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
#team_detail .history,
#team_detail .history th,
#team_detail .history td {
	background: none;
	border: none;
	color: var(--color-font);
}
#team_detail .history tr:nth-child(odd) {
	background: #eee;
}
#team_detail .history th,
#team_detail .history td {
	padding: 20px 30px;
}
#team_detail .history th {
	width: 8%;
	font-weight: normal;
	white-space: nowrap;
}
#team_detail .interview {
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
#team_detail .interview dl {
	width: calc(50% - 15px);
	padding: 30px;
	background: #fff;
}
#team_detail .interview dt {
	margin-bottom: var(--px18);
	padding-left: var(--rem16);
	border-left: double 4px var(--color-primary);
	font-size: var(--rem24);
	font-weight: 700;
	letter-spacing: .1rem;
}
#team_detail .interview dd {
	padding: 0;
}
#team_detail .comment {
	padding: var(--px50);
	border: 1px solid #ababab;
}
#team_detail .comment dt {
	margin-bottom: var(--px18);
	font-size: var(--rem24w);
	font-weight: 700;
	letter-spacing: .1rem;
}
#team_detail .comment dd {
	padding: 0;
}
@media only screen and (max-width: 640px){ /* スマホ */
	#team_detail .table_style04 th,
	#team_detail .table_style04 td {
		padding: 15px 10px;
	}
	#team_detail .table_style04 td {
		padding-top: 10px;
	}
	#team_detail .history th,
	#team_detail .history td {
		padding: 10px 15px;
	}
	#team_detail .history th {
		padding-bottom: 0;
	}
	#team_detail .history td {
		padding-top: 0;
	}
	#team_detail .interview {
		gap: 20px;
	}
	#team_detail .interview dl {
		width: 100%;
		padding: 20px;
	}
	#team_detail .comment {
		padding: 20px;
	}
}