<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.listCnt {
	text-align: left;
}

.listCnt ~ .listCnt {
	margin-top: var(--mt-m);
	border-top: 4px solid var(--green-2);
	padding-top: var(--mt-m);
}

.listCnt .titleCnt {
	display: flex;
}

.listCnt .titleCnt span {
	display: inline-block;
	width: 8px;
	height: auto;
	flex: 0 0 auto;
	background-color: var(--green-2);
	margin-right: 1em;
}

.listCnt .titleCnt__title {
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: 0.015em;
	line-height: 1.2;
}

@media only screen and (max-width: 767px) {
	.listCnt .titleCnt__title {
		font-size: 2.8rem;
	}	
}

.listCnt .list {
	padding-left: 3em;
	margin-top: 2.5em;
}

.listCnt .list__item {
	position: relative;
	font-size: 2.4rem;
	line-height: 1.5;
	word-break: break-word;
	padding-left: 0.8em;
}

.listCnt .list__item::before {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	position: absolute;
	top: 0.475em;
	left: 0;
	background-color: var(--green-2);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;

}

.listCnt .list__item ~ .list__item {
	margin-top: 1em;
}


@media only screen and (max-width: 767px) {
	.listCnt .list {
		padding-left: 0;
	}

	.listCnt .list__item {
		font-size: 2.0rem;
	}
}</pre></body></html>