@charset "utf-8";
/* CSS Document */

/*popup*/


.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.popup-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
}

.popup-close {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 200;
  background-color: #000;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
}

.popup-close span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(-45deg);
  width: 50%;
}

.popup-close span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  width: 50%;
}

.popup-img {
  width: 320px;
  /*height: 320px;*/
}

/*
@media screen and (max-width: 820px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 450px) {
}
*/

.popup-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.popup.hidden {
  opacity: 0;
  z-index: -999;	
}

.popup-banner.bnrnon {
  display: none;
}

