.bonus_system {
	font-size: 16px;
}
.bonus_system p {
	line-height: 30px;
}
.price_info {
	background: #000;
	border-radius: 8px;
	padding: 8px 14px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 6px;
}
.sub_ttl {
	font-weight: bold;
	font-size: 26px;
	padding-bottom: 16px;
}
.blocks {
	display: flex;
	justify-content: space-between;
	max-width: 1040px;
	width: 100%;
}
.blocks > div {
	width: 440px;
	margin-bottom: 40px;
}
.blocks > div > table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 7px;
}
.blocks > div > table > thead {
	background: #d77970;
	color: #fff;
}
.blocks > div > table th {
	padding: 16px 10px;
	text-align: center;
	border-radius: 0 10px 10px 0;
}
.blocks > div > table td {
	padding: 7px 10px;
	text-align: center;
	border-radius: 0 10px 10px 0;
}
.blocks > div > table th:first-child,
.blocks > div > table td:first-child {
	border-radius: 10px 0 0 10px;
	position: relative;
}
.blocks > div > table th:first-child:after,
.blocks > div > table td:first-child:after {
	content: '';
	width: 1px;
	display: block;
	background: #fff;
	height: 30px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -15px;
}
.blocks > div > table td:first-child:after {
	height: 24px;
	margin-top: -12px;
}
.blocks > div > table tr td {
	color: #414141;
	background: #ffbcb5;
}
.blocks > div > table tr:nth-child(even) td {
	background: rgba(255,188,181,0.29);
}
.bonus_system ul {
	margin: 2px 0 18px 38px;
}
.bonus_system ul li {
	position: relative;
	padding: 10px 0;
}
.bonus_system ul li:before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 16px;
	height: 16px;
	left: -32px;
	top: 50%;
	margin-top: -8px;
	background: #000;
	border-radius: 100%;
}
.blocks > div.how_get {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 47px;
}
.how_get > div {
	display: flex;
	align-items: center;
}
.how_get > div + div {
	margin-top: 15px;
}
.how_get > div.sub_ttl {
	padding: 0;
}
.how_get > div > .img {
	width: 70px;
	min-width: 70px;
	height: 70px;
	border-radius: 3px;
	background: #d77970;
	margin-right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.how_get > div:nth-child(2) > .img > svg {
	margin: 0 0 5px 6px;
}
.how_get > div > .info {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.how_get > div > .info a {
	color: #000;
	text-decoration: underline;
}
.how_get > div > .info a:hover {
	text-decoration: none;
}
.how_get > div > .info .name {
	font-weight: bold;
	padding-bottom: 3px;
	font-size: 110%;
}
@media only screen and (max-width : 992px) {
	.blocks > div {
		width: 47%;
	}
}
@media only screen and (max-width : 800px) {
	.blocks {
		flex-direction: column;
		align-items: center;
	}
	.blocks > div {
		width: 90%;
		max-width: 400px;
	}
}