@charset "utf-8";
/* CSS Document */

#toggle{ 
 display: none;
}

@media only screen and (max-width: 480px) {
  #menu{
    display: none;
	list-style:none;
	padding:0px;
  }
  #menu li{
    width: 100%;
  }
  #menu li a{
	text-align:center;
	display:block;
    background: #BF0712;
	color:#FFFFFF;
	text-decoration:none;
	border-top:1px solid #F17070;
	padding:10px;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #fff;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #BF0712;
    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: #BF0712;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #fff;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
  
  /*その他*/
/*  .topimage {
	padding-top:80px;
}
  .topimage .toptxt {
	  font-size:95%;
	  margin:10px 0;
}
  .topimage .sitename {
	  margin:20px 0;
}*/
}