@charset "UTF-8";



/*  ----------------------------------------------------------

about

----------------------------------------------------------  */
.about-summary {
	margin-bottom: 12rem;
}
.about-summary h3 {
	text-align: center;
	margin-bottom: 5rem;
	font-size: 2.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-summary h3 span {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 1rem;
}
.about-summary dl {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin:  auto;
}
.about-summary dl dt {
	width: 30%;
}
.about-summary dl dd {
	width: 70%;
}
.about-summary dl dt:not(:last-of-type) {
	margin-bottom: 2.5rem;
}
.about-summary dl dd:not(:last-of-type) {
	margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
	.about-summary dl {
		display: block;
		width: 100%;
	}
	.about-summary dl dt {
		width: 100%;
		display: flex;
		align-items: center;
	}
	.about-summary dl dt::before {
		content: "◆";
		font-size: 1.2rem;
		color: var(--green);
		margin-right: 0.6rem;
	}
	.about-summary dl dd {
		width: 100%;
	}
	.about-summary dl dt:not(:last-of-type) {
		margin-bottom: 0.4rem;
	}
	.about-summary dl dd:not(:last-of-type) {
		margin-bottom: 3rem;
	}

}
