#nav-drawer {
	position: relative;
}
  
/*チェックボックス等は非表示*/
.nav-unshown {
	display: none;
}
  
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 20px;
	vertical-align: middle;
	border-radius: 3px;
	background: rgba(255, 255, 255 ,0.8);
}	
  
/*ハンバーガーの表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 4px;/*線の太さ*/
	width: 100%;/*長さ*/
	border-radius: 3px;
	background: black;
	margin: auto;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	right: 30px;
	z-index: 10000;
	width: 80%;
	max-width: 330px;
	height: 100%;
	background: rgba(255, 255, 255, .9);
	transition: .10s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	-webkit-transform: translateX(200%);
	transform: translateX(200%);

}
#nav-content p {
	color: white;
	font-weight: bpld;
	background: rgba(51, 130, 2, .9);
	margin-top: 0px;
	margin-bottom: 0px;
}
#nav-content li {
	list-style-type: none;
	padding: 5px 10px;
	border-top: 1px solid #808080;
}
#nav-content li:last-child {
	border-bottom: 1px solid #808080;
}
#nav-content .baseLayer{
	line-height: 1.5;
}
#nav-content .overlayLayer{
	line-height: 1.0;
}
#nav-content .elseLayer{
	line-height: 1.5;
}
#nav-content .overlayLayer li:nth-child(odd){
	border-bottom: 0px;
}
#nav-content .overlayLayer li:nth-child(even){
	border-top: 0px;
}


/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

.header-logo-menu{
	display: flex;
	display: -moz-flex;
	display: -o-flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-direction: row;
	-moz-flex-direction: row;
	-o-flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
}

/* opacityスライダー */
input[type="range"] { 
    margin-left: 5px;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 80%;
    cursor: pointer;
    border-radius: 0;
}
::-webkit-slider-runnable-track {
    background: #ddd;
}
::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; /* 1 */
    height: 40px;
    background: #fff;
    box-shadow: -100vw 0 0 100vw #808080;
    border: 2px solid #999; /* 1 */
}
::-moz-range-track {
    height: 40px;
    background: #ddd;
}
::-moz-range-thumb {
    background: #fff;
    height: 40px;
    width: 20px;
    border: 3px solid #999;
    border-radius: 0 !important;
    box-shadow: -100vw 0 0 100vw #808080;
    box-sizing: border-box;
}
::-ms-fill-lower { 
    background: #808080;
}
::-ms-thumb { 
    background: #fff;
    border: 2px solid #999;
    height: 40px;
    width: 20px;
    box-sizing: border-box;
}
::-ms-ticks-after { 
    display: none; 
}
::-ms-ticks-before { 
    display: none; 
}
::-ms-track { 
    background: #ddd;
    color: transparent;
    height: 40px;
    border: none;
}
::-ms-tooltip { 
    display: none;
}