/* 利用規約・プライバシーポリシー・特定商取引法ページの共通スタイル
   （index.html のトーンに合わせた紙っぽい配色） */
:root {
  --ink: #2a2a2a;
  --ink-mid: #555555;
  --ink-light: #7a7a7a;
  --paper: #fdfbf5;
  --paper-warm: #f7f1e1;
  --line: #d5cebd;
  --line-soft: #e7e0cc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "M PLUS Rounded 1c", "Shippori Mincho", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---- ヘッダー ---- */
.legal-header {
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0 24px;
  background: var(--paper-warm);
}
.legal-brand {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.legal-brand small {
  display: block;
  font-family: "Caveat", cursive;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 2px;
}
.legal-title {
  font-family: "Klee One", serif;
  font-size: 26px;
  font-weight: 600;
  margin-top: 20px;
}
.legal-updated { font-family: "Klee One", serif; font-size: 13px; color: var(--ink-light); margin-top: 4px; }

/* ---- 本文 ---- */
main { padding: 32px 0 56px; }
main h2 {
  font-family: "Klee One", serif;
  font-size: 17px;
  font-weight: 600;
  margin: 36px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}
main h2:first-of-type { margin-top: 8px; }
main p { font-size: 15px; margin-bottom: 14px; color: var(--ink-mid); }
main ul, main ol { margin: 0 0 16px 22px; }
main li { font-size: 15px; margin-bottom: 6px; color: var(--ink-mid); }
main strong { color: var(--ink); }
main a { color: #7a6a3a; }
.lead { font-size: 15px; color: var(--ink-mid); }

/* ---- 特商法の表 ---- */
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td { text-align: left; vertical-align: top; padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-mid); }
th { white-space: nowrap; font-family: "Klee One", serif; font-weight: 600; color: var(--ink); width: 34%; }
.table-scroll { overflow-x: auto; }

/* ---- フッター ---- */
.legal-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  font-family: "Klee One", serif;
  font-size: 13px;
  text-align: center;
}
.legal-footer a { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 8px; }
.legal-footer a:hover { color: white; }
.legal-footer .copy { margin-top: 12px; color: rgba(255,255,255,0.4); font-size: 12px; }

@media (max-width: 600px) {
  .legal-title { font-size: 21px; }
  th { width: auto; white-space: normal; }
  th, td { display: block; padding: 10px 0 0; border-bottom: none; }
  td { padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
}
