.footermenu{
  display:block;
  background: #EEEEEE;
}
.footermenu p{
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  padding:1.2em 0 0.5em;
  letter-spacing: 0.05em;
}
.footer-menu {
  padding:30px;
  max-width: 1080px;
  margin: 0 auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-wrap{
  border-left:#dddddd solid 2px;
  padding: 0.2em 2em 0.2em 1em;
}
.menu-wrap li a{
  text-decoration: none;
  font-size: 13px;
  font-size: 1.3rem;
  padding:0.7em 0.5em;
  display:block;
}
.menu-wrap li a::before{
  content: "-";
  font-size:10px;
  color: #000000;
  margin-right: 0.5em;
  transition: 0.3s;
}
.menu-wrap li a:hover::before{
  color: #F0ED7D;
}
.footertoggle{
  display:none;
}
.togglebtn{
  display:none;
}

/*769以下*/
@media screen and (max-width: 768px) {
  .footermenu{
    display:none;
  }
  .footertoggle{
    display:block;
    width:100%;
    background: #bfbfbf;
  }
  .togglebtn{
  display:block;
  }
  .footer-menu {
  background: #f5f5f5;
  padding:0px;
  }
  .footer-menu li{
    max-width:100%;
    width:100%;
    border-bottom:#dddddd solid 1px;
  }
  .footer-menu li a{
    text-decoration: none;
    font-size: 13px;
    padding:1em 0.5em;
    display:block;
  }
  .footer-menu li a:hover{
    background: #cccccc;

  }

  /* トグルボタンの指定 */
  .togglebtn {
    font-size: 14px;
    background: #bfbfbf;
    line-height: 60px;
    padding: 0 1em;
    cursor: pointer;
    position: relative;
    text-align: center;
  }
  .togglebtn:after {
    content: "\f055";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 10px;
    top: 0;
    color: #fff;
  }
  .togglebtn a {
    color: #fff;
    text-decoration: none;
  }
  .togglebtn.active {
    line-height: 60px;
    padding: 0 1em;
    cursor: pointer;
    position: relative;
  }
  .togglebtn.active:after {
    content: "\f056";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 10px;
    top: 0;
  }
}

