.navArea {
  width: 100%;
  height: 68px;
  position: fixed;
  z-index: 1001;
  background: #fff;
  bottom: 0;
  transition: transform .2s ease-out .2s;
  transform: translateY(0);
}

.navArea::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #dadde0;
}

.navArea>.nav_list {
  display: flex;
  width: 800px;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  justify-content: space-around;
  justify-items: center;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .navArea ul.nav_list {
    width: 100%;
  }
}

.navArea .nav_list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

.navArea .nav_list li.on {
  color: var(--color--point);
}

.navArea .nav_list li.on svg {
  color: var(--color--point);
}

.navArea .nav_list li svg {
  width: 24px;
  color: #666060;
}