/* CSS Document */
.nx-common-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100vw;
  height: 100vh;
  transition: opacity .3s linear 0s;
}
.nx-common-modal-container .nx-common-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100002;
  transform: translate3D(-50%, -55%, 0);
  width: min(90vw, 520px);
}
.nx-common-modal-container .nx-common-modal-content > div:nth-child(1) img {
  position: static;
  width: 100%;
}
.nx-common-modal-container .nx-common-modal-close {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 100003;
  width: 106px;
  width: min(22.9vw, 106px);
  height: min(10.6vw, 50px);
  cursor: pointer;
  transform: translate(-50%, 150%);
}
.nx-common-modal-container .nx-common-modal-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100vh;
}
.nx-common-modal-container .nx-common-modal-close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://static.nexon.co.jp/common/nxCommonModal/txt_close.svg") no-repeat center top;
  background-size: contain;
}
.nx-common-modal-container .nx-common-modal-close:hover::after {
  opacity: .6;
}
.nx-common-modal-container .nx-common-modal-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100001;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.nx-common-modal-container.close {
  opacity: 0;
}
