@charset "UTF-8";
/* CSS Document */
/*-------------------------------*/

/* MEMBER */

/*------------------------------*/
/* ================================

リスト

================================ */
.members-lead {
	font-size: var(--txt-md);
	font-weight: 700;
	text-align: center;
	color: var(--color-main);
}
/* -----------
テーブル */
.members-list {
	margin-top: 3.8em;
}
.members-list thead {
	color: var(--color-main);
}
.members-list.table thead tr {
	background-color: transparent;
}
.members-list tbody th {
	font-weight: normal;
}

.members__link a {
	word-break: break-all;
}
.members__link:empty::before {
	content: "—";
}
@media (any-hover: hover) {
	.members__link a {
		-webkit-transition: color .15s var(--easeInQuad);
		transition: color .15s var(--easeInQuad);
	}
	.members__link a:hover ,
	.members__link a:focus-visible {
		color: var(--color-main-hover);
	}
}
@media (max-width: 959px) {
	.members-list thead {
		display: none;
	}
	.members-list__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.members-list__item th {
		padding-bottom: 0;
		width: 100%;
	}
	.members-list__item td {
		padding-top: 0.5em;
	}
	.members-list tbody th {
		font-weight: 700;
	}
}