@charset "UTF-8";
/* 固定バナー */
.l-theFloatBanner {
  position: fixed;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: #fff;
}

.l-theFloatBanner.is-visible {
  opacity: 1;
}

.l-theFloatBanner.is-hidden {
  opacity: 0;
}

.l-theFloatBanner img {
  display: block;
  width: auto;
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-theFloatBanner {
    bottom: 48px;
    right: 85px;
    width: 258px;
    height: auto;
    cursor: pointer;
  }
  .l-theFloatBanner img {
    transition: opacity 0.5s ease;
  }
  .l-theFloatBanner:hover img{
    opacity: 0.7 !important;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .l-theFloatBanner {
    bottom: 125px;
    right: 18px;
    width: 180px;
    height: auto;
  }
}
