#privacy_policy .content_block {
  counter-reset: count 0;
}
#privacy_policy .block_title {
  margin: 2.5em 0 1em;
  @media (min-width:768px) {
    margin-bottom: 0.5em;
  }
  &::before {
    content: counter(count)".";
    counter-increment: count 1;
    margin-right: 0.3em;
  }
}
#privacy_policy ul {
  margin: 1em 0;
  & li {
    padding-left: 1.5em;
    text-indent: -1em;
    &::before {
      content: "・";
    }
  }
}
#privacy_policy ol {
  margin: 1em 0;
  & li {
    list-style: decimal;
    list-style-position: inside;
    padding-left: 1.5em;
    text-indent: -1em;
  }
}
#privacy_policy .link_text {
  display: inline-block;
  color: var(--fc-base);
  word-break: break-all;
  line-height: 1.4;
  &:hover {
    color: var(--key-color);
  }
}