@charset "UTF-8";
/* CSS Document */
h2 {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	width: 80%;
	text-align: center;
}
.h2_title {
	font-size: 30px;
	font-weight: 600;
}
.top-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	position: relative;
}
section {
	max-width: 1024px;
	width: 75%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
}
dl {
	width: 45%;
	margin: 50px 0;
}
dl dt {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 20px;
	display: inline;
}
.pink-line {
	background:linear-gradient(transparent 70%, #efccdf 0%);
}
.blue-line {
	background:linear-gradient(transparent 70%, #bbe9fa 0%);
}
.yellow-line {
	background:linear-gradient(transparent 70%, #fef1c0 0%);
}
.green-line {
	background:linear-gradient(transparent 70%, #d3eac0 0%);
}
.orange-line {
	background:linear-gradient(transparent 70%, #fadcbd 0%);
}
.purple-line {
	background:linear-gradient(transparent 70%, #d1c7e0 0%);
}
.item {
	font-weight: 1000;
	padding-right: 5px;
}
dl dd {
	font-size: 0.875rem;
	line-height: 2;
}

dd {
	display: block;
	margin-top: 1em;
}

@media screen and (max-width: 768px) {
	section {
		display: block;
	}
	dl {
		margin: 40px auto;
		width: 90%;
	}
}