@charset "utf-8";




/*
ナビゲーションの大枠 
*/

#navbox {
	width:100%;
	max-width:1920px;
	min-width:480px;
	display:block;
	float:left;
	background-color:#006DD9;
}


/*
メインメニュー 
*/



#menu{
	width:100%;
	max-width:1000px;
	min-width:480px;
  float:none;
  margin:0 auto;
  display:block;
  padding: 0;
}
#menu li{
  display: block;
  float: left;
  margin: 0;
  padding: 0;
}

.menuh {
	width:15%;
}

.menuw {
	width:17%;
}

#menu li a{
  display: block;
  padding: 0;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  height:60px;
  font-size:9px;
  font-size:0.8rem;
  padding-top:40px;
 
}
#menu li a:hover{
	height:60px;
	background:url(../../images/menuback.jpg) repeat-x top;
}
#toggle{ 
 display: none;
}
@media only screen and (max-width: 768px) {
    #menu li{
    width: 16%;
    border-bottom: 1px solid #444;
  }



#menu li a{
  display: block;
  padding: 0;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  height:60px;
  line-height:60px;
  font-size:7px;
  font-size:0.7rem;
}

}
@media only screen and (max-width: 480px) {

  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
	height:auto;
  }
  
#menu li a{
  display: block;
  padding: 0;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  height:50px;
  line-height:50px;
  font-size:9px;
  font-size:0.9rem;
}
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #222;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #444;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #222;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
}





/*ページトップボタン（非表示）*/
#pagetopBtn {
	position: fixed;
	right: 0;
	bottom: -65px;
	width: 130px;
	height: 130px;
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-ms-transition: 0.1s;
	transition: 0.1s;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg); 
}
/*ページトップボタン（表示）*/
#pagetopBtn.show {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0)";
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg); 
}