@charset "UTF-8";
/*Base*/
/* CSS Document */
/* ポップアップの内容 */
.popup-content {
  position: absolute;
}

#popup-countmain {
  color: #FFEB3B;
  font-size: 50px;
}

.modal__btn {
  cursor: pointer;
}

.modalContainer {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 11.4vw;
  opacity: 0;
  z-index: -1;
  pointer-events: auto;
  box-sizing: border-box;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

.modalContainer.js-active {
  display: flex;
  animation: .5s ease-in-out 0s modalOpen forwards;
}

.modalContainer.js-close {
  display: flex;
  animation: .5s ease-in-out 0s modalClose forwards;
}

.modalContents {
  position: relative;
  max-width: 600px;
  height: auto;
  background: #FFF;
  z-index: 200;
}

.modalContentsBody {
  position: relative;
}

.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -10%;
  right: 2.4%;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .modal__close {
    width: 6.6vw;
    height: 6.6vw;
  }
}

.modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modalContentsBody .countdownContainer {
  position: absolute;
  top: 0.7%;
  left: 44.9%;
}

.modalContentsBody .countdownTxt {
  color: #fff;
  font-size: 25px;
}

@media screen and (max-width: 600px) {
  .modalContentsBody .countdownTxt {
    font-size: 4.16vw;
  }
}

.modalContentsBody #countdownTime {
  color: #FFEB3B;
  font-size: 50px;
}

@media screen and (max-width: 780px) {
  .modalContentsBody #countdownTime {
    font-size: 6.33vw;
  }
}

@keyframes modalOpen {
  0% {
    z-index: 100;
    opacity: 0;
    pointer-events: auto;
  }
  100% {
    z-index: 100;
    opacity: 1;
    pointer-events: auto;
  }
}

@keyframes modalClose {
  0% {
    display: block;
    z-index: 100;
    opacity: 1;
    pointer-events: auto;
  }
  99% {
    z-index: 100;
    opacity: 0;
  }
  100% {
    z-index: -1;
    opacity: 0;
    pointer-events: none;
  }
}
/*# sourceMappingURL=popup.css.map */