/* レンズケア 漫画バナー ポップアップ */
.popup-bnr {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  width: 315px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.popup-bnr.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}
.popup-bnr__link {
  display: block;
  line-height: 0;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.popup-bnr__link img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.popup-bnr__link:hover img {
  opacity: 0.85;
}
.popup-bnr__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #333;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.popup-bnr__close::before,
.popup-bnr__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-bnr__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-bnr__close:hover {
  background: #000;
}
@media all and (max-width: 750px) {
  .popup-bnr {
    right: 10px;
    bottom: 10px;
    width: 46%;
    max-width: 315px;
  }
  .popup-bnr__close {
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
  }
  .popup-bnr__close::before,
  .popup-bnr__close::after {
    width: 12px;
  }
}
.popup-bnr__close-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
