@charset "utf-8";

h1 {
  font-size: 1.5rem;
  text-align: center;
  color: var(--green);
  font-weight: bold;
}

h2 {
  font-size: 1.125rem;
}

.article {
  font-weight: bold;
}

.paragraph li {
  list-style: decimal;
  margin-left: 2rem;
}

.item li  {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -2.5rem;
}

.item li::before {
  content: "（"counter(cnt)"）";
  list-style-position: outside;
}

.paragraph p {
  padding-left: 1rem;
}

/* MOBILE SIZE
========================================== */
@media screen and (max-width:767px) {
}