.page_legal {
  padding: 16rem 0 10rem;
}
.page_legal .content {
  max-width: 96rem;
}
.page_legal h1 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.page_legal .post_content {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 3rem;
}
.page_legal .post_content > *:first-child {
  margin-top: 0;
}
.page_legal .post_content p + p {
  margin-top: 2rem;
}
.page_legal .post_content h2,
.page_legal .post_content h3,
.page_legal .post_content h4 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
}
.page_legal .post_content h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  margin: 4rem 0 1.2rem;
}
.page_legal .post_content h3 {
  font-size: 2.2rem;
  line-height: 3rem;
  margin: 2.8rem 0 0.8rem;
}
.page_legal .post_content h4 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 2.4rem 0 0.6rem;
}
.page_legal .post_content a {
  color: var(--blue);
  text-decoration: underline;
}
.page_legal .post_content strong {
  color: var(--title);
  font-weight: 600;
}
.page_legal .post_content ul,
.page_legal .post_content ol {
  margin: 1.2rem 0 2rem;
}
.page_legal .post_content li + li {
  margin-top: 0.6rem;
}
.page_legal .post_content ul li,
.page_legal .post_content ol li {
  position: relative;
  padding-left: 1.9rem;
}
.page_legal .post_content ul li::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1.3rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: var(--text);
}
.page_legal .post_content ol {
  counter-reset: legal;
}
.page_legal .post_content ol > li {
  counter-increment: legal;
}
.page_legal .post_content ol > li::before {
  content: counter(legal) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--title);
  font-weight: 600;
}
.page_legal .post_content blockquote {
  margin: 2.4rem 0;
  padding: 2.4rem 3.2rem;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  line-height: 3.2rem;
  border-left: 3px solid var(--secondary);
  border-radius: 0 1.6rem 1.6rem 0;
  background-color: #f2f5fa;
}
.page_legal .post_content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4rem 0;
  border-radius: 1.6rem;
}
.page_legal .post_content figure {
  margin: 2.4rem 0;
}
.page_legal .post_content figcaption {
  margin-top: 1rem;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 2rem;
}
.page_legal .post_content .table_wrap,
.page_legal .post_content .wp-block-table {
  margin: 2.4rem 0;
  overflow-x: auto;
  border-radius: 1.6rem;
  border: 1px solid #e4e9f2;
}
.page_legal .post_content table {
  width: 100%;
  min-width: 56rem;
  border-collapse: collapse;
  text-align: left;
}
.page_legal .post_content th {
  height: 5.2rem;
  padding: 0 1.9rem;
  color: #182b85;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  background-color: #f2f5fa;
}
.page_legal .post_content td {
  height: 5.6rem;
  padding: 1.2rem 1.9rem;
  color: #0a0c1b;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 2rem;
  border-top: 1px solid #e4e9f2;
}
.page_legal .post_content hr {
  margin: 3.2rem 0;
  border: 0;
  border-top: 1px solid var(--border);
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_legal {
    padding: 14rem 0 8rem;
  }
  .page_legal h1 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page_legal {
    padding: 110px 0 60px;
  }
  .page_legal h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .page_legal .post_content {
    font-size: 14px;
    line-height: 1.7;
  }
  .page_legal .post_content p + p {
    margin-top: 14px;
  }
  .page_legal .post_content h2 {
    font-size: 20px;
    line-height: 1.35;
    margin: 28px 0 8px;
  }
  .page_legal .post_content h3 {
    font-size: 17px;
    line-height: 1.4;
    margin: 18px 0 6px;
  }
  .page_legal .post_content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin: 16px 0 6px;
  }
  .page_legal .post_content ul,
  .page_legal .post_content ol {
    margin: 10px 0 16px;
  }
  .page_legal .post_content ul li,
  .page_legal .post_content ol li {
    padding-left: 16px;
  }
  .page_legal .post_content ul li::before {
    left: 4px;
    top: 10px;
    width: 4px;
    height: 4px;
  }
  .page_legal .post_content blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    line-height: 1.7;
    border-radius: 0 10px 10px 0;
  }
  .page_legal .post_content img {
    margin: 16px 0;
    border-radius: 10px;
  }
  .page_legal .post_content .table_wrap,
  .page_legal .post_content .wp-block-table {
    margin: 18px 0;
    border-radius: 10px;
  }
  .page_legal .post_content table {
    min-width: 520px;
  }
  .page_legal .post_content th {
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }
  .page_legal .post_content td {
    height: auto;
    padding: 12px;
    font-size: 13px;
  }
}
