
/*######################################################################################################
 - 559px スマホ用設定（全サイズ共通設定）
######################################################################################################*/

.menu-btn {
    position: fixed;
    top: 15px;
    right: 25px;
    display: flex;
    height: 35px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 2px;
    background-color: #444444;
    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: 100%;
    margin:0;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
    /*アニメーション設定*/
    transition: all 0.6s;

}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #cccccc;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 100%;
    box-sizing: border-box;
    color:#333333;
    text-decoration: none;
    padding: 20px 0 20px 0;
    position: relative;
}

/*右向きの矢印
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #333333;
    border-right: solid 2px #333333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
*/


/*######################################################################################################
560px - 959px タブレット用設定（上書き）
######################################################################################################*/
@media screen and (min-width: 560px) and (max-width: 959px){

.menu-content ul li a {
    font-size: 110%;
    padding: 25px 0 25px 0;
}

}
