.term {
  padding-top: 20px;
}
.term p {
  line-height: 1.5rem;
}
.term .term-title {
  margin-bottom: 30px;
}
.term .term-title h3 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 30px;
}
.term .term-item {
  margin-bottom: 30px;
}
.term .term-item h4 {
  font-size: 1.25rem;
  line-height: 1.65rem;
  font-weight: 400;
  margin-bottom: 10px;
  text-indent: -1.4rem;
  padding-left: 1.4rem;
}
.term .term-item h4::before {
  content: '';
  display: inline-block;
  vertical-align: -2px;
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.term .term-item ul {
  /*リセット*/
  list-style: none;
  counter-reset: li_count;
  margin-left: 1.5rem;
}
.term .term-item ul li {
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}
.term .term-item ul li::before {
  counter-increment: li_count; /* カウンタの値を計算していく */
  content: counter(li_count) ')'; /* 数字出力 */
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .term .term-item ul {
    margin-left: 1rem;
  }
}
