/* media query */
.mainArea {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}
@media all and (max-width: 1400px) {
  .mainArea {
    width: calc(100% - 100px);
  }
}
@media all and (max-width: 1200px) {
  .mainArea {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 668px) {
  .mainArea {
    width: calc(100% - 40px);
  }
}
.mainArea > p {
  margin-bottom: 20px;
  font-size: 1.7rem;
  line-height: 150%;
}
.mainArea > section {
  border-bottom: 1px solid #333;
  padding: 0 0 25px;
  margin: 0 0 25px;
}
.mainArea > section > h3 {
  font-size: 2.7rem;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 668px) {
  .mainArea > section > h3 {
    font-size: 2.5rem;
  }
}
.mainArea > section p {
  font-size: 1.7rem;
  line-height: 150%;
}
.mainArea > section p:not(:last-child) {
  margin-bottom: 10px;
}
.mainArea > section ol {
  margin-left: 20px;
}
.mainArea > section ol li {
  list-style: decimal;
}
.mainArea > section ol * {
  font-size: 1.7rem;
  line-height: 150%;
}
.mainArea > section a {
  font-size: 1.7rem;
  line-height: 150%;
  text-decoration: underline;
}
.mainArea > section a:hover {
  color: #3071B9;
}/*# sourceMappingURL=index.css.map */