/* =========================================
   PRIVACY POLICY PAGE (Clean & Modern)
   ========================================= */

.privacy-content-sec {
  padding: 0 0 120px;
  background-color: #fff; /* 背景は白のまま */
}

.privacy-layout {
  max-width: 840px;
  margin: 0 auto;
}

/* 導入文 */
.privacy-intro {
  margin-bottom: 80px;
  font-size: 16px;
  line-height: 2.2;
  font-weight: 500;
}

/* 条文リスト */
.privacy-item {
  margin-bottom: 60px;
}
.privacy-item:last-child {
  margin-bottom: 0;
}

/* 条文見出し（装飾ポイント） */
.p-term {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  background-color: #f7f7f7; /* 薄いグレーの背景で帯にする */
  padding: 15px 20px;
  border-left: 4px solid var(--c-green); /* 左にブランドカラーの線 */
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0; /* 右側だけ少し角丸 */
}

/* 条文内容 */
.p-desc {
  padding: 0 10px 0 10px; /* 少しインデント */
}
.p-desc p {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

/* リスト（中黒ではなく、チェックマーク風にするなど） */
.p-check-list {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 25px 30px;
  border-radius: 4px;
}
.p-check-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 14px;
}
.p-check-list li::before {
  content: "・"; /* シンプルな中黒、あるいは "✔" に変えてもOK */
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: bold;
}
.p-check-list li:last-child {
  margin-bottom: 0;
}

/* お問い合わせ窓口ボックス */
.privacy-contact-box {
  margin-top: 100px;
  padding: 50px;
  background-color: #fff;
  border: 2px solid #f0f0f0; /* 薄い枠線 */
  border-radius: 6px;
}

.pc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-green);
  text-align: center;
}
.pc-text {
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.pc-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}
.pc-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.pc-row:last-child {
  border-bottom: none;
}
.pc-row dt {
  width: 100px;
  font-weight: 700;
  color: #111;
  flex-shrink: 0;
}
.pc-row dd {
  flex-grow: 1;
  color: #555;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .p-term {
    font-size: 16px;
    padding: 12px 15px;
  }
  .privacy-contact-box {
    padding: 30px 20px;
  }
  .pc-row {
    flex-direction: column;
    gap: 5px;
  }
  .pc-row dt {
    width: 100%;
    color: var(--c-green);
    font-size: 13px;
  }
}