@charset "UTF-8";

.hamburger-menu{
    position: relative;
}

.menu-btn {
    position: absolute;
    bottom: 50%;
    right: 10.750px;
    display: flex;
    height: 0;
    width: 0;
    justify-content: center;
    align-items: center;
    transform: translate();
    z-index: 102;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 5px;
    width: 30px;
    border-radius: 3px;
    background-color: #404040;
    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 {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 101;
    background-color: #fff;
    opacity: .95;
	transition: all 0.5s;/*アニメーション設定*/
    overflow-y: scroll;
    padding: 5em 0;
}

.menu-content .logo{
    width: 100%;
    max-width: 200px;
    margin: auto;
    margin-bottom: 50px;

}

.menu-content .wrap{
    width: 90%;
    margin: auto;
}

.menu-content .wrap ul{
    list-style-type: none;
    display: block;
}

.menu-content .wrap ul li{
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 20px;
    border-bottom: dotted 1px #222;
    margin-bottom: 15px;
    position: relative;
}

.menu-content .wrap ul li::before{
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
}

.menu-content .wrap ul li a{
    text-decoration: none;
    color: #404040;
}


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