
.Header {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    top: 0px;
    color: white;
    background: black;
    align-content: center;
    border-bottom: 2px solid white;
    height: 50px;
    z-index: 100;
}


/* ヘッダー左側：メニュー＆サーバー情報 */

.Header-Left {
}

.Header-Menu {
    width: 50px;
    height: 50px;
}

.Header-Guild {
    padding-left: 20px;
    padding-right: 20px;
}

.Header-Guild-Icon {
    margin-left: 4px;
    margin-right: 8px;
    height: 32px;
}

.Header-Guild-Name {
    font-weight: 900;
}

.Header-Content-Menu {
    position: fixed;
    top: 50px;
    left: 0px;
    min-width: 280px;
    background: black;
    color: white;
    z-index: 110;
}



/* ヘッダー右側：アカウント情報 */

.Header-Right {
}

.Header-Right-Item {
    padding-left: 20px;
    padding-right: 20px;
}

.Header-Login {
    font-weight: bold;
}

.Header-Login-Text {
    margin-left: 5px;
}

.Header-Account {
    position: relative;
}

.Header-Account-Profile {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.Header-Account-Name {
    margin-left: auto;
    font-weight: bold;
}

.Header-Account-Avatar {
    margin-left: 10px;
    border-radius: 50%;
    height: 32px;
}

.Header-Account-Menu {
    position: fixed;
    top: 50px;
    right: 0px;
    min-width: 180px;
    background: black;
    color: white;
    z-index: 110;
}


/* スマホ対応 */
@media screen and (max-width: 480px) {

    .Header-Guild {
        padding-left: 5px;
        padding-right: 10px;
    }

    .Header-Login-Text {
        display: none;
    }

    .Header-Account-Name {
        display: none;
    }
}

