/* */


	.hamburger-menu { display:block; margin-left:1.5em; }
	.menu-btn {
	    display: flex;
	    height: 48px;
	    width: 48px;
	    justify-content: center;
	    align-items: center;
	    z-index: 90;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
	    content: '';
	    display: block;
	    height: 3px;
	    width: 28px;
	    border-radius: 3px;
	    background-color: #5eb7e8;
	    position: absolute;
	}
	.menu-btn span:before {
	    bottom: 8px;
	}
	/* メニュー下テキスト設定 */
	.menu-btn span:after {
	    top: 8px;
	    content: '';
	    font-size:10px;
	}

	#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);
	    background-color:#FFF;
	    z-index:99;
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
	    top: 0;
	    transform: rotate(-45deg);
	    content: '';
	    background-color:#FFF;
	    z-index:99;
	}
	#menu-btn-check {
	    display: none;
	}

	.menu-content div { width: 100%; }
	.menu-content ul {
	    width: 100%;
	    max-width:540px;
	    padding: 70px 10px 0;
	    margin:0 auto;
	}
	.menu-content ul li {
	    border-right:0; 
	    border-bottom: solid 1px #ffffff;
	    list-style: none;
	}


 
	.menu-content ul li:first-child { border-left:0; }
	.menu-content ul li a {
	    display: block;
	    width: 100%;
	    height:auto;
	    font-size: 15px;
	    box-sizing: border-box;
	    color:#ffffff;
	    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 #ffffff;
	    border-right: solid 2px #ffffff;
	    transform: rotate(45deg);
	    position: absolute;
	    right: 11px;
	    top: 16px;
	}

	.menu-content {
	    width: 100%;
	    height: 100%;
	    position: fixed;
	    top: 0;
	    left: 100%;/*leftの値を変更してメニューを画面外へ*/
	    z-index: 80;
	    background-color: rgba(0,0,0,0.8);
	    transition: all 0.5s;/*アニメーション設定*/
	}

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