/*-フォント開始-*/ 

h1 {
  font-family: "Anton";
  font-size: 50px;
  font-weight: 500;
  line-height: 30px;
  text-align:center;
}

.h2 {
  font-family: "Anton";
  font-size: 25px;
  font-weight: 500;
  line-height: 14px;
  vertical-align: 32px;
  word-spacing: 5px
}

h3 {
  font-family: "Satisfy";
  font-size: 120%;
}

/*-フォント終了-*/ 

/*-メニューボックス開始-*/ 

#menu{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

#menu li{
  display: block;
  float: left;
  width: 16.6667%;
  margin: 0;
  padding: 0;
}

#menu li a{
  display: block;
  padding: 12px 0 10px;
  background: #696969;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

#menu li a:hover{
  background: #90EE90;
}

#toggle{
 display: none;
}

@media only screen and (max-width: 800px) {
    #menu li{
    width: 33.333333%;
    border-bottom: 1px solid #696969;
  }
}

@media only screen and (max-width: 400px) {
  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #696969;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #696969;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -11px;
    background: #ffffff;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #696969;
  }
  #toggle a:before{
    margin-top: -7px;
  }
  #toggle a:after{
    margin-top: 1px;
  }
}
