.list-block {
	width: 95%;
	margin: 2em auto;
	padding: 1em 1.5em;
	border-radius: 8px;
	border: solid 0.8px #e4c8a0;
}

.list-block h3 {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0.6em;
	text-align: center;
	font-size: 0.85em;
	font-weight: 500;
	font-family: "Avenir", "Arial", sans-serif;
}
@media screen and (min-width: 768px) {
	.list-block h3 {
		font-size: 1em;
	}
}

/* === リスト本体 === */
.list-block ul,
.list-block ol {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}

.list-block li {
	line-height: 1.7;
	padding: 0.6em 0;
	border-bottom: 1px solid #e0dcd7;
	border-top: 1px solid #fff;
	list-style: none;
}

.list-block li:last-child {
	border-bottom: none;
}

.list-block li i {
	padding-right: 0.3em;
	color: #e4c8a0;
}

.checklist.list-block {
	background-color: #f3f9f3;
	border-color: #8ba88f;
}

.checklist.list-block h3,
.checklist.list-block li i {
	color: #8ba88f;
}

.introlist.list-block {
	background-color: #fdf5f3; /* 柔らかいピンク系背景 */
	border-color: #e8a295; /* トーンを合わせた枠色 */
}

.introlist.list-block h3,
.introlist.list-block li i {
	color: #e68267;
}

.ordered.list-block {
	background-color: #faf9f1;
}

.unordered.list-block {
	background-color: #f7f4f8;
	border-color: #c4a0b8;
}

.unordered.list-block li i {
	color: #c4a0b8;
}

/* === 番号付きリスト === */
.list-block ol {
	counter-reset: number;
}

.list-block ol li {
	position: relative;
	padding: 0.6em 0.5em 0.6em 35px;
	border-bottom: 1px solid #e6dfd0;
}

.list-block ol li:last-child {
	border-bottom: none;
}

.list-block ol li::before {
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display: inline-block;
	background: #e9b24e;
	color: white;
	font-family: "Avenir", "Arial Black", "Arial", sans-serif;
	font-weight: bold;
	font-size: 14px;
	border-radius: 50%;
	left: 0;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
