.navigation__container {
  display: flex;
  width: inherit;
  position: fixed;
  top: 0px;
  height: 65px;
  max-width: inherit;
  background: transparent;
  justify-content: center;
  z-index: 1000;
}

.navigation__container.absolute {
  position: absolute;
}

.navigation__container .navigation__list {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.navigation__container .navigation__list li {
  cursor: pointer;
  margin-right: 20px;
  color: rgb(31, 31, 31);
  font-size: 26px;
  opacity: 0.5;
  font-family: 'Gruppo', cursive;
}

.navigation__container.transparent .navigation__list li {
  color: #fff;
}

.navigation__container .navigation__list li.active {
  opacity: 0.7;
}

.navigation__container .navigation__list li:last-child {
  margin-right: none;
}

.navigation__container.scroll-down .navigation__list li {
  color: rgb(31, 31, 31);
}

@media (min-width: 320px) and (max-width: 480px) {
  .navigation__container {
    display: flex;
    width: inherit;
    position: fixed;
    bottom: 0px;
    top: auto;
    height: 50px;
    max-width: inherit;
    z-index: 10000;
    background: #fff;
  }

  .navigation__container.absolute {
    position: fixed;
  }

  .navigation__container .navigation__list {
    display: flex;
    width: 100%;
    justify-content: space-around;
    box-sizing: border-box;
    border-top: solid 1px #efefef;
  }
  .navigation__container .navigation__list li {
    margin-right: 0px;
    color: #000;
    font-size: 12px;
  }

  .navigation__container.scroll-down .navigation__list li {
    color: #000;
  }

  .navigation__list li {
    text-indent: -999em;
    width: 30px;
    height: 30px;
    /* background: red; */
  }
  .navigation__list .home {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_home_basic.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .search {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_search_basic.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .like {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_like_basic.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .mypage {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_mypage_basic.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .home.active {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_home_atv.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .search.active {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_search_atv.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .like.active {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_like_atv.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }

  .navigation__list .mypage.active {
    width: 40px;
    height: 40px;
    background: url(/assets/cm/images/ico/icon_mypage_atv.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
  }
}
