/* --- H1: 記事タイトル（中心となる存在感） --- */
.entry-title {
    font-size: 24px !important;
    color: #333;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.05em; /* 文字の間隔を広げてゆとりを */
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- H2: 上質な付箋デザイン（信頼感と視認性） --- */
.entry-content h2 {
    position: relative;
    padding: 12px 15px 12px 15px; /* 左側にゆとりを */
    background: #f9f9f9; /* 非常に淡いグレーで清潔感を */
    color: #444;
	  line-height: 1.4;
    font-size: 21px;
    font-weight: 600;
    border-left: 8px solid #bda67e; /* 落ち着いたゴールドベージュの「付箋」アクセント */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* わずかな影で立体感を */
    margin: 40px 0 20px;
}

/* --- H3: シンプルな下線（リズムを作る） --- */
.entry-content h3 {
    font-size: 19px;
    color: #444;
    padding-bottom: 8px;
    border-bottom: 1px solid #bda67e; /* H2と同色の細いラインで統一感 */
    margin-top: 30px;
    font-weight: 600;
    display: inline-block; /* 下線を文字の長さに合わせる */
    min-width: 150px; /* 短すぎないように最低幅を設定 */
}

/* 1. ヘッダー内側の余白を上下ともゼロにする */
#header-in {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important; /* 最低高さの制限を解除 */
}

/* 2. ロゴ画像エリア自体の高さを中身（画像）に合わせる */
#h-top {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. 画像の上下にある余計な隙間をカット */
#site-title a {
    display: inline-block;
    line-height: 1;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#site-title a img {
    display: block; /* 画像の下にできる謎の数ピクセルの隙間を消す */
    margin: 0 auto; /* 中央寄せにする場合 */
    padding: 0 !important;
}

/* 4. もしキャッチフレーズ（説明文）が邪魔をしているなら消すか詰める */
#site-description {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

