@charset "utf-8";

/* ------------------------------
	iPhone時 メニュー
------------------------------ */

#hamburger {
box-sizing: border-box;
width: 100%;
}

#hamburger .header_img {
	width: 100px;
	height: 100px;
	margin: 0 auto 0 6%;
    bottom: 175px;
}

.menu-btn {
    position: fixed;
    top: 15px;
    right: 7px;
    display: flex;
    height: 25px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

.menu-btn span:before,
.menu-btn span:after {
	transition: all .4s;
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background-color: #000;
    position: absolute;
    transform: scaleY(0.5);
}

.black .menu-btn span:before,
.black .menu-btn span:after {
    background-color: #fff;
}

.menu-btn span:before {
    bottom: 7px;
    left: 12px;
}
.menu-btn span:after {
    top: 7px;
    left: 12px;
}

#menu-btn-check:checked ~ .menu-btn span::before {
    top: 17px;
    left: 12px;
    transform: rotate(45deg) scaleY(0.5);
    background-color: #fff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 17px;
    left: 12px;
    transform: rotate(-45deg) scaleY(0.5);
    background-color: #fff;
}

#menu-btn-check {
    display: none;
}

/*--↑ボタンの設定--*/

.menu-content {
	box-sizing: border-box;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
	opacity: 0;
	z-index: 9999;
	color: #fff;
    background-color: #111;
    transition: all 0.7s;
    visibility: hidden;
}

.menu-content ul {
	width: 100%;
	height: 300px;
	position: fixed;
	top: 35%;
    padding: 0 0;
}

.menu-content ul li {
	width: 50%;
	height: 40px;
	list-style: none;
	margin: 0 10%;
}

.menu-content ul li a {
	width: 140px;
    display: block;
    font-size: 14px;
	line-height: 50px;
    color:#fff;
    text-decoration: none;
    padding: 5px 5px 5px 5px;
    position: relative;
}

.menu-content ul li a.nav_box {
	width: 90%;
	margin-top: 10px;
}

#menu-btn-check:checked ~ .menu-content {
    opacity: 100;
    visibility: visible;
    z-index: 1010;
}

.img_4 .menu-btn {
    top: 13px;
    right: 40px;
    transition: 1.5s;
}



