body.is-modal-open {
  overflow: hidden;
}

.dolbom-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.dolbom-modal[hidden] {
  display: none;
}
.dolbom-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.dolbom-modal__dialog {
  position: relative;
  width: min(100%, 70rem);
  max-height: min(80vh, 68rem);
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.dolbom-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.dolbom-modal__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.dolbom-modal__close {
  height: 45px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #666;
  font-size: 1.4rem;
  gap: 1rem;
}
.dolbom-modal__close .icon-svg {
  font-size: 1.2rem;
  margin-left: 0.5rem;
}
.dolbom-modal__close:focus-visible {
  color: #e8485a;
  outline: 2px solid rgba(232, 72, 90, 0.35);
  outline-offset: 2px;
  border-radius: 0.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .dolbom-modal__close:hover {
    color: #e8485a;
  }
  .dolbom-modal__close:hover .dolbom-modal__popclose {
    background-image: url("/img/sso/user/icons/close_icon.svg");
  }
}
.dolbom-modal__dialogs {
  position: relative;
  width: min(100%, 50rem);
  max-height: min(80vh, 68rem);
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.dolbom-modal__body {
  max-height: calc(min(80vh, 68rem) - 9.2rem);
  color: #333;
  font-size: 1.4rem;
  word-break: keep-all;
  overflow: auto;
}
.dolbom-modal__body p + p {
  margin-top: 0.6rem;
}
.dolbom-modal__body--img {
  width: 100%;
  min-height: 50vh;
  background-repeat: no-repeat;
  background-size: 100%;
}
.dolbom-modal__popclose {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url("/img/sso/user/icons/close_small_icon.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .dolbom-modal {
    padding: 2rem;
  }
  .dolbom-modal__dialog {
    width: 100%;
    max-height: 78vh;
    padding: 2rem;
  }
  .dolbom-modal__body {
    max-height: calc(78vh - 8.4rem);
  }
}
@media screen and (min-width: 768px) {
  .dolbom-modal__dialog {
    padding: 3rem;
  }
}

.dolbom-modals {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.dolbom-modals[hidden] {
  display: none;
}
.dolbom-modals__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.dolbom-modals__header {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
  padding-right: 2rem;
}
.dolbom-modals__header .not-today {
  position: relative;
  font-size: 1.4rem;
  color: #666;
}
.dolbom-modals__header .not-today::after {
  position: absolute;
  top: 0;
  right: -11px;
  display: block;
  content: "";
  clear: both;
  width: 2px;
  height: 16px;
  border-radius: 2px;
  background-color: #aaaaaa;
}
@media (hover: hover) and (pointer: fine) {
  .dolbom-modals__header .not-today:hover {
    color: #e8485a;
  }
}
.dolbom-modals__title {
  font-size: 2rem;
  font-weight: 700;
}
.dolbom-modals__close {
  height: 45px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #666;
  font-size: 1.4rem;
  gap: 1rem;
}
.dolbom-modals__close:focus-visible {
  color: #e8485a;
  outline: 2px solid rgba(232, 72, 90, 0.35);
  outline-offset: 2px;
  border-radius: 0.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .dolbom-modals__close:hover {
    color: #e8485a;
  }
  .dolbom-modals__close:hover .dolbom-modals__popclose {
    background-image: url("/img/sso/user/icons/close_icon.svg");
  }
}
.dolbom-modals__dialogs {
  position: relative;
  width: min(100%, 50rem);
  max-height: min(80vh, 68rem);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.dolbom-modals__body {
  max-height: calc(min(80vh, 68rem) - 9.2rem);
  color: #333;
  font-size: 1.4rem;
  word-break: keep-all;
  overflow: auto;
}
.dolbom-modals__body p + p {
  margin-top: 0.6rem;
}
.dolbom-modals__body--img {
  width: 100%;
  min-height: 50vh;
  background-repeat: no-repeat;
  background-size: 100%;
}
.dolbom-modals__popclose {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("/img/sso/user/icons/close_small_icon.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .dolbom-modals {
    padding: 2rem;
  }
  .dolbom-modals__body {
    max-height: calc(78vh - 8.4rem);
  }
}
body.is-alert-open {
  overflow: hidden;
}

.dolbom-alert {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.dolbom-alert[hidden] {
  display: none;
}
.dolbom-alert__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.dolbom-alert__dialog {
  position: relative;
  width: 100%;
  padding: 2rem;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.18);
}
.dolbom-alert__content {
  padding: 0.2rem 0 2.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dolbom-alert__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
}
.dolbom-alert__message {
  margin-top: 3.4rem;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.6;
  white-space: pre-line;
  word-break: keep-all;
}
.dolbom-alert__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dolbom-alert__button {
  width: 100%;
  min-height: 5rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.14s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.dolbom-alert__button:focus-visible {
  outline: 0.2rem solid rgba(232, 72, 90, 0.35);
  outline-offset: 0.2rem;
}
.dolbom-alert__button:active {
  transform: translateY(0.1rem);
}
.dolbom-alert__button--confirm {
  order: 2;
  background: #e8485a;
  box-shadow: 0 0.8rem 2rem rgba(232, 72, 90, 0.2);
}
.dolbom-alert__button--cancel {
  order: 1;
  background: #aaaaaa;
}
.dolbom-alert.is-cancel-primary .dolbom-alert__button--confirm {
  order: 1;
  background: #aaaaaa;
  box-shadow: none;
}
.dolbom-alert.is-cancel-primary .dolbom-alert__button--cancel {
  order: 2;
  background: #e8485a;
  box-shadow: 0 0.8rem 2rem rgba(232, 72, 90, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .dolbom-alert__button:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .dolbom-alert__dialog {
    width: min(100%, 36rem);
    padding: 2.4rem;
  }
  .dolbom-alert__title {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=modal.css.map */
