html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Zen Kaku Gothic New", sans-serif;
    counter-reset: number 0;
    scroll-behavior: smooth;
    color: #282929;
    font-size: 16px;
}
body{
    text-align: left;
    max-width: 1140px;
    padding: 0 10px;
    margin: 20px auto auto auto;
}

a:link {
  color: forestgreen;
  text-decoration-color: hotpink;
}

ul li{
list-style-type: disc;
}
li.midashi{
margin-bottom:1em;
}
ol.hoge li {
  position: relative;
  list-style-type: none;
}

ol.hoge li:before {
  position: absolute;
  right: calc(100% + 0.5rem);  /* 0.5remは連番とテキストとの余白 */
  content: "(" counter(list-item) ")";
}