#subject {
  border: solid 1px #ccc;
}
#subject h2 {
  padding: 10px!important;
  background-color: #0068b7;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0!important;
  font-size: 1.6rem!important;
  border-radius: 0!important;
  line-height: 1.4;
}
#subject ol {
  padding: 0 2% 0;
  margin: 5px 0 5px;
  list-style-type: decimal;
  list-style-type: none !important;
  counter-reset: number;
}
#subject ol li {
  position: relative;
  padding: 15px 0.5em 15px 12%;
  color: #0068b7;
  line-height: 1.5em;
}
#subject ol li::before {
  -webkit-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 10%;
  background: #0068b7;
  content: counter(number);
  color: #ffffff;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  counter-increment: number;
  margin-left: 3%;
  font-size: 2.761538vw!impoortant;
}
#subject ol li:not(:last-child) {
  border-bottom: solid 1px #ccc;
}

@media screen and (min-width: 768px) {
  #subject h2 {
    padding: 16px!important;
    font-size: 1.8rem!important;
  }
  #subject ol {
    padding: 0 10px 0 0;
  }
  #subject ol li {
    margin: 0 20px;
    padding: 25px 0.5em 25px 56px;
  }
  #subject ol li::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: clamp(1.363rem,.957rem + .543vw,2rem);!impoortant;
  }
}