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

.tc_list{
	counter-reset: number 0;
	list-style: none;
}

.tc_list li{
	position: relative;
	font-size: 1.35rem;/*20*/
	font-weight: 700;
}

.tc_list li:nth-child(2){
	margin: 1.22rem 0;/*18*/
}

.tc_list li::before {
	counter-increment: number 1;
	content: counter(number);
	display: inline-block;
	width: 2.91rem;/*43*/
	line-height: 2.91rem;/*43*/
	border-radius: 50%;
	background: #39b04a;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
	text-align: center;
	margin-right: 0.68rem;/*10*/
}








