@charset "UTF-8";
/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  max-width: 100vw;
  height: 60px;
  bottom: 0px;
  font-size: 0;
  opacity: 1;
  z-index: 200;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各メニュー */
#sp-fixed-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 60px;
  padding: 0;
  margin: 0;
  font-size: 12px;
  background: #2B63AD;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
}
#sp-fixed-menu li:first-child {
  background-color: #222;
}
#sp-fixed-menu li:last-child {
  border-right: 0;
}/*# sourceMappingURL=sp_menu.css.map */