/* niyang.app — 共通スタイル。外部リソースは読み込まない(フォントも含めてシステム任せ)。 */
:root {
  --bg: #1A1A1C;
  --surface: #242427;
  --text: #F2F2F2;
  --muted: #A8A8AD;
  --accent: #E89628;
  --line: #333338;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

header.site {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

header.site .brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

header.site .brand span { color: var(--accent); }

nav.lang {
  font-size: 14px;
  color: var(--muted);
}

nav.lang a { color: var(--accent); text-decoration: none; }
nav.lang a:hover { text-decoration: underline; }

h1 { font-size: 28px; line-height: 1.3; margin: 8px 0 4px; }
h2 { font-size: 22px; line-height: 1.3; margin: 40px 0 8px; padding-top: 8px; border-top: 1px solid var(--line); }
h3 { font-size: 17px; margin: 24px 0 6px; }
p { margin: 8px 0; }
a { color: var(--accent); }

.tagline { color: var(--muted); margin-top: 0; }
.muted { color: var(--muted); font-size: 14px; }

ul, ol { padding-left: 22px; }
li { margin: 4px 0; }

.card {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
}

.card h3 { margin-top: 0; }

.button {
  display: inline-block;
  background: var(--accent);
  color: #1A1A1C;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
}

.button.placeholder {
  background: var(--surface);
  color: var(--muted);
  border: 1px dashed var(--line);
  font-weight: 500;
}

section[lang] { scroll-margin-top: 16px; }

dl.faq dt { font-weight: 700; margin-top: 18px; }
dl.faq dd { margin: 4px 0 0; color: var(--text); }

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

footer a { color: var(--muted); }
