@charset "utf-8";
.page--inner {
	max-width: 1200px;
	margin: 0 auto 50px;
}
.page-terms h1 {
	font-size: 22px;
	font-weight: bold;
	margin: 10px 0 50px;
	border-bottom: solid 1px #dedede;
	padding-bottom: 30px;
}
.page-terms h2 {
  font-size: 19px;
  font-weight: bold;
  margin: 0 0 30px;
  padding: 12px 20px 10px;
  background: #F5F5F5;
}
.page-terms .contents:not(:last-child) {
  margin: 0 0 80px;
}
.page-terms .contents dl{
	margin: 30px 0px;
	border-bottom: solid 1px #dedede;
	padding-bottom: 30px;
}
.page-terms .contents dl dt{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 1em;
}
.page-terms .contents dl dd{
	font-size: 16px;
}
.page-terms .contents dl dd ul+ul{
	margin-top: 10px;
}

/*--------------------
   listsytle
--------------------*/
/* list-style--num-dot */
.page-terms .contents .list-style--num-dot {
	counter-reset: count 0;
}
.page-terms .contents .list-style--num-dot > li {
	padding-left: 1.5em;
	position: relative;
}
.page-terms .contents .list-style--num-dot > li::before {
	content: counter(count) ".";
  counter-increment: count 1;
	position: absolute;
	left: 0;
	top: 0;
}
.page-terms .contents .list-style--num-dot > li+li {
	margin-top: 5px;
}

/* list-style--num-kakko */
.page-terms .contents .list-style--num-kakko {
	counter-reset: count 0;
}
.page-terms .contents .list-style--num-kakko > li {
	padding-left: 2.2em;
	position: relative;
}
.page-terms .contents .list-style--num-kakko > li::before {
	content: "("counter(count) ")";
  counter-increment: count 1;
	position: absolute;
	left: 0;
	top: 0;
}
.page-terms .contents .list-style--num-kakko > li+li {
	margin-top: 5px;
}

/* list-style--dot */
.page-terms .contents .list-style--dot > li {
	padding-left: 1em;
	position: relative;
}
.page-terms .contents .list-style--dot > li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}

.page-terms .contents a {
  text-decoration: underline;
}
.page-terms .contents a:hover {
  text-decoration: none;
}
