@charset "UTF-8";
/* ============================================ */
/* modal
/* ============================================ */
/* ===== モーダルを表示している時はページ固定（スクロール不可）にする ===== */
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ===== モーダル基本設定 ===== */
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modalOverlay.is-active {
  opacity: 1;
  visibility: visible;
}
.modalOverlay .modalContent {
  position: relative;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.modalOverlay .modalContent.animate-in {
  opacity: 1;
  transform: none;
}
.modalOverlay .modalContent.full {
  width: 100%;
  height: 100svh;
}

@keyframes slideInFade {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=modal.css.map */
