@charset "UTF-8";
/* ============================================================
   privacy.css - プライバシーポリシーページ固有スタイル
   ※ 中ページ共通スタイル（.page-hero / .inner-title 等）は common.css に記述
   ============================================================ */

/* ===== セクション ===== */
.privacy-section {
  background: #ffffff;
  padding: 60px 0;
}

/* ===== 冒頭テキスト ===== */
.privacy-intro {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}

/* ===== 各ブロック ===== */
.privacy-block {
  margin-bottom: 48px;
}

/* ===== h3見出し ===== */
.privacy-heading {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: #ffffff;
  background: #102487;
  padding: 10px 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ===== h4小見出し ===== */
.privacy-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: #102487;
  margin: 20px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #102487;
}

/* ===== 本文 ===== */
.privacy-block p {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 16px;
}

/* ===== 箇条書き（bullet） ===== */
.privacy-list {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.privacy-list li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  padding: 6px 0 6px 20px;
  position: relative;
}

.privacy-list li:last-child {
  border-bottom: none;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #f79824;
  border-radius: 50%;
}

.list-title {
  font-weight: 500;
  color: #102487;
  display: block;
  margin-bottom: 2px;
}

/* ===== 番号付きリスト ===== */
.privacy-ordered-list {
  margin: 12px 0 16px;
  padding-left: 24px;
}

.privacy-ordered-list li {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  margin-bottom: 8px;
}

/* ===== お問い合わせ窓口テーブル ===== */
.privacy-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.privacy-table th,
.privacy-table td {
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  vertical-align: top;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-table th {
  width: 160px;
  background: #f5f5f5;
  color: #102487;
  font-weight: 500;
  white-space: nowrap;
}

.privacy-table td {
  color: var(--text);
}

/* ===== 制定日・社名フッター ===== */
.privacy-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  text-align: right;
}

.privacy-footer p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
  }

  .privacy-table th {
    border-bottom: none;
  }

  .privacy-footer {
    text-align: left;
  }
}
