/* CSS変数 */
:root {
  /* font */
  --Blinker: "Blinker", sans-serif;
  /* color */
  --default-color: #FFFFFF;
  --sub-color: #333333;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.privacy {
  display: block;
  width: 99rem;
  max-width: 100%;
  background-color: var(--default-color);
  padding-top: 17.4rem;
  margin-left: auto;
  margin-right: auto;
}

.privacy h2,
.privacy span {
  display: block;
  text-align: center;
  color: var(--sub-color);
}

.privacy h2 {
  font-family: var(--NotoSans);
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.privacy span {
  font-family: var(--Blinker);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 10rem;
}

.privacy p {
  font-family: var(--NotoSans);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 4rem;
  line-height: 1.5em;
}

.privacy .text_area {
  padding-bottom: 24rem;
}

.privacy .text_area h3 {
  font-family: var(--NotoSans);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0;
  color: var(--sub-color);
  margin-bottom: 2rem;
}

.privacy .text_area p {
  margin-bottom: 4rem;
}

.privacy .text_area p:last-child {
  margin-bottom: 0;
}

.privacy .text_area .text_area_mb {
  margin-bottom: 2rem;
}

.privacy .text_area .text_area_mb_last {
  margin-bottom: 4rem;
}

/* .privacy .text_area .text_area_mb:last-of-type {
  margin-bottom: 4.4rem;
} */


.privacy .text_area .text_area_6th {
  margin-bottom: 2rem;
}

@media screen and (max-width: 699.98px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .privacy {
    width: 34.3rem;
    height: 333.2rem;
    padding-top: 18rem;
  }

  .privacy h2 {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.4rem;
  }

  .privacy span {
    font-size: 1.6rem;
    letter-spacing: 0.048em;
    margin-bottom: 4.5rem;
  }

  .privacy p {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
    line-height: 1.7em;
  }

  .privacy .text_area {
    padding-bottom: 26.6rem;
  }

  .privacy .text_area h3 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }

  .privacy .text_area h3:nth-of-type(3) {
    text-wrap: nowrap;
    line-height: 1.75em;
    margin-bottom: 1rem;
  }

  .privacy .text_area p {
    margin-bottom: 3.2rem;
    line-height: 1.7em;
  }

  .privacy .text_area p:nth-of-type(2) {
    margin-bottom: 2.8rem;
    line-height: 1.7em;
  }


  .privacy .text_area .text_area_mb {
    margin-bottom: 2.5rem;
  }

  .privacy .text_area .text_area_mb_last {
    margin-bottom: 3.2rem;
  }

}