:root {
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #0f766e;
  --max: 900px;
}

/* -----------------------------------------------------
   ベース設定
----------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  line-height: 1.9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  overflow-x: hidden;
}

/* -----------------------------------------------------
   レイアウト
----------------------------------------------------- */
.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.page-foot {
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}

/* -----------------------------------------------------
   セクションタイトル
----------------------------------------------------- */
.sec-ttl {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  position: relative;
}

.sec-ttl::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brand);
  margin: 10px auto 0;
}

.lead {
  text-align: center;
  margin: 0 0 8px;
  color: var(--muted);
}

.sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

/* -----------------------------------------------------
   h2見出し
----------------------------------------------------- */
.policy-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  border-left: 4px solid var(--brand);
  padding-left: 10px;
  margin: 28px 0 12px;
  line-height: 1.6;
  text-align: left;
}

/* -----------------------------------------------------
   番号付きリスト
----------------------------------------------------- */
.num {
  list-style: none;
  padding: 0;
  counter-reset: num;
}

.num > li {
  counter-increment: num;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.num > li:last-child {
  border: none;
}

/* -----------------------------------------------------
   カナリスト（（1）（2）など）
----------------------------------------------------- */
.kana {
  list-style: none;          /* ← ブラウザ標準の黒丸を消す */
  list-style-type: none;     /* ← 念押しで削除 */
  padding-left: 0;           /* 左余白を完全リセット */
  margin: 8px 0;
}

.kana li {
  position: relative;
  padding-left: 0;
}

/* ← 中黒削除済み */
/*
.kana li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--muted);
}
*/

/* -----------------------------------------------------
   通常のulリスト
----------------------------------------------------- */
ul {
  list-style: none;          /* ← ここも黒丸削除 */
  list-style-type: none;     /* ← Safari対策 */
  padding-left: 1.2rem;
  margin: 8px 0;
}

/* -----------------------------------------------------
   問い合わせボックス
----------------------------------------------------- */
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  padding: 10px 12px;
  margin: 8px 0;
}

/* -----------------------------------------------------
   署名
----------------------------------------------------- */
.sign {
  color: var(--muted);
  margin-top: 16px;
  text-align: right;
}
