/* 推しイレ 法的文書 — 白背景・タイポグラフィ主体のミニマルデザイン */

:root {
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --rule: #e5e5e7;
  --link: #0f8b98; /* ブランド teal はリンクのみに使用 */
  --link-hover: #0b6b75;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* ===== ヘッダー：ワードマークと細い罫線のみ ===== */
.site-header {
  border-bottom: 1px solid var(--rule);
}
.site-header .wordmark {
  display: block;
  max-width: 660px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
}
.site-header .wordmark-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 100%;
}

/* ===== 本文 ===== */
.content {
  max-width: 660px;
  margin: 0 auto;
  padding: 2.6rem 1.5rem 4rem;
}

.content h1 {
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* 制定日・改定日のメタ行 */
.content h1 + p {
  margin-top: 0;
  color: var(--ink-2);
  font-size: 0.85rem;
}

.content h2 {
  margin: 3rem 0 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.content h3 {
  margin: 2rem 0 0.6rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.content p, .content ul, .content ol {
  margin: 0 0 1.1em;
}

.content ul, .content ol {
  padding-left: 1.5em;
}

.content li + li {
  margin-top: 0.35em;
}

.content a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.content a:hover { color: var(--link-hover); }

.content strong { font-weight: 700; }

.content hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* ===== index：文書へのリンクカード ===== */
.doc-cards {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0.5rem;
}
.doc-card {
  display: block;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: border-color 0.15s ease;
}
.doc-card:hover { border-color: var(--ink-2); }
.doc-card__title {
  font-weight: 700;
  font-size: 1.02rem;
}
.doc-card__desc {
  color: var(--ink-2);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

/* ===== フッター ===== */
.site-footer {
  border-top: 1px solid var(--rule);
}
.site-footer p {
  max-width: 660px;
  margin: 0 auto;
  padding: 1.3rem 1.5rem 2.2rem;
  color: var(--ink-2);
  font-size: 0.82rem;
}
.site-footer a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
