html,
body {
  font-family: "Pretendard";
}
.wrap {
  width: 100%;
}
.wrap .inner {
  position: relative;
}
.bg_image {
  width: 100%;
}
.bg_image img {
  width: 100%;
  display: block;
}
/* 모달 공통 */
.modal_wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 32px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 19px;
  max-width: 690px;
  width: 100%;
}
.modal .notice_icon {
  display: block;
  background-image: url("../images/i_notice.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 83px;
  aspect-ratio: 59/52;
  margin: 0 auto 24px;
}
.modal .text_box .desc {
  display: block;
  color: hsl(227, 100%, 18%);
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
}
.wrap .modal .text_box .desc.kor {
  padding-bottom: 25px;
}
.wrap .modal .text_box .desc.eng {
  line-height: 30px;
  font-weight: 600;
}
.modal .btn_box {
  padding-top: 62px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.modal .btn_box .btn {
  padding: 14px 10px;
  min-height: 76px;
  max-width: 260px;
  background-color: #001ee6;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}
/* MO 모달 */
.wrap.mo .modal {
  padding-top: 24px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 308px;
}
.wrap.mo .modal .notice_icon {
  background-image: url("../images/i_notice_m.svg");
  width: 73px;
  aspect-ratio: 52/41;
  margin: 0 auto 26px;
}
.wrap.mo .modal .text_box .desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.wrap.mo .modal .text_box .desc.kor {
  padding-bottom: 14px;
}
.wrap.mo .modal .btn_box {
  padding-top: 36px;
  flex-direction: column;
  gap: 15px;
}
.wrap.mo .modal .btn_box .btn {
  padding: 11px 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 119%;
  min-height: 60px;
}
