.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media print, screen and (min-width: 768px) {
  .floating {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .floating {
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .floating.view {
    opacity: 1;
    visibility: visible;
  }
}
.floating ul {
  display: flex;
  align-items: stretch;
}
.floating ul li {
  width: 50%;
}
.floating ul li.visit {
  background: #00b1dd;
}
.floating ul li.mail {
  background: #ff9600;
}
.floating ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0rem 2rem 4rem;
  height: 100%;
}
.floating ul li .icon {
  width: 7rem;
  margin-right: 2.5rem;
}
.floating ul li .num {
  font-size: 3.7rem;
  font-weight: 400;
  color: #ff0014;
  letter-spacing: 0.11em;
}
.floating ul li .title {
  display: block;
  color: #ff0014;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.floating ul li small {
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}