:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border: #e5e7eb;
  --footer-bg: #111827;
  --footer-text: #d1d5db;
  --footer-mute: #9ca3af;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.site-container--narrow { max-width: 760px; }

/* ========================================================
   HEADER — 2段構造（メインバー + カテゴリナビ）
   ======================================================== */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.site-header__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900; color: var(--brand);
  letter-spacing: -0.01em;
}
.site-logo img {
  max-height: 40px; width: auto; max-width: 220px;
}
.site-logo__text { line-height: 1.1; }

.site-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: .88rem; font-weight: 500;
}
.site-nav a {
  color: var(--text); transition: color .15s;
  position: relative; padding: 4px 0;
}
.site-nav a:hover { color: var(--brand); }
.site-nav a.is-active {
  color: var(--brand);
}
.site-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand);
}

.site-header__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: .85rem; font-weight: 700;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.site-header__cta:hover { background: var(--brand-dark); transform: translateY(-1px); color: #fff; }

/* カテゴリナビ（ヘッダー2段目） */
.site-catnav {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.site-catnav__inner {
  display: flex; align-items: center; gap: 24px;
  overflow-x: auto;
  padding: 12px 0;
  font-size: .82rem;
  scrollbar-width: thin;
}
.site-catnav__inner::-webkit-scrollbar { height: 4px; }
.site-catnav__inner::-webkit-scrollbar-thumb { background: var(--border); }
.site-catnav a {
  color: var(--muted); white-space: nowrap;
  padding: 4px 2px; transition: color .15s;
  font-weight: 500;
}
.site-catnav a:hover { color: var(--brand); }
.site-catnav a.is-active { color: var(--brand); font-weight: 700; }

/* ========================================================
   BREADCRUMB
   ======================================================== */
.site-breadcrumb {
  font-size: .78rem; color: var(--muted);
  padding: 16px 0 0;
}
.site-breadcrumb a:hover { color: var(--brand); }
.site-breadcrumb .sep { margin: 0 8px; opacity: .6; }
.site-breadcrumb .current {
  color: var(--text); font-weight: 500;
}

/* ========================================================
   MAIN — 2カラム（メイン + サイドバー）
   ======================================================== */
.site-main { background: var(--bg-soft); }
.site-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 32px 0 64px;
  align-items: start;
}
.site-content { min-width: 0; }
.site-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }

/* HERO（ページヘッダー風：salesasset.co.jp 系） */
.site-hero {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 6px solid var(--brand);
  padding: 36px 40px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.site-hero h1 {
  font-size: 1.85rem; font-weight: 900; margin: 0 0 10px;
  letter-spacing: -0.01em; line-height: 1.4;
  color: var(--text);
}
.site-hero p { font-size: .92rem; color: var(--muted); margin: 0; max-width: 720px; line-height: 1.8; }

/* カテゴリタブ（ピル型） */
.site-cat-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 28px;
}
.site-cat-tabs a {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  font-size: .82rem; font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  transition: all .15s;
  white-space: nowrap;
}
.site-cat-tabs a:hover {
  border-color: var(--brand); color: var(--brand);
}
.site-cat-tabs a.is-active {
  background: var(--brand); color: #fff; border-color: var(--brand);
}

/* セクション見出し */
.site-section-title {
  font-size: 1.15rem; font-weight: 800;
  margin: 0 0 20px; padding-left: 14px;
  border-left: 4px solid var(--brand);
  display: flex; align-items: center; gap: 10px;
}
.site-section-title__count {
  font-size: .75rem; font-weight: 500; color: var(--muted);
}

