@charset "utf-8";




/* 開閉ボタン */

.navBtn button {
    display: block;
    width: 70px;
    height: 70px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/common/menu.png);
    border: none;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right:20px;
    z-index: 1001;
}
/* メニューアクティブ時 */
.navBtn button.active{
    background-image: url(../img/common/menu_close.png);
}

.nav_bg{
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: transparent;
    transition: 0.1s;
}
.nav_bg.open{
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    background-color: rgba(17,150,59,0.8);
}

nav {
	position: fixed;
	top: 0;
	right:0;
	width: 570px;
	height: 100%;
	background-color: #fff;
    border-radius: 30px 0 0 30px;
	transition: all 0.3s;
	transform: translate(570px);
	z-index: 1000;
    padding: 70px 50px;
    overflow: auto;
}
nav.open {
	transform: translate(0); 
}


nav ul {
	margin: 0;
	list-style-type: none;
	overflow: auto;
}
nav ul li {
    border-bottom: 1px solid #def4d9;
	text-align: left;
}
nav ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #11963b;
	padding: 1em 0;
}
nav ul li .ico-kikan{
    margin-bottom: 10px;

}
nav ul li .ico-kikan span{
    display: inline-block;
    width: 100px;
    background-color: #ec6d56;
    border-radius: 20px;
    text-align: center;
    padding: 2px;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #fff;
}
@media (min-width:571px) and (max-width:768px){
    .navBtn button {
        top: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
}
@media screen and (max-width:570px){
    .navBtn button {
        top: 10px;
        right: 10px;
    }
    nav {
        width: 90%;
        transform: translate(100%);
        padding: 12.2vw 8.7vw;
    }

    nav ul li a {
        font-size: 4.56vw;
    }

}








