.modal-btn:hover {
  box-shadow: none;
  transform: translateY(5px);
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.modal-content {
  padding: 40px 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  background-color: #fff;
  border-radius: 10px;
}

.modal-overlay.init {
  display: none;
}

.modal-header {
  text-align: center;
}

.modal-header h2 {
	font-family: Noto Sans JP;
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 0%;
  padding: 0 24px 16px 24px ;
  border-bottom: solid 1px #64B32E;
  display: inline-block;
}

.modal-body {
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  letter-spacing: 0%;
  margin: 32px 0;
  white-space: pre-line;
}

.modal-content .dli-close {
  display: block;
  vertical-align: middle;
  color: #fff;
  width: 300px;
  background: #64B32E;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 47px;
  letter-spacing: 8%;
  border-radius: 4px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width: 897px) {
  .modal-content {
    padding: 20px;
    width: 280px;
  }

  .modal-header {
    font-size: 15px;
  }

  .modal-body {
    font-size: 12px;
  }
  .modal-content .dli-close {
    max-width: 87.5%;
  }
}