

/*----------------------------------menu*/
header {
	padding:7px 7px 20px 7px;
	background-color: #f9ed97;
	text-align: center;
}

#nav-drawer {
	position: relative;
	background-color: #fff;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	width:50px;
	padding: 10px 0 10px 3px;
	cursor:pointer;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display:none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	text-align: center;
	cursor:pointer;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  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: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#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);
}

#nav-content {
	background-color: #333;
	margin: 0 0 0 -1em;
}
#nav-content li a {
  	list-style-type: none;
  color: #fff;
  display: block;
  padding: 10px;
}


#mainmenu {
	width: 98%;
	margin: 0 auto;
}
#mainmenu ul li {
	width: 46%;
	float: left;
	vertical-align: middle;
}
#mainmenu ul li img {
	width: 70%;
}

#nav-content li a:hover{
  text-decoration: none;
  background-color: #ccc;
	-webkit-transition: all .5s;
	transition: all .5s;
  color: #000;
}
.menuclose {
  display: block;
  color: #fff;
	font-size: 2em;
  font-weight: normal;
  padding: 0 0 5px 0;
  margin: 0 auto;
}

.menuclose:hover {
  text-decoration: none;
	-webkit-transition: all .5s;
	transition: all .5s;
 background-color: #ccc;
}
.menuclose:visited,
.menuclose {
	color: #fff;
}
.hmenu{
	clear: both;
	margin: 1.5em 0 3em 0;
}
.hmenu li {
	position: relative;
	list-style-type: none;
	text-align: left;
	margin: 0 0 0 1em;
}
.hmenu li li {
	list-style-type: circle;
	margin: 0 0 0 3em;
	font-size: 0.8em;
}

@media screen and (min-width: 1000px) {
}
