/* popup */
.popup {
  position: absolute;
  bottom: 4%;
  left: 6%;
  z-index: 200;
  width: 660px;
  height: auto;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  line-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #d5a848;
}
.popup__wrap {
  width: calc(100% - 40px);
  padding: 20px 0;
}
.popup__image {
  height: 80px;
}

@media (max-width: 768px) {
  .popup {
    width: 94%;
    height: auto;
    font-size: 19px;
    line-height: 36px;
    bottom: 4%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 600px) {
  .popup {
    bottom: 21%;
    font-size: 14px;
    line-height: 26px;
  }
  .popup__text {
    padding: 0 16px;
  }
  .popup__image {
    height: 50px;
  }
}/*# sourceMappingURL=popup.css.map */