/* ============================================================
   クッション共和国 記事共通スタイル (cushion-article.css)
   政府広報・クリーム編集デザイン。industry.html 系に準拠。
   ============================================================ */
:root {
  --bg:           #FAF5EC;
  --bg-deep:      #F2EADC;
  --surface:      #FFFFFF;
  --paper:        #FCF7EC;
  --text:         #2A1F1A;
  --text-sub:     #5C4A3F;
  --text-mute:    #8A7A6F;
  --magenta:      #FF00FF;
  --magenta-deep: #C70096;
  --magenta-soft: #FFCEF7;
  --cyan:         #00FFFF;
  --cyan-deep:    #009FAE;
  --cyan-soft:    #C7F5F7;
  --beige:        #C7B299;
  --beige-deep:   #A18B6F;
  --beige-light:  #E5D9C5;
  --gold:         #C8A951;
  --gold-deep:    #9B7E2E;
  --burgundy:     #6B1F2E;
  --burgundy-deep:#4A101D;
  --purple:       #6D28D9;
  --purple-bri:   #8B5CF6;
  --green:        #3F6B4A;
  --line:         #E5D9C5;
  --rule:         #C5B89E;

  --font-serif:   "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --shadow-sm:    0 2px 6px rgba(42,16,8,0.08);
  --shadow-md:    0 8px 24px rgba(42,16,8,0.12);
  --shadow-lg:    0 24px 60px rgba(42,16,8,0.18);
  --gutter:       clamp(16px, 4vw, 32px);
  --header-h:     clamp(60px, 8vw, 76px);
  --container:    1180px;
  --content:      1080px;
  --reading:      720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-serif);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.95;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--burgundy); color: #FAF5EC; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250,245,236,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto;
  height: 100%; padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: clamp(12px, 2vw, 24px);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; color: var(--text); }
