/* ヘッダー上の隙間を完全に削除 - 最終版 */

/* 完全なリセット */
* {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    overflow-x: hidden !important;
}

/* 青い背景を完全に隠す - カスタマイザー対応のため削除 */

/* お知らせページ専用のヘッダー位置調整 */
body.archive header,
body.category header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    background-color: #f1f8ff !important;
    z-index: 1000000 !important;
    margin: 0 !important;
    padding: 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* お知らせページのbody調整 */
body.archive,
body.category {
    margin: 0 !important;
    padding: 60px 0 0 0 !important;
}

/* お知らせページのコンテンツ調整 */
body.archive main,
body.category main {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

body.archive h1,
body.category h1 {
    margin-top: 0 !important;
    padding-top: 20px !important;
}