﻿#head {
	display: none;
}

/* メディアクエリー部分 */
/*===============================================
画面の横幅が800px以上
===============================================*/
@media screen and (min-width: 800px){
#head {

}
#panel {
	width: 100%;
	margin: 0 0 0 0;
}

}
/*===============================================
画面の横幅が480pxまで
===============================================*/
@media screen and (max-width:599px){

#head {
	margin: 0px;
	padding: 0px;
	display: block;
	width: 54px;
	float: right;
}

/* toggle-panel */
#panel-btn {
	padding: 18px 0px 21px 0px;
	display: block;
	margin: 0px;
	background: #000000;
	text-decoration: none;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: 500;
	text-align: center;
	line-height: 100%;
	z-index: 20;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50px;
}
body#home #panel-btn {
	background: #FFFFFF;
	color: #000000;
	display: block;
}
#panel-btn:hover {
}
#panel-btn-icon {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 3px;
	margin: 0px 0 0 0px;
	background: #333333;
	transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 3px;
	margin-left: -7px;
	background: #333333;
	transition: .3s;
}
#panel-btn-icon:before { margin-top: -6px; }
#panel-btn-icon:after { margin-top: 4px; }

#panel-btn .close { background: transparent; }
#panel-btn .close:before, #panel-btn .close:after { margin-top: 0; }
#panel-btn .close:before { transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
#panel-btn .close:after { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); }

#panel {
	display: none;
	width: 100%;
	margin: 10px 0px 5px 0px;
	padding: 0px;
	background-color: rgb(255, 255, 255);
	height: auto;
}

}
