/* ============================
   メインヘッダー
============================ */
.main-header {
    position: fixed;
    top: 0;
    left: 240px;   /* サイドバー分右にずらす */
    width: calc(100% - 240px);
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 2000;
    transition: all .25s ease;
}

/* collapse 時 */
#sidebar.collapsed ~ .main-header {
    left: 76px;
    width: calc(100% - 76px);
}

/* ============================
   コンテンツ
============================ */
.content-wrapper {
    margin-left: 240px;
    padding: 80px 24px 24px;
    transition: all .25s ease;
    flex: 1;
}

.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* collapse 時に押し戻す */
#sidebar.collapsed ~ .content-wrapper {
    margin-left: 76px;
}

/* ============================
   フッター
============================ */
.global-footer {
    margin-left: 240px;
    transition: all .25s ease;
    text-align: center;
    font-size: 12px;
    color: #777;
    padding: 12px 0;
    border-top: 1px solid #ddd;
    background: white;
}

/* collapse 時に押し戻す */
#sidebar.collapsed ~ .global-footer {
    margin-left: 76px;
}


/* ============================
   SP
============================ */
@media (max-width: 768px) {
    .main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        left: 0 !important;
        width: 100% !important;
    }

    .sidebar {
        left: -240px;
        transition: left .25s ease;
    }
    .sidebar.sp-open {
        left: 0;
    }

    .content-wrapper {
        margin-left: 0 !important;
        padding-top: 80px;
    }

    .sidebar-toggle-btn {
        display: none;
    }
}

/* ============================
   SP ヘッダー ロゴ
============================ */
.header-brand .sidebar-maintitle {
    font-size: 16px;
    font-weight: 800;
    color: #558d1d;   /* Partner∞ グリーン */
    line-height: 1.1;
}

.header-brand .sidebar-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: #558d1d;
    line-height: 1.1;
}

/* ============================
   SP メニュー
============================ */
.sp-nav {
    background: #ffffff;
    border-top: 1px solid #e0ebd3;
}

/* 通常リンク */
.sp-nav a {
    display: block;
    padding: 14px 16px;
    font-weight: 600;
    /* color: #2f3a1f; */
    text-decoration: none;
}

/* hover / tap */
.sp-nav a:hover {
    background: #f2f7ec;
    color: #558d1d;
}

/* ログアウト */
.logout-btn-sp {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: none;
    text-align: left;
    font-weight: 600;
    color: #2f3a1f;
}

.logout-btn-sp:hover {
    background: #f2f7ec;
    color: #558d1d;
}

/* ============================
   PCではヘッダー不要
============================ */
@media (min-width: 769px) {

    .main-header {
        display: none;
    }

    .content-wrapper {
        padding-top: 12px; /* ← 通常の余白だけにする */
    }
}

