@charset 'utf-8';

.section-conflict {
	box-sizing: border-box;
	width: 1000px;
	padding: 80px 0;
	margin: 0 auto;
}
.section-conflict ol {
	font-size: 20px;
	line-height: 1.6;
	list-style-type: none;
	margin: 0 0 30px;
	counter-reset: num;
}
.section-conflict ol li {
	margin: 0 0 30px;
	counter-increment: num;
	padding-left: 2.5em;
	text-indent: -2.5em;
}
.section-conflict ol li::before {
	content: "（" counter(num) "）";
}
.section-conflict h2 {
	margin: 30px 0 30px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
}
.section-conflict p {
	margin: 15px 0 0 0;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.6;
}
.section-conflict p:last-of-type {
	text-align: right;
}
.section-conflict .signature {
	text-align: right;
	font-size: 25px;
	font-weight: bold;
	margin: 60px 0 60px;
}
.section-conflict .name {
	font-size: 20px;
}

@media screen and (max-width: 1280px) {
	.section-conflict {
		width: 100%;
		padding: 80px 20px 0 20px;
	}
}

@media screen and (max-width: 750px) {
	.section-conflict {
		padding: 60px 30px;
	}
	.section-conflict h2,
	.section-conflict h3,
	.section-conflict h4 {
		font-family: inherit;
		font-size: 28px;
	}
	.section-conflict ol {
		font-size: 28px;
		max-height: 100%;
	}
	.section-conflict p {
		font-size: 28px;
	}
	.section-conflict .signature {
		font-size: 30px;
		max-height: 100%;
		margin-bottom: 60px;
	}
	.section-conflict .name {
		font-size: 25px;
		max-height: 100%;
	}
}