@charset "UTF-8";
/* CSS Document */


.hamburger-menu {
	display: block;
}
@media screen and (min-width:1025px){
	.hamburger-menu {
		display: none;
	}
}
.menu-btn {
    position: fixed;
    top: 4px;
    right: 16px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 120;
    transition: all 0.3s ease;
}

@media screen and (max-width:420px){
	.menu-btn {right: 0;}
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #676464;
    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 {
	display: block;
	text-align: center;
    width: 100%;
    height: 100vh;
	max-height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 110;
    background-color: #E8E5E6;
	opacity: 0.9;
    transition: all 0.5s;
}
.menu-content ul {
	display: block;
	margin-top: 100px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: bottom left;
}
.menu-content ul li {
    border-bottom: solid 1px #000;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;
}