#cover {
	background-image: url('../img/cover.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center right;
	padding: 200px 0 100px;
}
#cover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	background: var(--color-main);
	opacity: 0.25;
	display: block;
}
#cover .cover__title {
	font-size: 3em;
	color: #FFF;
	z-index: 3;
	width: 90%;
	margin: auto;
}
#cover .cover__title span {
	font-size: 0.3em;
	color: #FFF;
	display: flex;
	align-items: center;
}
#cover .cover__title span:before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #FFF;
	margin-right: 5px;
}


article {
	padding: 100px 0;
}
#contents {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}
#contents p,
#contents li,
#contents a,
#contents span {
	font-size: 16px;
	margin: 10px auto;
	line-height: 2;
}
#contents p {}
#contents a {
	color: var(--color-main);
}
#contents ul,
#contents ol {
	padding-left: 20px;
}
#contents h1 {
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	margin: 50px auto;
	border-bottom: 2px solid var(--color-main);
}
#contents h2 {
	background: var(--color-main);
	padding: 10px;
	color: #FFF;
	font-size: 18px;
	margin: 50px auto 20px;
	font-weight: bold;
}
#contents img {
	width: 100%;
	max-height: 400px;
	object-fit: contain;
	object-position: left;
	margin-top: 20px;
}
.tx-right {
	text-align: right;
}

.section__bg {
	max-width: 1000px;
}


/*===========================
=============================
PC 750~
=============================
===========================*/
@media screen and (min-width: 780px) {

	#cover {
		padding: 150px 0;
	}
	#cover .cover__title {
		font-size: 4em;
		display: flex;
		align-items: baseline;
		width: fit-content;
	}
	#cover .cover__title span {
		align-items: flex-end;
	}
	#cover .cover__title span:before {
		width: 100px;
	}

}