@charset "utf-8";
#popup {
  display: none;
}
.modal_bg {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
}
.modal_wrap {
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100002;
  overflow-y: auto;
  border-radius: 10px;
}
.modal_inner {
  background: #fff;
  padding: 30px 5% 40px;
  border-radius: 10px;
  text-align: center;
}
.modal_close {
  color: #fff;
  background: #179e52;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.modal_ttl {
  color: #179e52;
  font-size: 1.1em;
  font-weight: bold;
}
.modal_text {
  margin-top: 2em;
}
.modal_blbtn {
  display: inline-block;
  margin-top: 20px;
  padding: 0.8rem 1.2rem;
  background: #179e52;
  color: #fff !important;
  border-radius: 600px;
  text-decoration: none;
  border: solid 2px #179e52;;
}
.modal_blbtn:hover{
  color: #179e52 !important;
  background-color: #fff;
}
