@charset "UTF-8";
.main_popup {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  z-index: 9999;
  color: #262626;
  display: none;
}
.main_popup, .main_popup * {
  box-sizing: border-box;
}
.main_popup * {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", sans-serif;
}
.main_popup .only_mo {
  display: none;
}
@media all and (max-width: 1024px) {
  .main_popup .only_mo {
    display: block;
  }
}
@media all and (max-width: 1024px) {
  .main_popup {
    width: 90%;
    max-width: 950px;
  }
}
.main_popup.on {
  display: block;
}
.main_popup .main_popup_wrap {
  width: 100%;
  height: 630px;
  overflow: auto;
  position: relative;
}
@media all and (max-width: 1024px) {
  .main_popup .main_popup_wrap {
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    max-height: 630px;
  }
}
.main_popup .main_popup_wrap::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.main_popup .main_popup_wrap::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.main_popup_top {
  width: 100%;
  height: 630px;
  background: #FFD230 url(../img/common/main-popup-bg.png);
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media all and (max-width: 1024px) {
  .main_popup_top {
    padding: 30px 50px;
  }
}
@media all and (max-width: 1024px) and (max-width: 650px) {
  .main_popup_top {
    padding: 30px 20px;
  }
}
.main_popup_top > h3 {
  width: 123px;
  height: 40px;
  border-radius: 22px;
  border: 2px solid #262626;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%; /* 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
@media all and (max-width: 1024px) {
  .main_popup_top > h3 {
    font-size: 18px;
  }
}
.main_popup_top > h2 {
  margin-top: 30px;
  font-size: 38px;
  text-align: center;
  display: flex;
  padding-left: 50px;
  font-weight: 700;
  line-height: 140%;
  position: relative;
}
@media all and (max-width: 1024px) {
  .main_popup_top > h2 {
    margin-top: 0;
    padding-left: 0;
    justify-content: center;
  }
}
@media all and (max-width: 1024px) and (max-width: 768px) {
  .main_popup_top > h2 {
    font-size: 5vw;
  }
}
.main_popup_top > h2::after {
  content: "";
  display: block;
  position: absolute;
  right: -50px;
  top: -70%;
  width: 270px;
  height: 241px;
  background: url(../img/common/popup-symbol.svg) no-repeat center;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .main_popup_top > h2::after {
    display: none;
  }
}
.main_popup_top > p {
  margin: 0;
  margin-top: 70px;
  color: #262626;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  font-family: "Pretendard", "돋움";
}
@media all and (max-width: 1024px) {
  .main_popup_top > p {
    margin-top: 0;
    word-break: keep-all;
    font-size: 2vw;
  }
}
@media all and (max-width: 1024px) and (max-width: 650px) {
  .main_popup_top > p {
    font-size: 13px;
  }
}
.main_popup_top .logo {
  margin-top: 25px;
  align-self: center;
  width: 130px;
}
.main_popup_top .logo img {
  width: 100%;
}
.main_popup_bottom {
  width: 100%;
  background: #F0F2F9;
  padding: 30px 25px;
}
.main_popup_bottom table {
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media all and (max-width: 768px) {
  .main_popup_bottom table {
    font-size: 13px;
  }
}
.main_popup_bottom table:not(:first-of-type) {
  margin-top: 50px;
}
.main_popup_bottom table th, .main_popup_bottom table td {
  border: 1px solid #CDD3DD;
}
.main_popup_bottom table th {
  font-weight: 600;
  background-color: #EEF1F6;
  border-top: 1px solid #354150;
  height: 36px;
}
.main_popup_bottom table.border-none th, .main_popup_bottom table.border-none td {
  border: none;
  line-height: 1.4;
}
.main_popup_bottom table.border-none td {
  padding: 10px 0;
}
.main_popup_bottom table td {
  padding: 10px;
}
@media all and (max-width: 768px) {
  .main_popup_bottom table td {
    padding: 5px;
    word-break: keep-all;
  }
}
.main_popup_bottom table td > p {
  display: flex;
  align-items: center;
}
.main_popup_bottom table td > p img {
  margin-left: 10px;
}
.main_popup_bottom table td > p:nth-of-type(2) {
  margin-top: 25px;
}
@media all and (max-width: 768px) {
  .main_popup_bottom table td > p {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .main_popup_bottom table td > p img {
    width: 80px;
    margin-left: 0px;
  }
}
.main_popup_bottom table colgroup col {
  width: 50%;
}
.main_popup_bottom caption {
  text-align: left;
  padding-bottom: 10px;
}
@media all and (max-width: 1024px) {
  .main_popup_bottom {
    padding: 15px 10px;
  }
}
.main_popup_bottom > div {
  padding: 50px 65px;
  border-radius: 22px;
  background: #fff;
}
@media all and (max-width: 1024px) {
  .main_popup_bottom > div {
    padding: 20px 30px;
    border-radius: 10px;
  }
}
@media all and (max-width: 1024px) and (max-width: 768px) {
  .main_popup_bottom > div {
    padding: 10px 15px;
  }
}
.main_popup .btn_wrap {
  width: 100%;
  display: flex;
  background-color: #fff;
  border-radius: 0px 0px 22px 22px;
  border: 1px solid #E0E0E0;
}
.main_popup .btn_wrap button {
  width: 50%;
  padding: 21px 0;
  color: #262626;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  cursor: pointer;
  background: transparent;
  border: none;
}
.main_popup .btn_wrap button:first-of-type {
  border-right: 1px solid #E0E0E0;
}
@media all and (max-width: 1024px) {
  .main_popup .btn_wrap button {
    padding: 17px 0;
    font-size: 14px;
  }
}