@charset "UTF-8";

.ham{
    position: relative;
    width: 33px;
    height: 33px;
    cursor: pointer;
    background-color: #333333;
    border: 1px solid white;
}
.ham_line{
    position: absolute;
    left: 7.5px;
    width: 18px;
    height: 1px;
    background-color: #ffffff;
}
.ham_line1{
    top: 9px;
    transition: 0.8s;
}
.ham_line2{
    top: 16px;
    transition: 0.8s;
}
.ham_line3{
    top: 23px;
    transition: 0.8s;
}
.head-menu{
    position: fixed;
    /*width: 300px;
    height: 300px;*/
    margin-top: 16px;
    width: 100%;
    height: 100%;
    top: 50px;
    right: -800px;
    background-color: whitesmoke;
    overflow: hidden;
    transition: 0.8s;
    z-index: 2;
}
.menuhum ul{
    padding: 0;
    list-style: none;
}
.menuhum li{
    background-color: white;
    text-align: center;
    margin: 0.5rem 0.5rem;
    border: 1px solid black;
}
.menuhum a{
    display: block;
    color: black;
    /*text-shadow: 0.8px 0.8px 0.8px black;*/
    font-size: 15px;
    text-decoration: none;  /*下線none*/
}
.menuhum .colortbl{
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    border: 1px solid black;
}
.menuhum .colortbl table{
    width: 100%;
    background-color: white;
}
.menuhum .colortbl td{
    border: 1px solid black;
}
.white-a a{
    color: white;
}

/*
 click後の処理
================================================ */
.clicked .ham_line1{
    transform: rotate(45deg);
    top: 16px;
    height: 2px;
    transition: 0.8s;
}
.clicked .ham_line2{
    width: 0px;
    transition: 0.8s;
}
.clicked .ham_line3{
    transform: rotate(-45deg);
    top: 16px;
    height: 2px;
    transition: 0.8s;
}
.clicked .head-menu{
    width: 100%;
    right: 0px;
}

/*
DESKTOP SIZE
================================================ */
/* [min-width]スクリーンサイズが要素以上の場合に適用 */
@media (min-width: 700px) {   
    .ham{
        display: none;
    }
    .head-menu{
        display: none;
    }
}