@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@400;500;700&family=Varela+Round&display=swap");
/**** VARIABLES ****/
/* popup基本預設設定 不用動 */
.popup-wrap {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  content: "";
  background: rgba(26, 25, 25, 0.9);
  z-index: 100;
}
.popup-wrap .popup-box {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  position: absolute;
  top: 50%;
  left: 50%;
  /* popup自訂設定 */
}
.popup-wrap .popup-box .content {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3vw;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbf1e2), to(#ddbca5));
  background-image: linear-gradient(to bottom, #fbf1e2 0%, #ddbca5 100%);
  border-radius: 1vw;
  color: #7a0e0e;
  border: #c4926d solid 3px;
  width: 29vw;
  gap: 0;
  /* 關閉按鈕樣式 */
}
@media (max-width: 992px) {
  .popup-wrap .popup-box .content {
    width: 37vw;
  }
}
@media (max-width: 820px) {
  .popup-wrap .popup-box .content {
    width: 50vw;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content {
    width: 61vw;
  }
}
.popup-wrap .popup-box .content h3 {
  font-size: 2vw;
  font-weight: 600;
  margin-bottom: 5%;
}
@media (max-width: 1200px) {
  .popup-wrap .popup-box .content h3 {
    font-size: 2.5vw;
  }
}
@media (max-width: 992px) {
  .popup-wrap .popup-box .content h3 {
    font-size: 3vw;
  }
}
@media (max-width: 820px) {
  .popup-wrap .popup-box .content h3 {
    font-size: 5vw;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content h3 {
    font-size: 7vw;
  }
}
.popup-wrap .popup-box .content p {
  border-top: 1px solid #7a0e0e;
  font-size: 1vw;
  font-weight: 500;
  color: #7a0e0e;
}
@media (max-width: 1200px) {
  .popup-wrap .popup-box .content p {
    font-size: 1.6vw;
  }
}
@media (max-width: 992px) {
  .popup-wrap .popup-box .content p {
    font-size: 2vw;
  }
}
@media (max-width: 992px) {
  .popup-wrap .popup-box .content p {
    font-size: 3vw;
  }
}
@media (max-width: 414px) {
  .popup-wrap .popup-box .content p {
    font-size: 20px;
  }
}
.popup-wrap .popup-box .content ul {
  border-top: 1px solid #7a0e0e;
  padding-top: 0;
  font-size: 1vw;
}
@media (max-width: 1200px) {
  .popup-wrap .popup-box .content ul {
    font-size: 1.7vw;
  }
}
@media (max-width: 992px) {
  .popup-wrap .popup-box .content ul {
    font-size: 2.2vw;
  }
}
@media (max-width: 820px) {
  .popup-wrap .popup-box .content ul {
    font-size: 3vw;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content ul {
    font-size: 3.5vw;
    overflow-y: scroll;
    height: 104vw;
  }
}
@media (max-width: 414px) {
  .popup-wrap .popup-box .content ul {
    font-size: 20px;
  }
}
.popup-wrap .popup-box .content ul li {
  margin: 2% 0;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content ul li {
    line-height: 1.3;
  }
}
.popup-wrap .popup-box .content .close-btn {
  width: 3.13rem;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  right: -25%;
  top: 0;
}
@media (max-width: 820px) {
  .popup-wrap .popup-box .content .close-btn {
    right: -17%;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content .close-btn {
    width: 2.13rem;
  }
}
.popup-wrap .popup-box .content .close-btn:hover {
  scale: 1.1;
}