/* フィルタ表示バナー */
.filter-banner {
  background: #eff6ff; border: 1px solid #dbeafe;
  border-radius: 8px; padding: 12px 16px;
  font-size: .82rem; color: var(--brand-dark);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.filter-banner__clear {
  font-size: .75rem; color: var(--brand-dark); text-decoration: underline;
}

/* 記事カードグリッド */
.site-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.site-article-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column; gap: 10px;
}
.site-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,.12);
  border-color: var(--brand);
}
.site-article-card__cat {
  display: inline-block; align-self: flex-start;
  font-size: .7rem; font-weight: 700;
  background: #eff6ff; color: var(--brand-dark);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: .02em;
}
.site-article-card__title {
  font-size: 1.02rem; font-weight: 700; margin: 0;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-article-card__meta {
  font-size: .72rem; color: var(--muted);
  display: flex; gap: 12px;
}
.site-article-card__excerpt {
  font-size: .82rem; color: var(--muted); line-height: 1.7;
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-article-card__cover {
  margin: -22px -22px 14px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 12px; border-top-right-radius: 12px;
  background: #f3f4f6;
}
.site-article-card__cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.site-article-card--has-cover { padding-top: 0; overflow: hidden; }
.site-article-card:hover .site-article-card__cover img { transform: scale(1.04); }
.site-article-card__body { display: flex; flex-direction: column; gap: 10px; }
.site-article-card__more {
  margin-top: 4px;
  font-size: .78rem; font-weight: 700;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
}
.site-article-card__more::after {
  content: '→';
  transition: transform .15s;
}
.site-article-card:hover .site-article-card__more::after {
  transform: translateX(4px);
}

/* ページネーション */
.site-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin: 40px 0 0; flex-wrap: wrap;
}
.site-pagination a, .site-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .85rem; font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: all .15s;
}
.site-pagination a:hover {
  border-color: var(--brand); color: var(--brand);
}
.site-pagination .is-active {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.site-pagination .is-disabled {
  color: var(--muted); opacity: .5; cursor: not-allowed;
}
.site-pagination .ellipsis {
  border: none; background: transparent;
}

/* 中央 CTA バナー（記事リスト中段に挿入） */
.site-mid-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  border-radius: 16px;
  padding: 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: center;
  margin: 16px 0;
  grid-column: 1 / -1;
}
.site-mid-cta__title { font-size: 1.15rem; font-weight: 800; margin: 0 0 6px; line-height: 1.5; }
.site-mid-cta__sub   { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }
.site-mid-cta__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: .9rem; font-weight: 700; white-space: nowrap;
  transition: background .15s, transform .15s;
}
.site-mid-cta__btn:hover { background: var(--brand-dark); transform: translateY(-1px); color: #fff; }

.site-empty {
  background: var(--bg); border: 1px dashed var(--border);
  padding: 48px 24px; text-align: center;
  border-radius: 12px; color: var(--muted); font-size: .9rem;
}

/* ========================================================
   SIDEBAR
   ======================================================== */
.side-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.side-card__title {
  font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
}
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: none; }
.side-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: .85rem; color: var(--text);
  transition: color .15s;
}
.side-list a:hover { color: var(--brand); }
.side-list a.is-active { color: var(--brand); font-weight: 700; }
.side-list__count {
  font-size: .72rem; color: var(--muted);
  background: var(--bg-soft);
  padding: 2px 8px; border-radius: 10px;
}

/* サイドバー CTA */
.side-cta {
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  color: #fff; padding: 24px 20px; border-radius: 12px;
  text-align: center;
}
.side-cta h4 { font-size: 1rem; margin: 0 0 14px; font-weight: 800; line-height: 1.5; }
.side-cta a {
  display: inline-block; background: #fff; color: var(--brand);
  padding: 10px 22px; border-radius: 999px; font-weight: 700;
  font-size: .82rem;
}

/* ========================================================
   ARTICLE PAGE
   ======================================================== */
