h2 {
	position: relative;
	display: flex;
	justify-content: flex-start;
	font-size: 2rem;
	font-weight: var(--bold);
	padding-left: 2rem;
}

h2::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: var(--primary-color);
	width: 0.6rem;
	height: 2.2rem;
}

.Sec__privacy {
	padding: 3rem 0 10rem;
}

.Sec__privacy .Sec__inner {
	width: 82.4rem;
	margin: 0 auto;
}

.Group__handling {
	border-bottom: solid 0.1rem #ebe1d0;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
}

.Group__handling .Notice {
	font-size: 1.6rem;
	margin-top: 2rem;
}

.Block__handling {
	margin-top: 2rem;
}

.Block__handling dt {
	font-weight: var(--bold);
}

.Block__handling dd {
	font-size: 1.6rem;
}

.Group__conditions {
	counter-reset: chapter article;
}

.Group__conditions span {
	font-size: 1.6rem;
}

.Group__conditions ul {
	counter-reset: num;
	text-indent: 3em;
}

.Group__conditions ul li {
	font-size: 1.6rem;
}

.Group__conditions ul li::before {
	counter-increment: num;
	content: "（" counter(num) "） ";
}

.Chapter {
	font-weight: var(--bold);
	margin-top: 3rem;
}

.Chapter::before {
	counter-increment: chapter;
	content: "第" counter(chapter) "章 ";
}

.Article {
	font-size: 1.6rem;
	padding-left: 1em;
}

.Article::before {
	counter-increment: article;
	content: "第" counter(article) "条 ";
}

.Text {
	font-size: 1.6rem;
	padding-left: 1em;
}

.Block__terms {
	margin-top: 3rem;
}

.Block__terms dt {
	font-weight: var(--bold);
}

.Block__terms dd ul {
	counter-reset: cnt;
	padding-left: 3em;
	text-indent: -1.5em;
}

.Block__terms dd ul li::before {
	counter-increment: cnt;
	content: counter(cnt) ". ";
}

.revision {
	font-size: 1.6rem;
	text-align: left;
	margin-top: 5rem;
}

footer {
	background-color: #fff;
}

@media (width < 431px) {
	.Sec__privacy .Sec__inner {
		width: 100%;
		padding: 0 2.5rem;
	}

	.Group__handling .Notice {
		font-size: 1.5rem;
	}

	.Block__handling dt {
		font-size: 1.7rem;
	}

	.Block__handling dd {
		font-size: 1.5rem;
	}

	.Group__conditions ul {
		counter-reset: num;
		text-indent: 0;
		padding-left: 1em;
	}

	.Block__terms dd ul {
		padding-left: 2em;
	}

	.revision {
		font-size: 1.5rem;
	}
}
