/*
    privacyPage
---------------------------------*/
.privacyPage {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.privacyPage__ttl {
  font-size: 3rem;
  text-align: center;
}

.privacyPage__cont {
  margin-top: 5rem;
}

.privacyPage__list {
  margin-top: 5rem;
  counter-reset: number;
}

.privacyPage__listItem {
  position: relative;
  padding-left: 1em;
  line-height: 2;
}
.privacyPage__listItem::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  font-weight: 700;
  counter-increment: number;
  content: counter(number) ".";
}

.privacyPage__contact {
  margin-top: 5rem;
}

.privacyPage__contact__ttl {
  font-size: 2rem;
  font-weight: 700;
}

.privacyPage__contact__txt {
  margin-top: 2rem;
  line-height: 1.8;
}
.privacyPage__contact__txt a {
  font-weight: 700;
}

.privacyPage__secondTtl {
  margin-top: 10rem;
  font-size: 2.8rem;
  text-align: center;
}
.privacyPage__secondTtl + * {
  margin-top: 3rem;
}

.privacyPage__item {
  margin-top: 5rem;
}
.privacyPage__item dt {
  font-size: 2rem;
  font-weight: 700;
}
.privacyPage__item dd {
  margin-top: 1.5rem;
  line-height: 2;
}
.privacyPage__item dd a {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .privacyPage .cmnTxt {
    font-size: 1.4rem;
  }

  .privacyPage__ttl {
    font-size: 2.8rem;
  }

  .privacyPage__listItem {
    font-size: 1.4rem;
  }

  .privacyPage__contact__ttl {
    font-size: 1.8rem;
  }

  .privacyPage__contact__txt {
    font-size: 1.4rem;
  }

  .privacyPage__secondTtl {
    font-size: 2.6rem;
  }

  .privacyPage__item dt {
    font-size: 1.8rem;
  }

  .privacyPage__item dd {
    font-size: 1.4rem;
  }
}