@charset "UTF-8";

/*
.notice_popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.notice_popup.is_show {
  display: block;
}
*/

.notice_popup_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.notice_popup_box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 40px);
  max-width: 760px;
  max-height: calc(100vh - 80px);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.popup-modal-dismiss {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  color: #333;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.popup-modal-dismiss:hover {
  background: #e5e5e5;
}

.notice_popup_content {
  max-height: calc(100vh - 190px);
  padding: 42px 42px 24px;
  overflow-y: auto;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.notice_popup_content h2 {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #8bbf52;
  color: #333;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.notice_popup_content h3 {
  margin: 28px 0 12px;
  color: #4f8f2f;
  font-size: 18px;
  line-height: 1.6;
}

.notice_popup_content p {
  margin: 0 0 18px;
}

.notice_popup_btn_area {
  padding: 18px 30px 26px;
  text-align: center;
  background: #fff;
}

.notice_popup_btn {
  min-width: 220px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #8bbf52;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.notice_popup_btn:hover {
  opacity: 0.85;
}

body.notice_popup_open {
  overflow: hidden;
}
.notice_indent {
  display: flex;
  gap: 0;
  margin: 0 0 18px;
}

.notice_indent_mark {
  flex: 0 0 1.2em;
}

.notice_indent_text {
  flex: 1;
}

.notice_indent_note {
  margin-top: -8px;
}

/* スマホ */
@media screen and (max-width: 767px) {
.popup-modal-dismiss {
    right: 10px;
    top: 10px;
}
  .notice_popup_box {
    width: calc(100% - 24px);
    max-height: calc(100vh - 40px);
    border-radius: 12px;
  }

  .notice_popup_content {
    max-height: calc(100vh - 165px);
    padding: 52px 20px 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .notice_popup_content h2 {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
  }

  .notice_popup_content h3 {
    font-size: 16px;
  }

  .notice_popup_btn_area {
    padding: 14px 20px 20px;
  }

  .notice_popup_btn {
    width: 100%;
    min-width: 0;
  }
}