/* Default Theme - Safe Compatibility Layer */
:root {
  color-scheme: light;
  --color-text: #333;
  --color-bg: #fff;
  --color-link: #67717e;
  --color-link-hover: #b89150;
  --color-border: #e0e0e0;
  --color-code-bg: #f5f5f5;
  --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

/* style.css のデザインを破壊しないよう安全なフォールバックのみ定義 */
body:not([class]):not([style]) {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
}

/* フッターの固定解除（画面最下部のボタンやテキストが隠れる不具合を防止） */
footer,
.site-footer {
  position: static !important;
  clear: both;
}
