@charset "utf-8";

.heading {
	margin-bottom: 4.8rem;
}
.merit {
	padding: 16.8rem 0 0;
}
.merit .merits {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin-top: 4.8rem;
}
.merit .merits > div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	width: 33.33%;
	padding: 9.6rem 0;
}

.merit .merits > div:nth-child(1) {
	background: #68233B;
}
.merit .merits > div:nth-child(2) {
	background: #C88B9E;
}
.merit .merits > div:nth-child(3) {
	background: #D3A2B1;
}
.merit .merits .headingImage {
	height: 11rem;
}
.merit .merits > div:nth-child(2) .headingImage {
	height: 13rem;
}
.merit .merits h3 {
	font-size: 3.2rem;
	color: #fff;
	margin: 3.2rem auto;
	text-align: center;
	line-height: 1.5;
}
.merit .merits p {
	color: #fff;
	text-align: center;
	line-height: 2.0;
}

.service {
	padding: 16.8rem 0;
	background: #fff;
}

.service .services {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.service .services li {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: bold;
	color: #68233b;
	font-size: 2.4rem;
	width: 23.8rem;
	height: 12.8rem;
	margin-bottom: 1.6rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.service .services li:nth-child(-2n+3),
	.service .services li:nth-child(2n+6) {
		background: #f2eef2;
		border: solid 1px #68233b;
	}
	.service .services li:nth-child(-2n+4),
	.service .services li:nth-child(2n+5) {
		background: #d8adbb;
		border: solid 1px #ba6e86;
	}
}

@media screen and (max-width: 768px) {
	.merit .merits {
		flex-direction: column;
	}
	.merit .merits > div {
		width: 100%;
	}

	.service .services li {
		width: calc(50% - .8rem);
		font-size: 1.6rem;
	}
	.service .services li:nth-child(2n-1) {
		background: #f2eef2;
		border: solid 1px #68233b;
	}
	.service .services li:nth-child(2n) {
		background: #d8adbb;
		border: solid 1px #ba6e86;
	}
}