@charset "UTF-8";

/*========================================================================================================*/
/*                                                メニュー                                                */
/*========================================================================================================*/
ul#menu {
    list-style-type: none;
    width: 60vw;
    background: #ffffff;
    opacity: 0.9;
    position: absolute;
    right: 5px;
    top: 50px;
    z-index: 990;
    display: none;
    text-align: center;
    overflow-y: hidden;
}
ul#menu li input {
    width: 100%;
    border: 1px solid #000;
    background: none;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    font-size: 70px;
    color: #000000;
}
ul#menu li input:hover {
    background: #a9a9a9;
    opacity: 0.7;
}
div#menuIcon {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    background: #dfdfdf;
}
div#menuIcon:hover {
    cursor: pointer;
    opacity: 0.7;
}
div#menuIcon span,
div#menuIcon span:before,
div#menuIcon span:after {
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #000000;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
}
div#menuIcon span {
    left: 50%;
    top: 50%;
    transform: translate( -50%, -50% );
}
div#menuIcon span:before {
    content: "";
    transform: translate( -50%, -8px ) rotate( 0deg );
}
div#menuIcon span:after {
    content: "";
    transform: translate( -50%, 8px ) rotate( 0deg );
}

div.menu-open span {
    background: transparent !important;
}
div.menu-open span:before {
    transform: translate( -50%, 0px ) rotate( 45deg ) !important;
}
div.menu-open span:after {
    transform: translate( -50%, 0px ) rotate( -45deg ) !important;
}