.common-footer-ad {
  width: 100%;
  height: 100px;
  background-color: #10236b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 10;
  transform: translateY(100%);
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
}
.common-footer-ad.active {
  transform: translateY(0);
}
.common-footer-ad img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.common-footer-ad_h5 {
  display: none;
}

@media screen and (max-width: 767px) {
  .common-footer-ad {
    display: none;
  }
  .common-footer-ad_h5 {
    width: 100%;
    height: 5rem;
    display: block;
    background-color: #10236b;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 10;
    transform: translateY(100%);
  }
  .common-footer-ad_h5.active {
    transform: translateY(0);
  }
  .common-footer-ad_h5 img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
