/* =========================================================
   ANNON STORE — 商品説明ページ 共通スタイル
   product.css
   全商品ページで使い回せる汎用スタイル
   ブランドカラー: ネイビー #1a3a5c / ゴールド #B89A5A
   ========================================================= */

.pd {
  --gold: #b89a5a;
  --line: #e3ddd0;
  --text: #2d2926;
  --text-muted: #6b6258;
  --bg-alt: #f7f5f0;

  margin: 0 auto;
  background: #ffffff;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
}

/* ---------- 見出し ---------- */

.pd-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0 !important;
}

.pd-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin: 44px 0 18px !important;
  padding-bottom: 9px;
  /* border-bottom: 1px solid var(--line); */
  display: inline-block;
}

.pd-heading:first-of-type {
  margin-top: 0;
}

.pd-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.pd-faq-q:first-child {
  margin-top: 0;
}

/* ---------- 本文 ---------- */

.pd-text {
  margin: 0 0 4px;
  color: var(--text);
}

.pd-text br {
  content: "";
  display: block;
  margin: 6px 0;
}

.pd-faq .pd-text {
  color: var(--text-muted);
}

/* ---------- リスト ---------- */

.pd-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: var(--text);
}

.pd-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 23px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cdcdcd;
}

/* ---------- スペック表 ---------- */

.pd-spec {
  width: 100%;
  margin: 20px 0 8px;
  border-collapse: collapse;
  font-size: 14px;
}

.pd-spec thead th {
  background: #eee;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 10px 16px;
}

.pd-spec tbody th {
  width: 20%;
  text-align: left;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.pd-spec tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.pd-spec tbody tr:last-child th,
.pd-spec tbody tr:last-child td {
  border-bottom: 1px solid var(--line);
}

/* ---------- レスポンシブ（モバイル） ---------- */

@media (max-width: 480px) {
  .pd {
    padding: 28px 16px 40px;
    font-size: 14px;
  }

  .pd-title {
    font-size: 19px;
  }

  .pd-heading {
    font-size: 16px;
    margin: 32px 0 14px;
  }

  .pd-spec {
    font-size: 13px;
  }

  .pd-spec tbody th,
  .pd-spec tbody td {
    padding: 10px 12px;
  }
}

/* ---------- アクセシビリティ ---------- */

@media (prefers-reduced-motion: reduce) {
  .pd * {
    transition: none !important;
  }
}
