/* =========================================
   NOST LIFE — privacy.css（プライバシーポリシーページ固有）
   ========================================= */


/* =========================================
   PRIVACY — 記事エリア
   ========================================= */
.pp-section {
  padding: 80px 0;
}

.pp-article {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pp-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pp-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-blue);
}

.pp-sub-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  border-left: 4px solid var(--color-blue);
  padding-left: 14px;
  margin-top: 10px;
}

.pp-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: var(--color-dark);
}

.pp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}

.pp-list li {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-dark);
  padding-left: 16px;
  position: relative;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

.pp-company {
  margin-top: 20px;
  padding: 30px;
  background: var(--color-bg);
  border-left: 4px solid var(--color-blue);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-company p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-dark);
}

.pp-company strong {
  font-weight: 700;
  font-size: 16px;
}

.pp-date {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: var(--color-muted);
  text-align: right;
}


/* =========================================
   レスポンシブ: PRIVACY
   ========================================= */
@media (max-width: 840px) {
  .pp-section {
    padding: 50px 0;
  }

  .pp-article {
    gap: 36px;
  }

  .pp-heading {
    font-size: 18px;
    padding-bottom: 5px;
  }

  .pp-body {
    font-size: 14px;
  }

  .pp-list li {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .pp-section {
    padding: 40px 0;
  }

  .pp-company {
    padding: 20px;
  }
}
