@charset "utf-8";

/* drawer menu */
.drawer-menu{display:block;}

.logo1{width:150px;
	margin:10px auto;}
	
.logo1 img{width:100%;}

.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    padding: 60px 0 140px;
	border-left: rgba(255,255,255,1.00) solid 2px;
    background:rgba(0,0,0,0.90);
    -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;
    /*-webkit-transform: perspective(500px) rotateY(90deg);
    transform: perspective(500px) rotateY(90deg);*/
	overflow-y:scroll;
    opacity: 1;
	z-index:99;
}

.drawer-menu ul{}

.drawer-menu li {margin-top: 10px;
    text-align:center;
	overflow:hidden;
	background: url("../img/page1_menu_bg2.svg");
}

.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;}

.drawer-menu li img{height:30px;
	margin-top: 10px;}

.drawer-menu li a {
    display: block;
    height: 50px;
    font-size: 24px;
	line-height: 50px;
	font-weight: bold;
    color:rgba(255,255,255,1.00);
    -webkit-transition: all .8s;
    transition: all .8s;
}

.drawer-tw{width:180px;
	height:30px;
	margin-top:20px;
	margin-left:10px;
	background:rgba(0,0,0,1.00);
	border-radius:2px;}

.drawer-tw img{height:100%;}

.sp_menu_spacer{height:10px;}

.sp_menu_snslinks{padding-right:10px;}

.sp_menu_snslinks a{float:right;}

.sp_menu_snslinks img{margin-right:10px;}

/*.drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
}*/

/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
.menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: block;
    width: 50px;
    height: 50px;
	padding:0px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
	background:url("../img/sp_menu_off.png");
	background-size: 100% 100%;
    z-index: 999;
}

.bar {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.bar.middle {
    top: 24px;
    opacity: 1;
}

.bar.bottom {
    top: 38px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn_text {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
}

.menu-btn:hover .bar {
    background:rgba(255,255,255,1.00);
}

.menu-btn:hover .menu-btn__text {
    color:rgba(255,255,255,1.00);
}

.close-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*background: rgba(0,0,0,0);
    cursor: url(http://theorthodoxworks.com/demo/images/cross.svg),auto;*/
    -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;
}

/* 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 ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 44px;
	top:10px;
	left:15px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 44px;
    top: 41px;
	left:15px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.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;
}