/* メニュー内のユーザー情報エリア */
/* .menu_user_info{
    overflow: hidden;
}
.menu_user_info img{
    float:left;
    width:19%;
    margin:0;
    margin-right:1%;
}
.menu_user_info p{
    float:right;
    width:79%;
    margin:0;
    margin-left:1%;
} */
.menu_user_info{
    display: flex;
    margin:5px 0;
}
.menu_user_info_img{
    flex:0 0 7%;
    padding-right: 7px;
}
.menu_user_info_img img{
    width:100%;
}
.menu_user_info_name{
    flex:auto;
    padding-left: 7px;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /*ボタンの背景色*/
    /*background-color: #3584bb;*/
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 5px;
    width: 35px;
    border-radius: 3px;
    /*ボタンの線の色*/
    background-color: #fff;
    position: absolute;
    transition: all 300ms 0s ease;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    transition: all 300ms 0s ease;
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #ccc;
    transition: all 300ms 0s ease;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #ccc;
    transition: all 300ms 0s ease;
}

.menu-content {
    width: 80%;
    /* height: 100%; */
    position: fixed;
    top: 0;
    right:0;
    top: -100%;
    z-index: 80;
    background-color: #222;
    color: #fff;
    transition: all 500ms 0s ease;

    border-left: 1px solid rgb(112, 112, 112);
    border-bottom: 1px solid rgb(112, 112, 112);
}

@media screen and (min-width: 768px) {
    .menu-content {
        width: 40%;
    }
}

.menu-content a{
    color:#fff;
}

#menu-btn-check:checked ~ .menu-content {
    top: 0;/*メニューを画面内へ*/
}

.menu-content ul {
    padding: 70px 15px 15px 15px;
}
.menu-content ul li {
    border-bottom: solid 1px #ccc;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    text-decoration: none;
    padding: 13px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ccc;
    border-right: solid 2px #ccc;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}