@charset "utf-8";

/*================================================
  privacy policy
================================================*/

/*------------------------------------------------
privacy
------------------------------------------------*/

.privacy + .privacy {
  padding-top: 0;
}

.privacy .content-title::after {
  background-color: var(--secondary-color);
}

.privacy-text {
  margin-bottom: 1em;
}


ol.main-list {
  margin-top: calc(var(--layout-gap) / 2);
  counter-reset: cnt;
}

ol.main-list > li {
  margin: 2em 0;
  counter-increment: cnt;
  position: relative;
  line-height: 2;
  padding-left: 1.5em;
}

ol.main-list > li::before {
  content:"" counter(cnt) ".";
  color: var(--color-brown);
  font-weight: 700;
  font-size: 1.6rem;
  display:block;
  position: absolute;
  line-height: 2;
  top: 0;
  left: 0;
}

ol.main-list > li > span {
  color: var(--color-brown);
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
  line-height: 2;
  margin-bottom: 0.5em;
}

ol.sub-list {
    counter-reset: sub;
}

ol.sub-list > li {
  counter-increment: sub;
  margin-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.5;
}

ol.sub-list > li:not(:first-child) {
  margin-top: calc(var(--layout-gap) / 3);
}

ol.sub-list > li::before {
  content:"(" counter(sub) ")";
  color: var(--secondary-color);
  font-weight: 800;
}


.privacy-info-title {
  display: block;
  margin-top: 2em;
  font-weight: 700;
}
address.privacy-info-address {
  font-style: normal;
}

@media print, screen and (min-width: 769px) {
  ol.main-list > li::before,
  ol.main-list > li > span {
    font-size: 2rem;
  }
}
