/*===============================================================================
・の付いたリスト
================================================================================*/
.c-descList {
	--list-fz: 1rem;
	--list-lh: 1.6;
}
.c-descList > li {
	position: relative;
	padding-left: 1em;
	font-size: var(--list-fz);
	line-height: var(--list-lh);
}
/* ・マーク */
.c-descList > li::before {
	content: "・";
	position: absolute;
	top: calc((var(--list-fz) * var(--list-lh)) / 2);
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	font-size: inherit;
}
.c-descList.--bar > li::before {
	content: "-";
}
