/* --- BLACKLOG 完全黒化設定 --- */

/* 1. 全体の背景を強制的に黒にする */
body, #container, #wrapper, #content, #main, #box2, article, .entry-inner {
    background-color: #000000 !important;
}

/* 2. 記事の周り（枠）を消して黒くする */
.entry, .entry-inner, .entry-content {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 3. 文字色をグレーにして目に優しくする */
body, p, .entry-content, .entry-title a {
    color: #cccccc !important;
}

/* 4. 記事タイトルを白にする */
.entry-title a, .entry-title {
    color: #ffffff !important;
}

/* 5. 記事下のSNSボタンなどのエリアも黒くする */
.entry-footer, .custom-footer {
    background-color: #000000 !important;
}
/* --- BLACKLOG専用：ミニマルな文字設定 --- */

/* 記事本文：小さめで余白を活かす */
.entry-content {
    font-size: 14px !important; /* 標準より一回り小さく */
    line-height: 2.0;            /* 行間を広くして読みやすく */
    letter-spacing: 0.08em;     /* 文字の間隔を少し広げて洗練された印象に */
    color: #bbbbbb !important;  /* 真っ白より少し沈んだグレーが黒背景に合います */
}

/* 記事タイトル：サイズを抑えてスタイリッシュに */
.entry-title {
    font-size: 18px !important; 
    letter-spacing: 0.1em;
}

/* PC/スマホ共通で適用 */
body {
    -webkit-text-size-adjust: 100%;
}
