/*************************************************

privacy-bg01

*************************************************/
.privacy-bg01 {
  position: relative;
  margin-bottom: 16rem;
  padding: 8rem 0 16rem;
  background-color: #F9F5F5;
  border-radius: 12rem;
}
@media screen and (max-width: 767px) {
  .privacy-bg01 {
    padding: 5rem 0 7rem;
    margin-bottom: 7rem;
    border-radius: 4rem;
  }
}
.privacy-bg01 .ob-faq {
  padding: 0;
}
.privacy-bg01 .parts-btn02 {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .privacy-bg01 .parts-btn02 {
    margin-top: 5rem;
  }
}
.privacy-bg01 .parts-btn02__anchor {
  max-width: 28rem;
}

.privacy-whitebox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 128rem;
  margin: 0 auto;
  padding: 5rem 3rem;
  color: #666;
  background-color: #fff;
  border-radius: 6rem;
}
@media screen and (max-width: 767px) {
  .privacy-whitebox {
    padding: 4rem 3rem;
    border-radius: 3rem;
  }
}
.privacy-whitebox a {
  color: #666;
}

.privacy-whitebox-inner {
  max-width: 103rem;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 7rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy-block {
    margin-bottom: 6rem;
  }
}
.privacy-block:last-child {
  margin-bottom: 0;
}

.privacy-block__title {
  margin-bottom: 2.5rem;
  padding-bottom: 1.7rem;
  color: #222;
  font-size: 3rem;
  font-weight: 700;
  border-bottom: #003399 dashed 0.3rem;
}
@media screen and (max-width: 767px) {
  .privacy-block__title {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    font-size: 1.8rem;
  }
}

.privacy-block__list.is-type01 {
  counter-reset: number1 0;
}
.privacy-block__list.is-type02 {
  counter-reset: number2 0;
}

.privacy-block__list-item {
  position: relative;
  padding-left: 1.7em;
}
.is-type01 .privacy-block__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  counter-increment: number1 1;
  content: counter(number1) " .";
}
.is-type02 .privacy-block__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  counter-increment: number2 1;
  content: counter(number2) " )";
}