@charset "UTF-8";

#privacy_policy .inner {
  counter-reset: count 0;
  max-width: 100rem;
  margin: 0 auto;
}
#privacy_policy .content_block {
  counter-increment: count 1;
  margin-top: 6rem;

  .title {
    font-size: var(--fs-large);

    &::before {
      content: counter(count)".";
    }
  }
  & ul {
    margin-left: 1.5em;
  }
  & dt {
    font-weight: 400;
  }
}