@charset "utf-8";

/*----------------------------
	guidance.css
------------------------------*/
.update {
	margin-top: 20px;
	text-align: right;
}
.update + .txt {
	margin-top: 40px;
}
.numList {
	margin-top: 5px;
}
.numList p {
	margin-top: 30px;
}
.numList ul li {
	display: flex;
	counter-increment: cnt;
}
.numList ul li::before {
	display: block;
	content: counter(cnt)'.';
	width: 2.5em;
	flex-shrink: 0;
}
.numList ul li + li {
	margin-top: 30px;
}
.numList ul li span {
	display: block;
	-ms-flex: 0 1 auto;
}
.txt.indent{
    padding-left: 0;
    text-indent: 1em;
}
.txt.indent + .txt.indent{
    margin-top: 0;
}
/*----------
	SP
------------*/
@media (max-width: 768px) {
	.update {
		margin-top: 10px;
	}
	.update + .txt {
		margin-top: 30px;
	}
	.numList {
		margin-top: 16px;
	}
	.numList ul li::before {
		width: 2em;
	}
	.numList ul li + li {
		margin-top: 10px;
	}
}
