div#footer_area {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  height: 54px;
  height: calc(constant(safe-area-inset-bottom) + 54px);
  height: calc(env(safe-area-inset-bottom) + 54px);
  background-color: #becebc;
}
div#footer_area ul {
  visibility: hidden;
  display: flex;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}
div#footer_area ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: #ffffff;
}
div#footer_area ul li span {
  font-size: 13px;
  margin-top: 5px;
}
div#footer_area ul li#footer_home {
  background-color: #de7f9e;
}
div#footer_area ul li#footer_home.active {
  background-color: #b2667f;
}
div#footer_area ul li#footer_map {
  background-color: #55bf71;
}
div#footer_area ul li#footer_map.active {
  background-color: #44995a;
}
div#footer_area ul li#footer_favorite {
  display: none;
  background-color: #cbae49;
}
div#footer_area ul li#footer_favorite.active {
  background-color: #a38b3a;
}
div#footer_area ul li#footer_search {
  background-color: #7594b9;
}
div#footer_area ul li#footer_search.active {
  background-color: #59799f;
}
div#footer_area div#agreement_area {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 45vh;
  background-color: #ffffff;
  padding: 30px 20px;
  font-size: 1rem;
  line-height: 1.5;
  z-index: 2000;
  -webkit-transform: translate3d(0, 0, 2000px);
  transform: translate3d(0, 0, 2000px);
}
div#footer_area div#agreement_area p {
  color: #626262;
  width: 100%;
  flex-shrink: 1;
  flex-grow: 1;
}
div#footer_area div#agreement_area div#btn_area {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  height: 30%;
  text-align: center;
}
div#footer_area div#agreement_area div#btn_area button {
  background-color: #667;
  color: #fff;
  padding: 15px 10px;
}
