@charset "UTF-8";
/* ========================================
   Privacy Policy Page Main — Article Content
   Figma: PC 160:945 / SP 277:7505
   白背景 + wave-white.svg 上端マスク
======================================== */
.privacy-policy-main {
  position: relative;
  background: #fff;
  padding: 60px 0 100px;
}
@media (max-width: 960px) {
  .privacy-policy-main {
    padding: 28px 0 76px;
  }
}

/* 波形上端（白波） */
.privacy-policy-main__wave {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 76px;
  background: url("../../../../assets/wave-white.svg") repeat-x left top;
  background-size: 1470px 76px;
}
@media (max-width: 960px) {
  .privacy-policy-main__wave {
    top: -28px;
    height: 55px;
    background-size: 800px 55px;
  }
}

/* コンテンツ幅 */
.privacy-policy-main__content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 960px) {
  .privacy-policy-main__content {
    max-width: 375px;
    padding: 0 10px;
    gap: 23px;
  }
}

/* 各セクション */
.privacy-policy-article h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: normal;
}
@media (max-width: 960px) {
  .privacy-policy-article h2 {
    font-size: 24px;
  }
}
.privacy-policy-article p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 31px;
  text-align: justify;
}
@media (max-width: 960px) {
  .privacy-policy-article p {
    font-size: 14px;
    line-height: 24px;
  }
}
.privacy-policy-article p + p {
  margin-top: 15px;
}

/* 区切り線: 奇数=シアン / 偶数=ピンク の交互カラー */
.privacy-policy-divider {
  border: none;
  border-top: 3px solid #65cddb;
  margin: 6px 0 15px;
}
@media (max-width: 960px) {
  .privacy-policy-divider {
    margin: 6px 0 10px;
  }
}

.privacy-policy-article:nth-child(odd) .privacy-policy-divider {
  border-top-color: #65cddb;
}

.privacy-policy-article:nth-child(even) .privacy-policy-divider {
  border-top-color: #ff7777;
}