@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}


.list_new  {
  counter-reset: newCounter;
  list-style: none;
  padding: 0;
  margin-bottom: 29px;
}
.list_new li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.6;
}

@media screen and (max-width: 1199px) {
  .list_new  {
    margin-bottom: 12px;
  }
}
.list_new li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.list_num_01 li::before {
  content: counter(newCounter)".";
  counter-increment: newCounter;
}
.list_num_02 li::before {
  content: "("counter(newCounter)")";
  counter-increment: newCounter;
}
.list_num_03 li.circle::before {
  content: counter(newCounter);
  counter-increment: newCounter;
  font-size: 11px;
  font-family: Roboto, -apple-system, "Arial", "Helvetica", "Helvetica Neue", "Avenir", "Droid Sans", "Noto Sans JP", メイリオ, "MS PGothic", sans-serif, "Meiryo UI";
  background-color: #004831;
  color: #ffffff;
  display: block;
  text-align: center;
  margin-top: 2px;
  padding-top: 1px;
  height: 17px;
  width: 18px;
  border-radius: 50%;
  font-weight: bold;
}
.list_alphabet_01 li::before {
  content: counter(newCounter, upper-alpha)".";
  counter-increment: newCounter;
}
.list_alphabet_02 li::before {
  content: "("counter(newCounter, lower-roman)")";
  counter-increment: newCounter;
}
.list_alphabet_01.type01 li::before {
  content: counter(newCounter, upper-alpha)"." !important;
}

.list_new .inner {
  margin-top: 11px;
  margin-bottom: 13px;
}