@charset "utf-8";
/**/
*{
	margin: 0;
	padding: 0;
	list-style: none; 		/*整體大小重製*/
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
body{
}
.Bottom{
    position:relative;
    bottom: 0%;
    display: block;
    text-align: center;	
	background: #282222;
	z-index: 10;
	padding: 10px;
	color: #CFCFCF;
}
.header{ 					/*至頂方框size*/
	height: 50px;
	background:#282222;
	position: relative;
}
#menu_control{
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.logo_word a{					/*主至頂文字*/
	font-size: 38px;
	vertical-align: middle;
	text-decoration: none;color: #CFCFCF;
}
.menu_btn{						/*選單按鈕底色方框*/
    width: 40px;
    height: 40px;
    background: #DBDBDB;
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    border-radius: 10px; 
}
.menu_btn span{					/*選單文字*/
	opacity: 0%;
	display: block;
	overflow: hidden;
}
.menu_btn::before{				/*選單圖樣製作*/
	content: '';
	position: absolute;
	height: 3px;
	left: 5px;
	width:30px;
	background: #4E4444;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 10px;  
	box-shadow: 0px 10px 0px #4E4444,
		 		0px -10px 0px #4E4444;
}
nav{
	width: 200px;
	height: calc(110vh - 5%);
	position: absolute;
	background:#252323;
	top: 50px;
	left: -100%;
	transition: .5s;
	z-index: 10;
}
nav a{
	display: block;
	text-decoration: none;
	color: #CFCFCF;
	padding: 10px 20px;
	border-bottom: 1px solid #443E3E;
}
#menu_control:checked ~ .header nav{
	left:0;
}
@media screen and (min-width:952px){
	.menu_btn{
		display: none;
	}
	.header{
		display: flex;
		justify-content: space-between;
	}
	nav{
	
		position: relative;
		left: 0;
		display: flex;
		width: auto;
		height: auto;
		top:0;
		transition: 0s;
	}
	nav a{
		border-bottom:none;
	}
	
}

