@charset "utf-8";
/* CSS Document */





/* screenwidth less than 769px
--------------------------------------------------------------------- */
@media only screen and (max-width: 769px) {

header#main nav{
	display:none;
}

#main_image nav{
	display:none;

}


header#main{
	height:52px;
}

*/
#drawer{
	z-index:9999999;
	margin:32px 0 0 0 !important;
	width:auto;
	height:auto;
	overflow:visible;
}

header#gnav{
	z-index:999999;
	margin:0 0 0 0;
	width:100%;
	height:auto;
	overflow:visible;
	position:fixed;
	padding:0;
}


html,body,#wrapp{
	overflow-x: hidden;
}
.gnav_ico{
	visibility:visible !important;	
	position:fixed;
	left:0;
	top:0px;
	z-index:1000;
}


#wrapper {
    position: relative;
    -webkit-transition: all .2s;
            transition: all .2s;
}
#wrapper.open {
    -webkit-transform: translate3d(250px, 0, 0);
            transform: translate3d(250px, 0, 0);
    overflow: hidden;
}

/* ドロワーが開いたとき、コンテンツ部分にかけるオーバーレイ */
#overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .3);
}

/* ドロワー本体 */
#drawer {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .2s;
            transition: all .2s;
    background-color: #FFF;
}
#drawer.open {
    -webkit-transform: translate3d(250px, 0, 0);
            transform: translate3d(250px, 0, 0);
}
/* 開閉ボタン */

header.gnav_ico .drawer-button {
	display: block;
	float: left;
	margin:0 auto 0 0;
	background:#182572;
	padding:12px 10px 5px 10px;
        text-align:center;
      


}

header.gnav_ico .drawer-button img{
       width:40px;
       height:auto;
}


header.close .drawer-button {
	display: block;
	float: left;
	background-color: #CCC;
	margin:0 auto 0 0px;

}

.drawer-button:hover{
	/*opacity:0.5;*/

	
}

header.close .drawer-button img{
	display:block;
}

/* 以下はメニューのスタイリングなど */
#drawer ul {
	border-top: solid 1px #ccc;
    color: #000;
}
#drawer ul li {
	border-bottom: solid 1px #ccc;

	text-align:left;
	font-size:18px;
}


#drawer ul li a{
	color:#000;
	text-decoration:none;
	display:block;
	padding: 12px 20px;	
}

ul.gnav li img{
	vertical-align:bottom;
	margin-right:5px;
}

header:after {
	content: "";
	display: block;
	clear: both;
}



