@charset "utf-8";

/* drawer menu */
.drawer-menu{display:block;}

.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 70px 0 140px;
    background: #054D99;
	background-position: top left;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
	overflow-y:scroll;
    opacity: 1;
	z-index:99;
}

.sp_menu_logo{width: 60%;
	margin: 0 auto;}

.drawer-menu ul{}

.drawer-menu li {
    text-align:center;
	overflow:hidden;
}

.menu_head{font-size:28px;
	padding-bottom:10px;
	color:rgba(255,255,255,0.50);
	border-bottom:rgba(255,255,255,0.50) solid 1px;}

.sp_menu_btn a {
    display: block;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 7vw;
	line-height: 200%;
	text-align: center;
	font-weight: bold;
    color:rgba(255,255,255,1.00);
    -webkit-transition: all .8s;
    transition: all .8s;
}




/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
.menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: block;
    width: 60px;
    height: 60px;
	padding:0px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
	background:url("img/sp_menu_off.png");
	background-size: 100% 100%;
    z-index: 999;
}


.close-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
	pointer-events: none;
}

/* checked */
.check:checked ~ .drawer-menu {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
    right: -200px;
	opacity: 1;
    z-index: 99;
}

.check:checked ~ .menu-btn {background:url("img/sp_menu_on.png");
	background-size: 100% 100%;}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background: rgba(0,0,0,0);
    visibility: visible;
    opacity: 1;
    z-index: 3;
	pointer-events: auto;
}