@charset "utf-8";
/*===============================
ポップアップバナー
===============================*/
#jet_popup_banner {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}
#jet_popup_banner .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#jet_popup_banner .cont {
  position: relative;
  display: flex;
  max-width: 80%;
  max-height: 80%;
}
#jet_popup_banner a {
  overflow: hidden;
  cursor: pointer;
}
#jet_popup_banner a:hover {
  filter: brightness(0.7);
}
#jet_popup_banner img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
}
#jet_popup_banner .jpb_close {
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}
#jet_popup_banner .jpb_close:before,
#jet_popup_banner .jpb_close:after {
  content: "";
  display: block;
  width: 64%;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: center center;
}
#jet_popup_banner .jpb_close:after {
  position: absolute;
  transform: rotate(-45deg);
}
