.terms-page{
  width: 93%;
  line-height: 1.7;
}

.terms-page h1 {
  font-size: 1.5em;
  font-weight: bold;
}

.terms-page h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 1.2em;
}

.terms-page p {
  margin-top: .75em;
}

/* ・箇条書き用のul */
.terms-page ul {
  list-style-type: disc;
  margin-left: 1em;
  margin-top: .7em;
}

.terms-page ul > li {
  margin-top: .3em;
}

/* 第一階層のol → 1. 2. 3. */
.terms-page ol {
  list-style-type: decimal;
  counter-reset: item;
  margin-left:1em;
  margin-top: .7em;
}

.terms-page ol > li {
  counter-increment: item;
  margin-top: .3em;
}

/* 入れ子のol → (1) (2) (3) ※独自マーカーのためlist-styleは解除してcounterで生成 */
.terms-page ol ol {
  list-style-type: none;
  counter-reset: subitem;
}

.terms-page ol ol > li {
  counter-increment: subitem;
  position: relative;
}

.terms-page ol ol > li::before {
  content: "(" counter(subitem) ") ";
}
