@charset "utf-8";

.alpha-list {
  counter-reset: alpha;
  margin: 0;
  padding: 0;
}

.alpha-list li {
  padding: 0 0 0 16px;
  text-indent: -16px;
  line-height: 1.6;
  list-style: none;
}

.alpha-list li::before {
  counter-increment: alpha;
  content: counter(alpha, lower-alpha) ") ";
  font-weight: 400;
}

