.notice_popup {
  display: none;
  position: absolute;
  z-index: 101;
}
.notice_popup .popup_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url(/images/popup/popup_close_btn.svg) no-repeat center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
}
.notice_popup .popup_close.is--black {
  background: url(/images/popup/popup_close_btn_black.svg) no-repeat center;
}
.notice_popup .notice_pop_cont {
  width: 100%;
}
.notice_popup .img_box {
  width: 100%;
}
.notice_popup .img_box > img {
  max-width: 100%;
}
.notice_popup .today_chk {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.notice_popup .today_chk.is--left {
  right: auto;
  left: 10px;
}
.notice_popup .today_chk .label {
  display: flex;
  gap: 7px;
  align-items: center;
  cursor: pointer;
}
.notice_popup .today_chk .today_checkbox {
  display: none;
}
.notice_popup .today_chk .checkbox_custom {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
}
.notice_popup .today_chk .today_checkbox:checked + .checkbox_custom {
  background: #FF5414 url(/images//popup/today_chk_ico.svg) no-repeat center;
}
.notice_popup .today_chk .txt {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 1024px) {
  .notice_popup .popup_close {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .notice_popup .popup_close {
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
  }
  .notice_popup .today_chk {
    bottom: 10px;
    right: 10px;
  }
  .notice_popup .today_chk .checkbox_custom {
    width: 12px;
    height: 12px;
    background-size: 6px;
  }
  .notice_popup .today_chk .today_checkbox:checked + .checkbox_custom {
    background-size: 6px;
  }
  .notice_popup .today_chk .txt {
    font-size: 12px;
  }
}
