<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    #container { /*メインコンテンツ要素へ変更*/
    -webkit-transform: translate3d(0px, 0px, 1px);
    -webkit-transition: .2s -webkit-transform ease-in-out;
    z-index: 1;
	height:auto;	
    }
     
    #container.show { /*メインコンテンツ要素へ変更*/
    -webkit-transform: translate3d(180px, 0px, 1px);
    min-width: 300px;
    }
     
    #drawer.show { /*ドロワーメニュー大枠要素へ変更*/
    height: 100%;
    visibility: visible;
    z-index: 1;
    -webkit-transition: z-index 0s linear .2s;
    }
     
    #drawerContents { /*ドロワーメニュー中枠要素へ変更*/
    display: none;
    height: 100%;
    position: relative;
    width: 180px;
    }
     
    #drawer { /*ドロワーメニュー大枠要素へ変更*/
    background-color: #d3d1d1;
    top: 0;
    position: fixed;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: visibility 0s linear .2s;
    }
	
    #drawerContents li{
	list-style-type:none;
	
	}
	#drawerList li.menu{
		background-color:#424141;
		
		}
	#drawerList li.menu a{
		color: #e7e7e7;
		text-shadow: -1px -1px 0 #000;
		border-bottom: 1px solid #535151;
		box-shadow: 0 1px 0 #fff;
		}
		#drawerBtn a {
		font-size: 300%;
		font-weight: bold;
		color: #000;
	}
	#drawer ul{
	margin-top:5px;
	}
	#drawer ul li a {
	display: block;
	padding: 10px 15px;
	font-weight: bold;
	color: #000;
	text-shadow: -1px -1px 0 #bab9b9;
	border-bottom: 1px solid #535151;
	box-shadow: 0 1px 0 #fff;
	}
	.drawer_midashi{
		
		width:180px;
		background: rgb(0,0,0); /* Old browsers */
		background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(51,51,51,1) 51%, rgba(2,2,2,1) 53%, rgba(73,73,73,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(51%,rgba(51,51,51,1)), color-stop(53%,rgba(2,2,2,1)), color-stop(100%,rgba(73,73,73,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(51,51,51,1) 51%,rgba(2,2,2,1) 53%,rgba(73,73,73,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(51,51,51,1) 51%,rgba(2,2,2,1) 53%,rgba(73,73,73,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(51,51,51,1) 51%,rgba(2,2,2,1) 53%,rgba(73,73,73,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(51,51,51,1) 51%,rgba(2,2,2,1) 53%,rgba(73,73,73,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#494949',GradientType=0 ); /* IE6-9 */


		height:30px;
		padding-top:10px;
		}</pre></body></html>