.article-content {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px 48px;
}
.article-content__header {
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-content__cat {
  display: inline-block; font-size: .72rem; font-weight: 700;
  background: #eff6ff; color: var(--brand-dark);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.article-content__cover {
  margin: 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #f3f4f6;
}
.article-content__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* 本文中の補足画像（![]()） */
.article-img {
  margin: 24px 0; text-align: center;
}
.article-img img {
  max-width: 100%; height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.article-img figcaption {
  margin-top: 8px; font-size: .78rem; color: var(--muted);
}
.article-content h1 {
  font-size: 1.85rem; font-weight: 900; line-height: 1.4;
  margin: 0 0 14px; letter-spacing: -0.01em;
}
.article-content .article-meta {
  font-size: .8rem; color: var(--muted);
  display: flex; gap: 16px;
}
.article-content h2 {
  font-size: 1.4rem; font-weight: 800; margin: 40px 0 16px;
  padding: 8px 0 8px 16px; border-left: 4px solid var(--brand);
  background: var(--bg-soft);
}
.article-content h3 {
  font-size: 1.1rem; font-weight: 700; margin: 28px 0 12px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.article-content p { margin: 0 0 18px; font-size: .98rem; }
.article-content ul, .article-content ol { padding-left: 24px; margin: 0 0 18px; }
.article-content li { margin-bottom: 6px; }
.article-content strong { font-weight: 700; color: var(--text); }
.article-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.article-content table {
  border-collapse: collapse; width: 100%; margin: 18px 0;
  font-size: .9rem;
}
.article-content th, .article-content td {
  border: 1px solid var(--border); padding: 10px 14px; text-align: left;
}
.article-content th { background: var(--bg-soft); font-weight: 700; }
.article-content blockquote {
  border-left: 4px solid var(--brand); padding: 12px 18px;
  background: var(--bg-soft); margin: 18px 0; color: var(--muted);
}

/* CTA（記事内・大） */
.site-cta {
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  color: white; padding: 48px 32px; border-radius: 16px;
  text-align: center; margin: 32px 0;
  box-shadow: 0 12px 30px -12px rgba(37,99,235,.4);
}
.site-cta h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 24px; }
.site-cta-btn {
  display: inline-block; background: white; color: var(--brand);
  padding: 14px 36px; border-radius: 100px;
  font-weight: 700; transition: transform .15s;
}
.site-cta-btn:hover { transform: scale(1.04); color: var(--brand); }
.site-cta--inarticle { margin: 32px 0; padding: 32px 24px; }

/* ========================================================
   FOOTER — 多段リンク + ロゴ + コピーライト
   ======================================================== */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: 48px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 32px;
}
.site-footer__brand {
  display: flex; flex-direction: column; gap: 14px;
}
.site-footer__brand-logo {
  font-size: 1.3rem; font-weight: 900; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.site-footer__brand-logo img { max-height: 36px; max-width: 200px; }
.site-footer__brand-desc {
  font-size: .82rem; color: var(--footer-mute); line-height: 1.7;
  margin: 0;
}
.site-footer__col h4 {
  font-size: .78rem; color: #fff; margin: 0 0 14px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a {
  font-size: .82rem; color: var(--footer-mute);
  transition: color .15s;
}
.site-footer__list a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; font-size: .75rem; color: var(--footer-mute);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer__powered { opacity: .7; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 960px) {
  .site-layout {
    grid-template-columns: 1fr;
  }
  .site-sidebar { position: static; }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .site-header__cta { display: none; }
}
@media (max-width: 600px) {
  .site-hero { padding: 28px 24px; }
  .site-hero h1 { font-size: 1.4rem; }
  .article-content { padding: 28px 22px; }
  .article-content h1 { font-size: 1.4rem; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 24px; }
  .site-nav { gap: 16px; font-size: .8rem; }
  .site-mid-cta { grid-template-columns: 1fr; padding: 28px 24px; text-align: center; }
  .site-cat-tabs a { padding: 7px 14px; font-size: .78rem; }
}

/* =====================================================================
   TEMPLATE: MAGAZINE — 雑誌風（大胆な見出し・多段組・セリフ体）
   ===================================================================== */
body.template-magazine {
  font-family: 'Noto Serif JP', serif;
}
body.template-magazine .site-header {
  border-bottom: 3px double var(--brand);
  padding: 24px 0;
}
body.template-magazine .site-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
body.template-magazine .site-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
body.template-magazine .site-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.template-magazine .site-hero p {
  font-size: 1.1rem;
  margin: 16px auto 0;
  font-style: italic;
}
body.template-magazine .site-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  border: none;
  padding: 0;
  margin: 48px 0 24px;
  display: block;
  text-align: center;
  position: relative;
}
body.template-magazine .site-section-title::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--brand); margin: 12px auto 0;
}
body.template-magazine .site-article-grid {
  grid-template-columns: 2fr 1fr 1fr;
}
body.template-magazine .site-article-card {
  border: none; border-radius: 0; padding: 0;
  background: transparent;
  border-top: 2px solid var(--text);
  padding-top: 16px;
}
body.template-magazine .site-article-card:hover {
  transform: none; box-shadow: none;
  border-color: var(--brand);
}
body.template-magazine .site-article-card:first-child {
  grid-row: span 2;
  background: var(--bg-soft);
  padding: 32px;
  border: none;
}
body.template-magazine .site-article-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
}
body.template-magazine .site-article-card:first-child .site-article-card__title {
  font-size: 2rem;
}
body.template-magazine .article-content h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
body.template-magazine .article-content h2 {
  font-family: 'Noto Serif JP', serif;
  border: none;
  padding: 0;
  text-align: center;
  margin-top: 64px;
}
body.template-magazine .article-content h2::after {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--brand); margin: 12px auto 0;
}

