/*---------------------
|- section
---------------------*/
.section {
	width: 78%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0 120px;
}
.section > * + * {
	margin-top: 30px;
}
.section_ttl {
	margin-bottom: 30px;
	font-size: var(--fs28);
	letter-spacing: .02rem;
}
.section_txt {
	line-height: 2;
}
.section_txt a {
	text-decoration: underline;
}
.section_txt a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px){
	.section {
		width: 90%;
		padding: 50px 0 60px;
	}
	.section > * + * {
		margin-top: 15px;
	}
	.section_ttl {
		margin-bottom: 20px;
		font-size: var(--fs26);
	}
}