/*--------------------
    ヘッダー
----------------------*/
header {
    width: 100%;
    padding: 0 20px;
    display: flex;
    background-color: #EEEEEE;
    height: 60px;
    position: fixed;
    background-color: #fff;
    z-index: 99999;
    /*    border-bottom: 1px solid #ccc;*/
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    top: 0;
}

header .logo {
    display: flex;
    height: 34px;
    /*    max-width: 150px;*/
}

header .logo img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

header .nav {
    display: flex;
    /*margin: auto 0 auto auto;*/
    font-weight: bold;
}

header .nav li {
    display: block;
    margin: auto 15px auto auto;
}

header .nav li:last-child {
    margin-right: 0;
}

header .nav li .btn {
    padding: 0.1em 1.5em;
}

header .nav li.user_box {
    background-color: #f7f7f7;
    border-radius: 20px;
    box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, .1);
    padding: 0;
    overflow: hidden;
}

header .nav li p {
    font-size: 16px;
    font-size: 14px;
    display: inline-block;
    margin-right: 0;
    line-height: 2.1em;
    font-weight: bold;
    padding: 2px 15px;
    border-left: solid 2px #e5e5e5;
    border-right: solid 2px #fff;
}

header .nav li p#user_name {
    transform: translate(-2px, 0px);
}

header .nav li p#user_id {
    transform: translate(-8px, 0px);
    border-right: solid 0px #e5e5e5;

}

header .nav li p#user_name,
header .nav li p#user_id {
    font-weight: normal;
    display: inline-block;
    max-width: 19em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

header .hamburger-menu {
    display: none;
}

header .sp_btn {
    display: none;
}

/*user画面*/
header form {
    padding: 0;
    /* background: none; */
    box-shadow: unset;
    margin-top: 17px;
    padding: 6px 12px;
}

header form select {
    height: 36px;

}

/*-----------------------------------------
    select_chenge
------------------------------------------*/

.select_chenge {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 15px;
}

.select_chenge p {
    font-size: 14px;
    line-height: 34px;
    margin-right: 10px;
}

.select_chenge select {
    height: 34px;
    font-size: 14px;
    padding: 0 4px;
    display: block;
    width: fit-content;
    max-width: 400px;
}


@media screen and (max-width: 1200px) {
    header {
        padding: 0 10px;
    }
}

@media screen and (max-width: 900px) {
    header {
        height: 80px;
        padding: 0 5px;
        justify-content: space-evenly;
    }

    header .nav {
        display: none;
    }

    header#user_header .nav {
        display: flex;
    }

    header .logo {
        width: auto;
        height: 40px;
        object-fit: cover;
        text-align: center;
        margin: auto;
    }

    header .hamburger-menu {
        display: block;
    }

    header .sp_btn {
        text-align: center;
        display: block;
        position: absolute;
        right: 5px;
    }

    header .sp_btn:hover {
        opacity: 0.75;
    }

    header .sp_btn i {
        line-height: initial;
        width: initial;
        height: initial;
        font-size: 26px;
        margin: 10px 0 5px 0;
        display: block;
    }

    header .sp_btn span {
        font-size: 10px;
        display: block;
    }

    /*--------------------
        hamburger-menu
    --------------------*/
    .menu-btn {
        position: fixed;
        top: 20px;
        left: 15px;
        display: flex;
        height: 40px;
        width: 40px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #fff;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #999;
        position: absolute;
    }

    .menu-btn span:before {
        bottom: 8px;
    }

    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked~.menu-btn span {
        background-color: rgba(255, 255, 255, 0);
    }

    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-btn-check:checked~.menu-content {
        left: 0;
        /*メニューを画面内へ*/
    }

    #menu-btn-check {
        display: none;
    }

    .menu-content {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 100%;
        z-index: 80;
        background-color: #fff;
        transition: all 0.5s;
    }

    .menu-content .user_data {
        margin-bottom: 10px;
        padding: 70px 20px 10px 20px;
        border-bottom: 2px solid #999;
    }

    .menu-content .user_data p {
        font-weight: bold;
        color: #707070;
    }

    .menu-content ul {
        padding: 0 10px;
        height: calc(100vh - 160px);
        overflow: auto;
    }

    .menu-content ul li {
        border-bottom: solid 1px #999;
        list-style: none;
    }

    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color: #1B224C;
        text-decoration: none;
        padding: 9px 15px 10px 1em;
        position: relative;
    }

    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #999;
        border-right: solid 2px #999;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }


    .menu-content ul li.title-area {
        border-top: none;
    }

    header {
        height: 60px;
    }

    .menu-btn {
        top: 10px;
    }

}


@media screen and (max-width: 900px) {}