.awp-hikaku-floating-banner-public {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 11;
  line-height: 0;

  .floating_canvas {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 20px;
    @media screen and (max-width: 768px) {
      justify-content: center;
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  img {
    max-height: 140px;
    object-fit: contain;
    @media screen and (max-width: 768px) {
      max-height: 120px;
    }
  }

  .banner_link {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
  }

  .banner_link:is(:hover, :active) {
    opacity: 1;
    transform: translateY(5px);
    transition: all 0.3s ease-in-out;
  }
}
