@charset "UTF-8";
/* ------------------------ popup */
.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 16px;
}

.popup.is-hidden {
  display: none;
}

.popup__wrap {
  width: 100%;
  max-width: 760px;
}

.popup__inner {
  position: relative;
  padding: 56px 32px 32px;
  border-radius: 14px;
  background: #fff;
  color: #222;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.popup__title {
  margin-top: 14px;
  color: #a70f1e;
  font-size: 2.8rem;
  line-height: 1.4;
  text-align: center;
}

.popup__text {
  margin-top: 14px;
  line-height: 1.8;
  text-align: center;
}

.popup__information {
  margin: 22px 0 16px;
}

.popup__close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.popup__close-button-line {
  position: absolute;
  left: 8px;
  top: 17px;
  width: 20px;
  height: 2px;
  background: #333;
}

.popup__close-button-line--1 {
  transform: rotate(45deg);
}

.popup__close-button-line--2 {
  transform: rotate(-45deg);
}

body.popup-open {
  overflow: hidden;
}

@media screen and (min-width: 425px) and (max-width: 1440px) {
  .popup__logo-img {
    width: 65%;
    margin: 0 auto;
  }
  .popup__inner {
    padding: 20px 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  .popup {
    padding: 10px;
  }

  .popup__inner {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 40px 18px 24px;
  }

  .popup__title {
    font-size: 2rem;
  }
}
