﻿
.header-content {
    background-color: #00819B;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height:55px;
    color:#ffffff;
    margin-bottom:40px;
}

.header-items {
    display: flex;
    margin-top:1px;
}

.header-logo {
    padding: 10px 0px 0px 10px;
    margin-right: 60px;
    font-size: 22px;
    width:30%;
}

.header-name {
    font-size: 18px ;
    padding:14px 20px 0px 0px;
}

.header-item-name-change {
    padding: 7px 60px 0px 0px;
}

.header-user-type {
    font-size: 15px;
    margin: 12px 12px 0px 0px;
}

.header-user-type-logo {
    background-color: #00819B;
    border: 1px solid white;
    height: 28px;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    padding: 3px 15px 5px 15px;
}

.signout {
    text-decoration: none;
    color: #000000;
}
    .signout:hover {
        text-decoration: none;
        color: #000000;
        opacity: 0.7;
    }

.link {
    text-decoration: none;
}

    .link:hover {
        text-decoration: none;
    }

    .link:visited, .link:focus {
        text-decoration: none;
    }

.menu-btn {
    padding: 15px 10px 0px 10px;
    width: 40px;
    height: 40px;
    background-color: #00819B;
}

.disp-logo1 {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_10009.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top:5px;
}

.disp-logo1-selected {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_40008.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.disp-logo2 {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_10010.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.disp-logo2-selected {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_40003.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.disp-logo3 {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_10008.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.disp-logo3-selected {
    width: 23px;
    height: 23px;
    background-image: url(../../icon_40006.svg);
    background-size: 100%;
    margin: 0 auto;
    padding-top: 5px;
}

.item-logo {
    width: 81px;
    height: 44px;
    padding-top: 5px;
    background-color: #ffffff;
    margin: 3px 15px 3px 0px;
    border-radius: 4px;
    box-shadow: 3px 3px 5px gray;
    cursor: pointer;
}

.yellow-p {
    text-align: center;
    font-size: 10px;
    color: #FFB800;
}

.green-p {
    text-align: center;
    font-size: 10px;
    color: #00A26A;
}

.body-content {
    margin-top:30px;
}
/*----------------------------
* メニュー本体
*----------------------------*/
.ham-menu {
    position: absolute;
    top: 55px;
    right: 0;
    z-index: 1;
    width: 140px;
    height: 50px;
    display: flex;
    border: 1px solid black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
}

.ham-content {
    display:flex;
}

.menu__item {
    width: 100%;
    height: auto;
    padding-top:7px;
    text-align: center;
    color: #000000;
    box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.ham-menu {
    transform: translateX(100vw);
}
    /* アニメーション後のメニューの状態 */
    .ham-menu.is-active-ham {
        transform: translateX(0);
    }

.fa-bars {
    cursor: pointer;
}

.btn-space {
    margin-right: 20px;
}