.brand__mark { width: clamp(28px, 4vw, 36px); height: clamp(28px, 4vw, 36px); background: radial-gradient(circle at 35% 30%, #EBDFCB 0%, var(--beige) 60%, var(--beige-deep) 100%); box-shadow: var(--shadow-sm), inset 0 2px 4px rgba(255,255,255,0.4); flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: clamp(0.92rem, 2vw, 1.05rem);  white-space: nowrap;}
.brand__sub  { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); list-style: none; }
.site-nav a { text-decoration: none; color: var(--text-sub); font-size: clamp(0.85rem, 1.3vw, 0.95rem); font-weight: 500; white-space: nowrap; transition: color 0.15s; padding: 8px 2px; display: inline-flex; align-items: center; }
.site-nav a:hover { color: var(--burgundy); }
.site-nav a.is-active { color: var(--burgundy); font-weight: 700; }
@media (max-width: 960px) { .brand__sub { display: none; } }
@media (max-width: 960px) {
  .site-header__inner { gap: 10px; }
  .site-header { height: auto; padding-bottom: 6px; }
  .site-header__inner { flex-wrap: wrap; align-items: center; padding-top: 6px; padding-bottom: 0; row-gap: 4px; }
  .site-header__inner > nav { flex-basis: 100%; width: 100%; min-width: 0; max-width: 100%; overflow: hidden; order: 2; }
  .site-nav { gap: 10px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; max-width: 100%; min-width: 0; flex: 1 1 auto; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { flex-shrink: 0; font-size: 0.76rem; letter-spacing: 0.02em; }
}
@media (max-width: 380px) {
  .site-nav a { font-size: 0.72rem; }
  .site-nav { gap: 8px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(440px, 70vh, 680px);
  color: #FAF5EC;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero--flat {
  background:
    radial-gradient(ellipse at 78% 18%, rgba(139,92,246,0.55) 0%, transparent 55%),
    linear-gradient(135deg, #14092B 0%, #2A0F2E 48%, #4A101D 100%);
}
.hero--flat-warm {
  background:
    radial-gradient(ellipse at 80% 15%, rgba(200,169,81,0.42) 0%, transparent 55%),
    linear-gradient(135deg, #4A101D 0%, #6B1F2E 55%, #2A1F1A 100%);
}
.hero--flat-green {
  background:
    radial-gradient(ellipse at 78% 18%, rgba(63,107,74,0.55) 0%, transparent 55%),
    linear-gradient(135deg, #14251A 0%, #1E3326 50%, #2A1F1A 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,15,40,0.25) 0%, rgba(42,15,40,0.0) 32%, rgba(42,15,40,0.88) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(36px, 5vw, 56px);
}
.hero__eyebrow {
  display: inline-block;
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  letter-spacing: 0.4em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 16px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  color: #fff;
}
.hero__title-en {
  display: block;
  font-size: 0.32em;
  font-weight: 500;
  color: var(--cyan-soft);
  letter-spacing: 0.18em;
  margin-top: 14px;
  font-style: italic;
}
.hero__lead {
  margin-top: clamp(16px, 2.5vw, 24px);
  color: rgba(255,255,255,0.95);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  max-width: 46ch;
  line-height: 1.95;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(24px, 4vw, 36px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}
.hero__meta strong { display: block; color: #fff; font-size: clamp(0.95rem, 1.5vw, 1.05rem); font-weight: 700; margin-top: 4px; }

/* ===== Section base ===== */
.section { padding: clamp(56px, 8vw, 96px) var(--gutter); }
.section__inner { max-width: var(--content); margin: 0 auto; }
.section__head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.section__eyebrow {
  display: inline-block;
  font-size: clamp(0.66rem, 1.15vw, 0.74rem);
  letter-spacing: 0.32em;
  color: var(--burgundy);
  padding: 3px 14px;
  border-top: 1px solid var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.section__lead {
  color: var(--text-sub);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.95;
}
.section--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ===== 本文（記事プローズ） ===== */
.prose { width: min(100% - var(--gutter)*2, var(--reading)); margin: 0 auto; }
.prose__para {
  font-size: clamp(0.96rem, 1.5vw, 1.05rem);
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  text-align: justify;
}
.prose__para:last-child { margin-bottom: 0; }
.prose__para strong { color: var(--text); font-weight: 700; }
.prose__para em {
  font-style: normal;
  background: linear-gradient(transparent 64%, rgba(200,169,81,0.28) 64%);
  padding: 0 2px;
}
.prose__figure {
  margin: clamp(28px, 4vw, 40px) 0;
  border: 1px solid var(--text-mute);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: clamp(6px, 1vw, 10px);
}
.prose__figure img { width: 100%; height: auto; display: block; }
.prose__figure figcaption {
  padding: clamp(12px, 2vw, 16px) clamp(6px, 1.5vw, 12px) clamp(6px, 1vw, 10px);
  font-size: clamp(0.76rem, 1.3vw, 0.85rem);
  color: var(--text-mute);
  line-height: 1.7;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  text-align: center;
}
.prose__figure figcaption strong { color: var(--text-sub); font-weight: 700; }

.pullquote {
  margin: clamp(28px, 4vw, 44px) 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  background: rgba(107, 31, 46, 0.05);
  font-size: clamp(1.02rem, 1.7vw, 1.15rem);
  color: var(--text);
  line-height: 1.95;
  font-weight: 500;
  position: relative;
}
.pullquote::before {
  content: "「";
  position: absolute;
  top: 4px; left: 8px;
  font-size: 2rem;
  color: var(--burgundy);
  opacity: 0.35;
  line-height: 1;
}
.pullquote p { padding-left: 16px; }
.pullquote cite {
  display: block;
  margin-top: 12px;
  padding-left: 16px;
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
  color: var(--text-mute);
  font-style: normal;
  letter-spacing: 0.08em;
}

/* ===== 統計カード ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(16px, 2.5vw, 24px); }
.stat { background: var(--surface); border: 1px solid var(--line); padding: clamp(22px, 3vw, 30px); text-align: center; position: relative; }
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 100%); opacity: 0.75;
}
.stat__num { font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 900; color: var(--burgundy); line-height: 1; letter-spacing: 0.01em; }
.stat__num small { font-size: 0.42em; font-weight: 700; margin-left: 3px; color: var(--gold-deep); }
.stat__label { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--rule); font-size: 0.86rem; font-weight: 700; color: var(--text); letter-spacing: 0.05em; }
.stat__note { margin-top: 6px; font-size: 0.74rem; color: var(--text-mute); line-height: 1.6; }

/* ===== 大カード（spot） ===== */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: center; margin-bottom: clamp(48px, 7vw, 80px); }
.spot:last-child { margin-bottom: 0; }
.spot:nth-child(even) { direction: rtl; }
.spot:nth-child(even) > * { direction: ltr; }
@media (max-width: 800px) { .spot, .spot:nth-child(even) { grid-template-columns: 1fr; direction: ltr; } }
.spot__media { position: relative; border: 1px solid var(--line); overflow: hidden; background: var(--bg-deep); min-height: 200px; }
.spot__media::before, .spot__media::after { content: ""; position: absolute; width: 22px; height: 22px; border: 2px solid var(--burgundy); pointer-events: none; z-index: 2; }
.spot__media::before { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.spot__media::after { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.spot__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spot__no { position: absolute; top: 0; left: 0; background: var(--burgundy); color: #FAF5EC; padding: 8px 16px; font-size: 0.74rem; letter-spacing: 0.25em; font-weight: 700; z-index: 2; }
.spot__no strong { font-size: 1.4em; font-weight: 900; margin-right: 4px; }
.spot__body { padding: 0; }
.spot__cat { display: inline-block; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--burgundy); padding: 3px 12px; background: var(--bg-deep); border: 1px solid var(--burgundy); margin-bottom: 16px; }
.spot__title { font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 900; line-height: 1.3; margin-bottom: 8px; letter-spacing: 0.01em; }
.spot__title-en { display: block; font-size: clamp(0.78rem, 1.2vw, 0.92rem); letter-spacing: 0.1em; color: var(--text-mute); font-weight: 500; margin-bottom: 18px; }
.spot__desc { color: var(--text-sub); font-size: clamp(0.92rem, 1.5vw, 1rem); line-height: 2.05; margin-bottom: 18px; }
.spot__desc:last-child { margin-bottom: 0; }
.spot__desc strong { color: var(--text); font-weight: 700; }
.spot__data { margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--rule); display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px 18px; }
.spot__data dt { font-size: 0.7rem; color: var(--text-mute); letter-spacing: 0.15em; margin-bottom: 2px; }
.spot__data dd { font-size: 0.92rem; color: var(--text); font-weight: 600; }

/* ===== カード（grade） ===== */
.grades { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(18px, 2.5vw, 28px); }
.grade { background: var(--surface); border: 1px solid var(--line); padding: clamp(22px, 3vw, 30px); position: relative; }
.grade__no { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--burgundy); font-weight: 700; padding-bottom: 10px; border-bottom: 1px solid var(--rule); margin-bottom: 14px; }
.grade__title { font-size: clamp(1.1rem, 1.9vw, 1.32rem); font-weight: 900; margin-bottom: 4px; }
.grade__sub { font-size: 0.82rem; color: var(--text-mute); margin-bottom: 16px; letter-spacing: 0.05em; }
.grade__desc { font-size: 0.9rem; color: var(--text-sub); line-height: 1.9; }
.grade__desc strong { color: var(--text); font-weight: 700; }
.grade__links { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 0.86rem; line-height: 1.9; }
.grade__links a { color: var(--burgundy); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(107,31,46,0.3); }
.grade__links a:hover { color: var(--purple); border-bottom-color: var(--purple); }

/* ===== 憲法引用ボックス（fund） ===== */
.fund { width: min(100% - var(--gutter)*2, var(--reading)); margin: 0 auto; background: linear-gradient(180deg, var(--paper) 0%, var(--bg-deep) 100%); border: 1px double var(--burgundy); padding: clamp(26px, 4vw, 40px); position: relative; }
.fund::before, .fund::after { content: ""; position: absolute; width: 20px; height: 20px; border: 2px solid var(--burgundy); pointer-events: none; }
.fund::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.fund::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.fund__ref { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--burgundy); border: 1px solid var(--burgundy); padding: 3px 12px; margin-bottom: 16px; background: rgba(255,255,255,0.5); }
.fund__quote { font-size: clamp(0.96rem, 1.6vw, 1.08rem); color: var(--text); line-height: 2.05; font-weight: 500; padding-left: 16px; border-left: 3px solid var(--gold); margin-bottom: 18px; }
.fund__body { font-size: clamp(0.9rem, 1.45vw, 1rem); color: var(--text-sub); line-height: 2; }
.fund__body strong { color: var(--text); font-weight: 700; }

/* ===== 一覧・定義（list-table） ===== */
.deftable-wrap { width: min(100% - var(--gutter)*2, var(--reading)); margin: 0 auto; border: 1px solid var(--line); background: var(--surface); overflow-x: auto; }
.deftable { width: 100%; border-collapse: collapse; min-width: 460px; }
.deftable caption { padding: 14px 16px; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--burgundy); font-weight: 700; border-bottom: 1px solid var(--rule); background: var(--bg-deep); }
.deftable th, .deftable td { padding: 12px 16px; text-align: left; font-size: clamp(0.84rem, 1.3vw, 0.94rem); border-bottom: 1px dashed var(--line); vertical-align: top; }
.deftable thead th { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--text-mute); text-transform: uppercase; border-bottom: 1px solid var(--rule); background: var(--paper); }
.deftable tbody tr:last-child td { border-bottom: none; }
.deftable tbody tr:hover { background: var(--bg-deep); }
.deftable th[scope="row"] { font-weight: 700; color: var(--text); white-space: nowrap; }

/* ===== プレイCTA ===== */
.play-cta { width: min(100% - var(--gutter)*2, var(--reading)); margin: clamp(32px, 5vw, 48px) auto 0; text-align: center; }
.play-cta a { display: inline-block; background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); color: #FCD34D; font-family: "Noto Sans JP", var(--font-serif); font-weight: 700; letter-spacing: 0.12em; padding: 16px 40px; text-decoration: none; box-shadow: 0 6px 20px rgba(109,40,217,0.4), inset 0 1px 0 rgba(255,255,255,0.2); transition: transform 0.2s, box-shadow 0.2s; }
.play-cta a:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(109,40,217,0.55); color: #FDE047; }

/* ===== 内部リンク（関連ページ） ===== */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(16px, 2.5vw, 24px); }
.related__card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); padding: clamp(20px, 3vw, 28px); text-decoration: none; color: var(--text); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.related__card:hover { transform: translateY(-3px); border-color: var(--burgundy); box-shadow: var(--shadow-md); }
.related__lab { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--burgundy); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.related__title { font-size: clamp(1.05rem, 1.8vw, 1.2rem); font-weight: 900; margin-bottom: 8px; }
.related__desc { font-size: 0.86rem; color: var(--text-sub); line-height: 1.75; flex-grow: 1; }
.related__cta { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 0.84rem; font-weight: 700; color: var(--burgundy); letter-spacing: 0.08em; }
.related__cta::after { content: " →"; }

/* ===== お問い合わせ ===== */
.contact {
  width: min(100% - var(--gutter)*2, var(--reading));
  margin: clamp(40px, 6vw, 64px) auto 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg-deep) 100%);
  border: 1px double var(--burgundy);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.contact::before, .contact::after {
  content: ""; position: absolute; width: 20px; height: 20px;
  border: 2px solid var(--burgundy); pointer-events: none;
}
.contact::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.contact::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.contact__eyebrow {
  display: inline-block; font-size: clamp(0.66rem, 1.15vw, 0.74rem);
  letter-spacing: 0.32em; color: var(--burgundy);
  padding: 3px 14px; border-top: 1px solid var(--burgundy); border-bottom: 1px solid var(--burgundy);
  margin-bottom: 16px;
}
.contact__title { font-size: clamp(1.3rem, 2.6vw, 1.75rem); font-weight: 900; margin-bottom: 12px; letter-spacing: 0.02em; }
.contact__lead { font-size: clamp(0.92rem, 1.5vw, 1.02rem); color: var(--text-sub); line-height: 2; margin-bottom: clamp(20px, 3vw, 28px); }
.contact__lead strong { color: var(--text); font-weight: 700; }
.contact__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(12px, 2vw, 18px); text-align: left; max-width: 460px; margin: 0 auto; }
.contact__item {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(16px, 2.4vw, 20px); text-decoration: none; color: var(--text);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.contact__item:hover { transform: translateY(-2px); border-color: var(--burgundy); box-shadow: var(--shadow-md); }
.contact__lab { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--burgundy); font-weight: 700; text-transform: uppercase; }
.contact__val { font-size: clamp(0.9rem, 1.5vw, 1rem); font-weight: 700; word-break: break-all; line-height: 1.6; }
.contact__note { font-size: 0.78rem; color: var(--text-mute); line-height: 1.7; }
.contact__foot { margin-top: clamp(18px, 2.6vw, 24px); padding-top: 14px; border-top: 1px dashed var(--rule); font-size: 0.84rem; color: var(--text-sub); line-height: 1.9; }

/* ===== 架空注記 ===== */
.fiction-notice { width: min(100% - var(--gutter)*2, var(--reading)); margin: clamp(40px, 6vw, 64px) auto; padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 32px); border: 1px solid var(--text-mute); background: var(--bg-deep); color: var(--text-sub); font-size: clamp(0.84rem, 1.4vw, 0.92rem); line-height: 1.9; }
.fiction-notice__head { font-weight: 700; color: var(--text); letter-spacing: 0.12em; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); text-align: center; }
.fiction-notice strong { color: var(--text); }

