/* =========================================================
   プライバシーポリシー（page-privacy.php）
   配色トークン（--blue 等）は lower-style.css で定義済みのものを利用
   ========================================================= */
.privacy-section {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
}

/* 導入 */
.privacy-intro {
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.privacy-intro .section-kicker {
  color: var(--blue);
}

.privacy-intro h2 {
  margin: 10px 0 20px;
  color: #102032;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.4;
}

.privacy-intro p {
  margin: 0;
  color: #3a4a5c;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}

/* 各条文ブロック */
.privacy-block {
  padding: clamp(24px, 3.5vw, 34px) clamp(22px, 4vw, 40px);
  background: #fff;
  border: 1px solid rgba(214, 229, 241, 0.9);
  border-radius: 12px;
  box-shadow: 0 0 24px 2px rgba(4, 22, 38, 0.05);
}

.privacy-block + .privacy-block {
  margin-top: 18px;
}

.privacy-block h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 16px;
  color: #102032;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.5;
}

.privacy-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 5px;
  height: 1.15em;
  background: linear-gradient(180deg, #238fff, #005be4);
  border-radius: 3px;
}

.privacy-block p {
  margin: 0 0 12px;
  color: #3a4a5c;
  font-weight: 500;
  line-height: 2;
}

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

/* リスト */
.privacy-list {
  margin: 12px 0 0;
  padding-left: 1.4em;
  list-style: none;
}

.privacy-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.1em;
  color: #3a4a5c;
  font-weight: 500;
  line-height: 1.9;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

/* お問い合わせ窓口の定義リスト */
.privacy-contact {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--soft, #f3f8fc);
  border: 1px solid rgba(214, 229, 241, 0.9);
  border-radius: 10px;
}

.privacy-contact dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 18px;
  margin: 0;
}

.privacy-contact dt {
  color: #0c2138;
  font-weight: 800;
}

.privacy-contact dd {
  margin: 0;
  color: #3a4a5c;
  font-weight: 500;
}

.privacy-contact a {
  color: var(--blue);
  text-decoration: none;
}

.privacy-contact a:hover {
  text-decoration: underline;
}

/* 制定日・改定日 */
.privacy-meta {
  margin: clamp(32px, 5vw, 48px) 0 0;
  color: #5f6f82;
  font-weight: 600;
  line-height: 1.9;
  text-align: right;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .privacy-contact dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-contact dt {
    margin-top: 8px;
  }

  .privacy-contact dt:first-child {
    margin-top: 0;
  }
}
