@charset "utf-8";

/* ------------------------------
	iPhone時
------------------------------ */

#hamburger {
box-sizing: border-box;
width: 100%;
}

.menu-btn {
    position: fixed;
    top: 17px;
    right: 17px;
    display: flex;
    height: 25px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 11000;
}

.menu-btn span {
    background-color: #000;
}

.menu-btn span:before,
.menu-btn span:after {
	transition: all .4s;
    content: '';
    display: block;
    height: 1px;
    width: 25px;
    background-color: #000;
    position: absolute;
}

.black .menu-btn span:before,
.black .menu-btn span:after {
    background-color: #000;
}

.menu-btn span:before {
    bottom: 8px;
    left: 12px;
}
.menu-btn span:after {
    top: 8px;
    left: 12px;
}

#menu-btn-check:checked ~ .menu-btn span::before {
    top:12px;
    left: 12px;
    transform: rotate(45deg);
    background-color: #000;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top:12px;
    left: 12px;
    transform: rotate(-45deg);
    background-color: #000;
}

#menu-btn-check {
    display: none;
}

/*--↑ここまでボタンの設定--*/


.menu-content {
	box-sizing: border-box;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;/*leftの値を変更してメニューを画面外へ*/
	opacity: 0;
	z-index: 10000;
	color: #fff;
    background-color: #fff;
    transition: all 0.7s;/*アニメーション設定*/
    visibility: hidden;
}

.menu-content ul {
	width: 180px;
	height: 300px;
	/*position: fixed;*/
	margin: 30% auto 0 auto;
    padding: 0 0 0 25px;
}

.menu-content ul li {
	width: 50px;
	list-style: none;
	margin: 0 10px;
    text-align: left;
}

.menu-content ul li a {
	width: 60px;
    display: block;
    font-size: 14px;
	line-height: 50px;
    color:#000;
    text-decoration: none;
    padding: 5px 5px 5px 5px;
    position: relative;
}

.nav_img_sp {
	width: 50px;
    padding-right: 15px;
}

.nav_img_sp_s {
	width: 22px;
    display: block;
    margin: 0 auto;
}

.menu-content ul li a.nav_box {
	width: 90%;
	margin-top: 50px;
	text-align: center;
	border: 1px solid #000;
}

#menu-btn-check:checked ~ .menu-content {
    opacity: 100;/*メニューを画面内へ*/
    visibility: visible;
}







