:root {
  --bg-deep: #0a1812;
  --bg-mid: #142821;
  --bg-card: #1a3328;
  --gold: #d4a24c;
  --gold-bright: #e8c078;
  --cream: #f5e8d0;
  --text: #f5e8d0;
  --text-muted: #b8a888;
  --text-subtle: #8a7d63;
  --border: rgba(212,162,76,0.2);
  --border-strong: rgba(212,162,76,0.4);
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse at top, rgba(212,162,76,0.05) 0%, transparent 50%);
}
.nav {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10,24,18,0.95);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--gold);
}
.brand img { width: 36px; height: 36px; border-radius: 50%; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 18px; }
.nav-cta {
  padding: 10px 22px; background: var(--gold); color: var(--bg-deep);
  border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 14px;
}
.nav-cta:hover { background: var(--gold-bright); }
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-meta {
  padding: 60px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.crumb { font-size: 12px; color: var(--text-subtle); letter-spacing: 0.16em; margin-bottom: 16px; }
.crumb a { color: var(--text-muted); text-decoration: none; }
.crumb a:hover { color: var(--gold); }
h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.lead {
  font-size: 17px; color: var(--text-muted); line-height: 1.9;
  margin-bottom: 24px;
}
.byline {
  display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-subtle);
}
.byline img { width: 28px; height: 28px; border-radius: 50%; }
article { padding-bottom: 80px; }
article h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
article h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  font-weight: 700;
  margin: 32px 0 12px;
}
article p { margin-bottom: 18px; color: var(--text); }
article ul, article ol { padding-left: 24px; margin-bottom: 18px; }
article li { margin-bottom: 8px; color: var(--text); }
article strong { color: var(--gold-bright); font-weight: 700; }
article em { color: var(--cream); font-style: normal; font-weight: 500; }
article code {
  background: rgba(212,162,76,0.1); padding: 2px 6px; border-radius: 4px;
  font-size: 14px; color: var(--gold-bright);
}
article blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(212,162,76,0.06);
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--cream);
  border-radius: 0 8px 8px 0;
}
article blockquote .author {
  display: block; margin-top: 8px; font-style: normal;
  color: var(--text-muted); font-size: 13px;
}
article table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  background: var(--bg-card); border-radius: 8px; overflow: hidden;
}
article th, article td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
article th { background: rgba(212,162,76,0.1); color: var(--gold); font-weight: 700; }
article hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-mid));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.cta-card h3 {
  font-family: var(--serif); color: var(--gold);
  font-size: 22px; margin-bottom: 12px;
}
.cta-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.cta-btn {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: var(--bg-deep);
  border-radius: 100px; text-decoration: none; font-weight: 700;
  font-size: 15px; letter-spacing: 0.04em;
}
.cta-btn:hover { background: var(--gold-bright); }
.related {
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.related h3 {
  font-family: var(--serif); color: var(--gold);
  font-size: 16px; letter-spacing: 0.12em; margin-bottom: 16px;
}
.related a {
  display: block; padding: 12px 0;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.related a:last-child { border-bottom: none; }
.related a:hover { color: var(--gold); }
.disclaimer {
  font-size: 11px; color: var(--text-subtle); padding: 16px;
  background: rgba(212,162,76,0.04);
  border-radius: 8px; margin-top: 32px;
  border: 1px solid var(--border);
}
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center; font-size: 12px; color: var(--text-subtle);
  margin-top: 80px;
}
footer.site-footer a { color: var(--text-muted); text-decoration: none; }
footer.site-footer a:hover { color: var(--gold); }
@media (max-width: 600px) {
  h1 { font-size: 26px; }
  article h2 { font-size: 22px; }
  article h3 { font-size: 18px; }
  .container { padding: 0 16px; }
}