/* =====================================================================
   TEMPLATE: MINIMAL — ミニマル（余白広め・モノトーン・タイポ重視）
   ===================================================================== */
body.template-minimal {
  font-feature-settings: 'palt';
}
body.template-minimal .site-container { max-width: 800px; }
body.template-minimal .site-header {
  border-bottom: none;
  padding: 32px 0;
}
body.template-minimal .site-header .site-container {
  flex-direction: column; gap: 16px; text-align: center;
}
body.template-minimal .site-logo {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
body.template-minimal .site-nav { font-size: 0.78rem; gap: 32px; }
body.template-minimal .site-hero { padding: 96px 0 80px; text-align: center; }
body.template-minimal .site-hero h1 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--text);
  line-height: 1.4;
}
body.template-minimal .site-hero p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 24px auto 0;
  max-width: 540px;
}
body.template-minimal .site-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 0;
  margin: 80px 0 32px;
  text-align: center;
  display: block;
  color: var(--muted);
}
body.template-minimal .site-article-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
body.template-minimal .site-article-card {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 32px;
  align-items: baseline;
}
body.template-minimal .site-article-card:hover {
  transform: none; box-shadow: none; background: var(--bg-soft);
  border-color: var(--text);
}
body.template-minimal .site-article-card__meta {
  display: block; font-size: 0.78rem; color: var(--muted);
}
body.template-minimal .site-article-card__title {
  font-size: 1.15rem;
  font-weight: 500;
}
body.template-minimal .site-article-card__excerpt {
  grid-column: 2;
}
body.template-minimal .article-content h1 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 48px;
}
body.template-minimal .article-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  padding: 0;
  margin-top: 56px;
  letter-spacing: -0.01em;
}
body.template-minimal .site-cta {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 56px 32px;
}
body.template-minimal .site-cta-btn {
  background: var(--text);
  color: var(--bg);
  border-radius: 0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* =====================================================================
   TEMPLATE: CORPORATE — 既定スタイル（変更なし）
   ===================================================================== */

/* =====================================================================
   TEMPLATE OVERRIDES — magazine / minimal を新レイアウトに馴染ませる
   ===================================================================== */
body.template-minimal .site-layout {
  grid-template-columns: 1fr;
  max-width: 800px; margin: 0 auto;
}
body.template-minimal .site-sidebar { display: none; }
body.template-minimal .site-hero {
  background: transparent; color: var(--text);
  box-shadow: none; padding: 64px 0 32px; margin-bottom: 16px;
}
body.template-minimal .site-hero h1 {
  font-size: 2rem; font-weight: 300;
  background: none; -webkit-background-clip: initial; color: var(--text);
}
body.template-minimal .site-hero p { color: var(--muted); }
body.template-minimal .site-catnav { display: none; }
body.template-minimal .site-footer { background: var(--bg); color: var(--muted); border-top: 1px solid var(--border); }
body.template-minimal .site-footer__brand-logo { color: var(--text); }
body.template-minimal .site-footer__col h4 { color: var(--text); }
body.template-minimal .site-footer__list a { color: var(--muted); }
body.template-minimal .site-footer__list a:hover { color: var(--text); }
body.template-minimal .site-footer__bottom { color: var(--muted); border-top-color: var(--border); }

body.template-magazine .site-hero {
  background: transparent; color: var(--text);
  box-shadow: none; padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  margin-bottom: 32px;
}
body.template-magazine .site-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem; color: var(--text); letter-spacing: -0.02em;
}
body.template-magazine .site-hero p {
  color: var(--muted); margin: 16px auto 0; font-style: italic;
}
body.template-magazine .article-content {
  background: var(--bg); border: none; border-radius: 0;
}
