/*==================================================

popup

==================================================*/
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.js-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.js-popup__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.js-popup__content {
  width: 64.5161290323%;
  min-width: 600px;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 736px) {
  .js-popup__content {
    width: auto;
    min-width: auto;
    max-width: 81.5217391304%;
    height: 75vh;
    aspect-ratio: 3/5;
  }
}
.js-popup__close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  right: min(-20px, 1.6129032258vw);
  transform: translateX(100%);
  cursor: pointer;
}
@media (max-width: 736px) {
  .js-popup__close {
    width: 20px;
    height: 20px;
    top: -10px;
    right: 0;
    transform: translate(0, -100%);
  }
}
.js-popup__close::before, .js-popup__close::after {
  content: "";
  width: 35px;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media (max-width: 736px) {
  .js-popup__close::before, .js-popup__close::after {
    width: 28px;
  }
}
.js-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.js-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.js-popup__bnr {
  background: #fff;
  display: block;
  overflow: hidden;
}
.js-popup__bnr img {
  width: 100%;
  height: auto;
  transition: opacity 400ms ease, transform 400ms ease;
}
.js-popup__bnr:hover img {
  opacity: 0.8;
  transform: translate3d(0, 0, 0) scale(1.01);
}/*# sourceMappingURL=popup.css.map */