.mw-list_01 h2 {
	margin-bottom: 32px;
}
.mw-list_01 ul li {
	position: relative;
	margin: 20px 0;
	padding-left: 60px;
	margin-bottom: 12px;
}
.mw-list_01 ul li .mw-icon {
	position: absolute;
	left: 0;
	align-items: center;
	border-radius: 50%;
	color: var(--mw-color-secondary);
	background: var(--mw-color-lightgray);
	display: flex;
	font-size: 24px;
	justify-content: center;
	height: 30px;
	margin: -3px 30px 0 0;
	width: 30px;
}
.mw-list_01 ul li .mw-icon:before {
	content: "";
	position: absolute;
	top: -12px;
	left: 7px;
	background-image: url('/img/layout/check.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 38px;
	height: 33px;
	z-index: 1;
}

@media all and (min-width: 500px){

	.mw-list_01 ul {
		display: flex;
		flex-wrap: wrap;
	}
	.mw-list_01 ul li {
		flex: 1 1 50%;
	}

}