/* Load SemiBold (600) weight for headings */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap');

/* ============================================
   Privacy Policy Content
   ============================================ */
.pp-content {
  background: var(--white);
  padding: 80px max(20px, calc((100% - 1140px) / 2)) 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Lead paragraph */
.pp-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
}

/* ============================================
   Section block
   ============================================ */
.pp-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Heading: number (24px semibold) + title (20px semibold) on same line */
.pp-section__heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pp-section__num {
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: var(--black1);
  flex-shrink: 0;
}

.pp-section__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--black1);
}

/* Section body — no extra indent, aligns with left edge */
.pp-section__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pp-section__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
}

/* ============================================
   Lists
   ============================================ */
.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Simple items: "N. text" inline */
.pp-list__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pp-list__num {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
  flex-shrink: 0;
  min-width: 18px;
}

.pp-list__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
}

/* Compound items: "N. subtitle" + body text below (section 3) */
.pp-list__item--compound {
  flex-direction: column;
  gap: 10px;
}

.pp-list__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pp-list__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;       /* regular — NOT bold */
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
}

.pp-list__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--black1);
}

/* ============================================
   Responsive — 786px
   ============================================ */
@media (max-width: 786px) {

  .pp-content {
    padding: 60px 40px 80px;
    gap: 40px;
  }

  .pp-section {
    gap: 15px;
  }

  .pp-section__title {
    white-space: normal;
    line-height: 1.4;
  }
}
