.list01 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item01 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.item01::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.list02 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item02 {
  font-weight: bold;
  display: flex;
  gap: 8px;
  counter-increment: item-counter;
}

.item02::before {
  content: "0" counter(item-counter) ".";
  display: inline-block;
}

.item02:nth-of-type(9) ~ .item02::before {
  content: counter(item-counter) ".";
  display: inline-block;
}
