@charset "utf-8";

h2 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-left: 1rem;
  text-indent: -1rem;
}

ol li{
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -2.7rem;
  margin-left: 3.5rem;
}

ol li::before {
  content: "（"counter(cnt)"）";
  list-style-position: outside;
}

ol p {
  margin-left: 1rem;
  text-indent: -1rem;
}

ul li {
  list-style: none;
  margin-left: 1.5rem;
}

table {
  width: 100%;
  table-layout: fixed;
}

th,
td {
  font-weight: normal;
  vertical-align: middle;
  padding: 0.5rem;
}

span {
  display: block;
  margin-left: 1rem;
  text-indent: -1rem;
}

/* MOBILE SIZE
========================================== */
@media screen and (max-width:767px) {
  /* table {
    font-size: 12px;
  } */

  footer ul li {
    margin-left: 0;
  }

  .free span {
    margin-left: 0;
    margin-right: 5px;
  }
}