.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #F3F3F3;
  padding: 0 10px;
}
.footer-menu .footer-menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu .footer-menu-items .footer-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  height: 75px;
}
.footer-menu .footer-menu-items .footer-menu-item a {
  text-decoration: none;
}
.footer-menu .footer-menu-items .footer-menu-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #B32528;
  margin: auto;
}
.footer-menu .footer-menu-items .footer-menu-img--item {
  background-image: url(../img/menu-item.png);
  background-position: 50%;
  background-size: 11px;
  background-repeat: no-repeat;
}
.footer-menu .footer-menu-items .footer-menu-img--storage {
  background-image: url(../img/storage.png);
  background-position: 50%;
  background-size: 14px;
  background-repeat: no-repeat;
}
.footer-menu .footer-menu-items .footer-menu-img--minikura {
  background-image: url(../img/minikura.png);
  background-position: 55% 50%;
  background-size: 14px;
  background-repeat: no-repeat;
}
.footer-menu .footer-menu-items .footer-menu-img--mypage {
  background-image: url(../img/user.png);
  background-position: 55% 50%;
  background-size: 13px;
  background-repeat: no-repeat;
}
.footer-menu .footer-menu-items .footer-menu-text {
  margin-top: 10px;
  color: #95989A;
  font-size: 10px;
}

.footer {
  background-color: #F3F3F3;
  padding: 0 10px 75px;
}
.footer.footer--with-action-area {
  padding-bottom: 150px;
}
.footer .footer-list {
  text-align: left;
  margin-bottom: 12px;
}
.footer .footer-list .footer-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  font-size: 12px;
  padding-left: 23px;
  padding-right: 5px;
  background-image: url(../img/arrow-down.png);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: right 4px top 50%;
}
.footer .footer-list .footer-list-item a {
  text-decoration: none;
  color: #2d2d2d;
}
.footer .footer-list .footer-list-item:last-child {
  border-bottom: 1px solid #C8D1D8;
}

@media screen and (min-width: 900px) {
  .footer-menu {
    display: none;
  }
  .footer {
    padding: 0 10px 120px;
  }
}