#quick-access {
  height: auto;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 99;
}
#quick-access .box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  right: 16px;
  bottom: 30px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: 0.25s;
  box-sizing: border-box;
  transform: 0.5s;
}
#quick-access .box .tel-set {
  font-size: 18px;
  font-weight: 600;
}
#quick-access .box .tel-set img {
  width: 21px;
  padding-right: 4px;
  vertical-align: -3px;
}
#quick-access .box .sales_time1,
#quick-access .box .sales_time2 {
  font-size: 13px;
  text-align: center;
}
#quick-access .box .js-qrcode {
  margin-top: 4px;
}
#quick-access .box .js-qrcode img {
  width: initial;
  border-radius: initial;
}
#quick-access .box .js-qrcode #qrcode {
  display: inline-block;
}
#quick-access .box .quick-button {
  margin-top: 4px;
  padding: 0 16px;
}
#quick-access .box .quick-button p,
#quick-access .box .quick-button span,
#quick-access .box .quick-button a {
  font-size: 14px;
  color: pink;
}
#quick-access .box .quick-button .button {
  height: 30px;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  padding: 4px 0;
  position: relative;
}
#quick-access .box .quick-button .line-contact {
  display: flex;
  background-color: #00b900;
}
#quick-access .box .quick-button .line-contact img {
  width: 25px;
  padding-right: 4px;
}
#quick-access .box .quick-button .line-contact a {
  font-weight: initial;
}
#quick-access .box .quick-button .tel-contact {
  display: none;
  background-color: tomato;
}
#quick-access .box .quick-button .tel-contact a {
  font-weight: initial;
}
#quick-access .box .quick-button .mail-contact {
  display: flex;
  background-color: lightblue;
}
#quick-access .box .quick-button .mail-contact img {
  width: 20px;
  padding-right: 4px;
}
#quick-access .box .quick-button .privacy-policy {
  font-size: 10px;
  color: lightslategray;
}
#quick-access .box .quick-button .privacy-policy img {
  width: 20px;
  padding-right: 4px;
  margin-bottom: -2px;
}
#quick-access.active .box {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 480px) {
  #quick-access {
    display: none;
    top: initial;
    bottom: 0;
    padding: 0;
    margin-top: 130px;
  }
  #quick-access .box {
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: initial;
    border-radius: 0;
    padding: 2px 0 0;
  }
  #quick-access .box .off {
    display: none;
  }
  #quick-access .box .sales_time1,
  #quick-access .box .sales_time2 {
    display: inline;
  }
  #quick-access .box .js-qrcode {
    display: none;
  }
  #quick-access .box .quick-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
  }
  #quick-access .box .quick-button .button {
    position: relative;
    width: 33%;
  }
  #quick-access .box .quick-button .tel-contact {
    display: inline-block;
  }
  #quick-access .box .quick-button .tel-contact img {
    width: 1.6rem;
    vertical-align: -2px;
    margin-right: 2px;
  }
  #quick-access .box .quick-button .mail-contact img {
    vertical-align: -2px;
  }
  #quick-access .box .quick-button .privacy-policy {
    display: none;
  }
}