@charset "UTF-8";
/* CSS Document */

.popup-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  max-width: calc(100vw - 24px);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.popup-banner.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.popup-close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* スマホでは下から表示 */
@media (max-width: 767px) {
  .popup-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    transform: translateY(100%);
  }

  .popup-banner.is-show {
    transform: translateY(0);
  }
}