body.modal_open {
  overflow: hidden;
}
.policy_modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.policy_modal.open {
  display: flex;
}
.policy_modal_dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.policy_modal_box {
  position: relative;
  max-width: 560px;
  width: 90%;
  max-height: 80vh;
  margin: 5vh auto;
  background: #fff;
  color: #111;
  padding: 28px 30px 26px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.policy_modal_body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
}
.policy_modal_content {
  display: flex;
  flex-direction: column;
  height: calc((80vh - 140px) / 2);
}
.policy_modal_content + .policy_modal_content {
}
.policy_modal_body p.modal_total_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}
.policy_modal_title {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.policy_modal_scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  border: 1px solid #e5e5e5;
  padding: 14px 12px;
  box-sizing: border-box;
}
.policy_modal_scroll .pp-section:not(:first-child) {
  margin-top: 14px;
}

.policy_modal_close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: #111;
  cursor: pointer;
}
.policy_modal_close svg {
  width: 18px;
  height: 18px;
}
.policy_modal_body h2 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.policy_modal_body h3 {
  font-size: 15px;
  margin: 16px 0 6px;
}
.policy_modal_body p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .policy_modal_box {
    padding: 24px 22px 22px;
  }
}
