/*
Theme Name: Zatsugaq
Theme URI: https://example.com/
Author: あなたの名前
Author URI: https://example.com/
Description: ザツガッQ用のシンプルな雑学サイトテーマ
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: zatsugaq
*/

:root {
    --accent: #1F6FEB;
    --accent-light: #E8F0FF;
    --border-color: #E0E0E0;
    --text-main: #222;
    --text-sub: #666;
    --bg-main: #FFFFFF;
    --bg-muted: #F7F7F7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.7;
}

a {
    color: var(--accent);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ここから、前にお渡ししたヘッダー／トップ／記事ページ用のCSSを
   そのまま下にコピペしてOKです */

.site-header {
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.site-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ……（前回のCSSをここに全部貼る）…… */
