#popupBnr {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
#popupBnr.is-show {
  opacity: 1;
  visibility: visible;
}
#popupBnr .popup-bnr-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  max-width: 600px;
  z-index: 2;
}
#popupBnr .popup-bnr-inner img {
  width: 100%;
}
#popupBnr .popup-bnr-inner a, 
#popupBnr .popup-bnr-inner a:hover {
  opacity: 1;
}
#popupBnrClose {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#popupBnrBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
  z-index: 1;
  cursor: pointer;
}

@media screen and (min-width:768px) { 
  #popupBnr .sp{
    display: none;
  }
}
@media screen and (max-width:767px) {
  #popupBnr .pc{
    display: none;
  }
}