@charset "UTF-8";

.menu-btn {
	position: fixed;
    top: 40px;
    right: 14px;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #FE5BAC;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 50px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 16px;
}
.menu-btn span:after {
    top: 16px;
}

#menu-btn-check {
    display: none;
}
#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);
	transition: all 0.2s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
	transition: all 0.2s;/*アニメーション設定*/
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #FE5BAC;
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 125px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.2em;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 1.0em 15px 0.5em 0.5em;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-back {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,0);
	top: 0;
	right: -100%;
	z-index: 1;
	transition: 0.5s;
}

.rightm {
	right: 0;
	background: rgba(0,0,0,0.5);
}

.show {
	left: 40%;
}
