/* ========== Privacy Hero ========== */
.privacy-hero {
  position: relative;
  width: 100%;
  height: 280px;
  padding-top: 70px;
  background: linear-gradient(180deg, #1a2538 0%, #0f1a2c 100%);
  overflow: hidden;
}

.privacy-hero::before,
.privacy-hero::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle, rgba(196, 165, 118, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.privacy-hero::before {
  width: 480px;
  height: 480px;
  top: -200px;
  right: -120px;
}

.privacy-hero::after {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(28, 58, 92, 0.4) 0%, transparent 60%);
}

.privacy-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.privacy-hero__title {
  font-family: "Source Han Serif JP", "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  line-height: 1;
}

.privacy-hero__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ========== Privacy Section ========== */
.privacy-section {
  background: #f5f6f8;
  padding: 80px 24px 120px;
}

.privacy-section__inner {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  padding: 80px 80px 88px;
  box-shadow: 0 4px 24px rgba(15, 24, 40, 0.05);
}

.privacy-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  margin: 0 0 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e3e6ec;
}

/* 各記事 */
.privacy-article {
  margin: 0 0 48px;
}

.privacy-article:last-of-type {
  margin-bottom: 0;
}

.privacy-article__heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: "Noto Serif JP", "Source Han Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: #15181c;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e6ec;
}

.privacy-article__num {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #c4a576;
  letter-spacing: 0.18em;
  flex-shrink: 0;
}

.privacy-article p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

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

.privacy-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #2a2a2a;
  letter-spacing: 0.04em;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: #c4a576;
}

/* 連絡先テーブル */
.privacy-contact {
  margin: 16px 0 0;
  padding: 24px 28px;
  background: #fafbfc;
  border: 1px solid #e3e6ec;
}

.privacy-contact__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 10px 0;
}

.privacy-contact__row + .privacy-contact__row {
  border-top: 1px solid #e3e6ec;
}

.privacy-contact dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a5462;
  letter-spacing: 0.05em;
}

.privacy-contact dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #15181c;
  letter-spacing: 0.04em;
}

.privacy-contact__link {
  color: #136db6;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.privacy-contact__link:hover {
  opacity: 0.7;
}

/* ========== 特商法テーブル ========== */
.tokushoho-table {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e6ec;
}

.tokushoho-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid #e3e6ec;
}

.tokushoho-table dt {
  background: #fafbfc;
  padding: 20px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f2c4d;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.tokushoho-table dd {
  margin: 0;
  padding: 20px 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #2a2a2a;
  letter-spacing: 0.04em;
}

.tokushoho-table dd p {
  margin: 0 0 12px;
}

.tokushoho-table dd p:last-child {
  margin-bottom: 0;
}

.tokushoho-table dd .privacy-list {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .tokushoho-table__row {
    grid-template-columns: 1fr;
  }

  .tokushoho-table dt {
    padding: 12px 16px;
    font-size: 13px;
  }

  .tokushoho-table dt br {
    display: none;
  }

  .tokushoho-table dd {
    padding: 16px;
  }
}

/* 末尾の制定日 */
.privacy-foot {
  margin: 56px 0 0;
  padding-top: 32px;
  border-top: 1px solid #e3e6ec;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #6a7686;
  text-align: right;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ========== Responsive ========== */
@media screen and (max-width: 768px) {
  .privacy-hero {
    height: 220px;
  }

  .privacy-hero__title {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  .privacy-hero__sub {
    font-size: 11px;
  }

  .privacy-section {
    padding: 56px 16px 80px;
  }

  .privacy-section__inner {
    padding: 40px 24px 48px;
  }

  .privacy-lead {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .privacy-article {
    margin-bottom: 36px;
  }

  .privacy-article__heading {
    font-size: 16px;
    gap: 12px;
  }

  .privacy-article__num {
    font-size: 11px;
  }

  .privacy-contact {
    padding: 16px 16px;
  }

  .privacy-contact__row {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
}
