﻿/* =========================
   ポップアップバナー（共通）
========================= */
.popup-banner2 {
  position: fixed;
  bottom: 10px;
  right: 15px;
  transform: none;
  width: calc(100% - 40px);
  /*max-width: 500px;*/
  max-width: 350px;
  z-index: 1000;
  box-sizing: border-box;
  display: none;
}

.popup-banner2 img {
  width: 100%;
  display: block;
}

.popup-banner2 a:hover,
.popup-banner2 a:hover img {
  opacity: 1 !important;
}

.popup-close2 {
  position: absolute;
  top: -10px;
  right: -10px;
  background: black;
  color: white;
  border: none;
  font-size: 16px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  cursor: pointer;
}

/* 縦長の時のみ */
@media (max-width: 767px) {
  .popup-banner2 {
    max-width: 200px;
  }
}