.c-contents {
  padding-bottom: 11rem;
}
.c-contents :where(p, li) {
  font-size: 1.6rem;
  line-height: 2;
}

.section:first-of-type {
  margin-top: 7rem;
}
.section:not(:first-of-type) {
  margin-top: 11rem;
}
.section h2 {
  margin-bottom: 8rem;
  border-left: 6px solid var(--color-main);
  padding-left: 2.5rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}
.section h3 {
  border-bottom: 1px solid #e9ecee;
  margin-block: 7rem 3rem;
  padding-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
}
.section > ol {
  counter-reset: item;
}
.section > ol > li {
  position: relative;
  padding-left: 3rem;
}
.section > ol > li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
}
.section > ol > li:not(:first-of-type) {
  margin-top: 4rem;
}
.section a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}
.section a.hover {
  text-decoration: initial;
}
.section .secondary-list {
  margin: 1.5rem 0 0 -3rem;
  padding: 4rem;
  width: calc(100% + 3rem);
  background-color: #f2f6f8;
}
.section table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
}
.section table :is(thead tr, tbody tr) {
  font-size: 1.6rem;
  line-height: 2;
}
.section table thead {
  background-color: #d0d5da;
}
.section table tr {
  border: 1px solid #e9ecee;
}
.section table thead th {
  padding: 1rem 3rem;
  font-weight: bold;
}
.section table tbody td {
  padding: 1.5rem 3rem;
}
.section table thead th:not(:first-of-type),
.section table tbody td:not(:first-of-type) {
  border-left: 1px solid #e9ecee;
}
.section table tbody td:first-of-type {
  background-color: #f2f6f8;
  font-weight: bold;
}
.section .annotation {
  margin-top: 3rem;
}
.section .annotation p {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.2rem;
}
