body.modalOn {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.modalArea {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.5s;
}
.modalArea.on {
  pointer-events: all;
  opacity: 1;
}
.modalArea .modalBg {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 310;
  position: absolute;
}
.modalArea .modalMain {
  z-index: 320;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.modalArea .modalMain .modalMainIn {
  position: relative;
}
.modalArea .modalMain .modalMainIn .modalClose {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.modalArea .modalMain .modalMainIn .modalClose span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  left: 0;
  top: 50%;
}
.modalArea .modalMain .modalMainIn .modalClose span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.modalArea .modalMain .modalMainIn .modalClose span:nth-of-type(2) {
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .modalArea .modalMain .modalMainIn .modalClose {
    width: 20px;
    height: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .modalArea .modalMain .modalMainIn .modalClose {
    width: 20px;
    height: 20px;
  }
}/*# sourceMappingURL=commonModal.css.map */