.common-dialog .frame {
  padding: 48px 32px 32px;
}
@media screen and (max-width: 769px) {
  .common-dialog .frame {
    padding: 40px 24px 24px;
  }
}
.common-dialog .frame-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.04em;
  text-align: center;
}
.common-dialog .frame-title.error {
  color: var(--status-color-danger);
}
.common-dialog .frame-title img {
  width: 22px;
  height: 22px;
}
.common-dialog .button-area {
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.common-dialog .button-area .button {
  margin: 0;
}
.common-dialog .dialog-close {
  outline: none;
}
@media screen and (max-width: 769px) {
  .common-dialog .button-area {
    flex-direction: column;
    margin-top: 24px;
  }
}