.pageShop a {
    color: #007440;
    cursor: pointer;
    text-decoration: none;
}

.flow-nav__wrapper {
  display: none;
}

.flow-nav {
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 80;
}
.flow-nav ul {
  margin: 0;
}
.flow-nav li {
  margin-bottom: 10px;
}
.flow-nav li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 170px;
  height: 45px;
  background-color: white;
  font-size: 1.6rem;
  font-weight: 700;
  color: #7c7c7c;
  -moz-box-shadow: 3px 3px 8px rgba(102, 102, 102, 0.8);
  -webkit-box-shadow: 3px 3px 8px rgba(102, 102, 102, 0.8);
  box-shadow: 3px 3px 8px rgba(102, 102, 102, 0.8);
  position: relative;
  text-align: left;
}
.flow-nav li a:hover {
  text-decoration: none;
}
.flow-nav li a.chat {
  display: none;
}
.flow-nav li a.chat::before {
  content: "";
  display: inline-block;
  margin: 0 14px 0 16px;
  width: 21px;
  height: 18px;
  background: url(../img/icon/chat.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.flow-nav li a.sumikae::before {
  content: "";
  display: inline-block;
  margin: 0 7px 0 22px;
  width: 34px;
  height: 22px;
  background: url(../img/icon/sumikae.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.flow-nav li a.shopsearch {
  background-color: #63b13f;
  color: white;
}
.flow-nav li a.shopsearch::before {
  content: "";
  display: inline-block;
  margin: 0 16px 0 24px;
  width: 22px;
  height: 20px;
  background: url(../img/icon/shopsearch.png) no-repeat center;
  background-size: contain;
}
.flow-nav li a.assessment::before {
  content: "";
  display: inline-block;
  margin: 0 12px 0 14px;
  width: 38px;
  height: 25px;
  background: url(/n-assets/img/icon/assessment.png) no-repeat center;
  background-size: contain;
}

.smp-btmmenu {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: none;
}
.smp-btmmenu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}
.smp-btmmenu ul li {
  width: calc(100% / 3 - 3px);
}
.smp-btmmenu ul li a {
  display: block;
  padding: 0.5em 0;
  background-color: #2a9c6f;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  -moz-box-shadow: 1px 1px 4px rgba(29, 70, 52, 0.8);
  -webkit-box-shadow: 1px 1px 4px rgba(29, 70, 52, 0.8);
  box-shadow: 1px 1px 4px rgba(29, 70, 52, 0.8);
}
.smp-btmmenu ul li a.sell {
  background-color: #63b13f;
}
.smp-btmmenu ul li a.shopinfo {
  background-color: #0c6a5a;
}

@media screen and (max-width: 767px) {
  /* ====================================================================== */
  /* Footer */
  /* ====================================================================== */
  .flow-nav {
    position: fixed;
    bottom: 105px;
    right: 10px;
  }
  .flow-nav li {
    margin-bottom: 10px;
    padding: 0;
  }
  .flow-nav li a {
    width: 40px;
    height: 40px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    box-sizing: border-box;
  }
  .flow-nav li a.chat span {
    display: none;
  }
  .flow-nav li a.chat::before {
    margin: 0;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .flow-nav li a.sumikae {
    display: none;
  }
  .flow-nav li a.shopsearch {
    display: none;
  }
  .flow-nav li a.assessment {
    display: none;
  }

  .smp-btmmenu {
    display: block;
  }

}