/*--------------------------------------------------------------
# ページビジュアル
--------------------------------------------------------------*/
.page_visual {
  background: url(/assets/img/privacy_policy/page_visual.jpg) no-repeat center / cover;
}
/*--------------------------------------------------------------
# セクション
--------------------------------------------------------------*/
.page_privacy-policy .page_content_wrap {
  counter-reset: count 0;
  padding-bottom: 8rem;
  @media (min-width:768px) {
    padding-bottom: 12rem;
  }
}
.pp_section {
  padding-top: 0;
}
.pp_title {
  font-size: var(--fs-block-title);

  &::before {
    content: counter(count)".";
    counter-increment: count 1;
  }
}
.pp_section ul {
  margin: 1em 0;
}
.pp_section ol {
  list-style: decimal;
  margin: 1em 0;
  padding-left: 1em;
}
.pp_section a {
  display: block;
  word-break: break-all;
  line-height: 1.2;
}