/* ===== Footer ===== */
.site-footer { background: linear-gradient(180deg, #2A1F1A 0%, #1A130E 100%); color: #C9B8A8; padding: clamp(36px, 6vw, 56px) var(--gutter) clamp(24px, 4vw, 32px); text-align: center; }
.site-footer p { font-size: 0.85rem; color: #A0907F; line-height: 1.7; margin-bottom: 6px; }
.site-footer strong { color: #F2EADC; }
.site-footer__bottom { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.72rem; color: #A0907F; }

/* === GAMING リンク特別スタイル === */
.nav-gaming {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%) !important;
  color: #FCD34D !important;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif !important;
  padding: 5px 16px !important; font-weight: 700 !important; letter-spacing: 0.15em !important; border-radius: 4px !important;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.45), inset 0 1px 0 rgba(255,255,255,0.18) !important;
  position: relative; overflow: hidden; transition: all 0.2s !important; white-space: nowrap !important;
}
.nav-gaming::before { content: "🎮 "; margin-right: 3px; }
.nav-gaming:hover {
  background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%) !important;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.75), 0 0 6px rgba(252, 211, 77, 0.4), inset 0 1px 0 rgba(255,255,255,0.25) !important;
  transform: translateY(-1px) !important; color: #FDE047 !important;
}
@media (max-width: 720px) {
  .nav-gaming { padding: 4px 10px !important; font-size: 0.74rem !important; }
  .nav-gaming::before { font-size: 0.85em; }
}

@media print { body { background: #fff; color: #000; } .site-header, .site-footer { display: none; } }
