.list-ol {
  list-style: none;
  counter-reset: number
}
.list-ol li {
  position: relative;
  padding-left: 40px;
  font-size: 20px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-ol li {
    padding-left: calc(40 / 1744 * 100vw);
    font-size: clamp(14px, calc(20 / 1744 * 100vw), 20px)
  }
}
@media screen and (max-width:1024px) {
  .list-ol li {
    padding-left: calc(40 / 1024 * 100vw);
    font-size: clamp(14px, calc(20 / 1024 * 100vw), 20px)
  }
}
@media screen and (max-width:750px) {
  .list-ol li {
    padding-left: calc(42 / 750 * 100vw);
    font-size: clamp(14px, calc(32 / 750 * 100vw), 32px)
  }
}
.list-ol li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 30px;
  height: 30px;
  background: #ffc80a;
  border-radius: 50%
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-ol li::before {
    top: calc(4 / 1744 * 100vw);
    width: calc(30 / 1744 * 100vw);
    height: calc(30 / 1744 * 100vw)
  }
}
@media screen and (max-width:1024px) {
  .list-ol li::before {
    top: calc(4 / 1024 * 100vw);
    width: calc(30 / 1024 * 100vw);
    height: calc(30 / 1024 * 100vw)
  }
}
@media screen and (max-width:750px) {
  .list-ol li::before {
    top: calc(12 / 750 * 100vw);
    width: calc(36 / 750 * 100vw);
    height: calc(36 / 750 * 100vw)
  }
}
.list-ol li::after {
  counter-increment: number;
  content: ""counter(number) "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  text-align: center;
  font-family: brother-1816, sans-serif;
  font-weight: 400
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-ol li::after {
    width: calc(30 / 1744 * 100vw)
  }
}
@media screen and (max-width:1024px) {
  .list-ol li::after {
    width: calc(30 / 1024 * 100vw)
  }
}
@media screen and (max-width:750px) {
  .list-ol li::after {
    width: calc(34 / 750 * 100vw)
  }
}
.list-ol li:nth-of-type(n+2) {
  margin-top: 12px
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .list-ol li:nth-of-type(n+2) {
    margin-top: calc(12 / 1744 * 100vw)
  }
}
@media screen and (max-width:1024px) {
  .list-ol li:nth-of-type(n+2) {
    margin-top: calc(12 / 1024 * 100vw)
  }
}
@media screen and (max-width:750px) {
  .list-ol li:nth-of-type(n+2) {
    margin-top: calc(22 / 750 * 100vw)
  }
}