.f-modal,
.f-modal-sm
{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  inset-inline-start: 0px;
  z-index: 80;
  overflow-x: hidden;
  overflow-y: hidden;
  inset: 0px;
  background-color: rgba(17, 24, 39, 0.5);
}

.f-modal-container {
  opacity: 1;
  height: 100%;
  min-height: calc(100% - 3.5rem);
  display: flex;
  align-items: center;
}

.f-modal .f-modal-container {
  margin: 0 0.75rem;
}

.f-modal-sm .f-modal-container {
  margin: 0 3.2rem;
}

.f-modal-content {
  width: 100%;
  max-width: 500px;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  margin: auto;
}

.f-modal-close-btn {
  position: absolute;
  color: white;
  top: -28px;
  right: 10px;
  background: none;
  border: none;
}

.f-modal-close-icon {
  width: 1rem;
  height: 1rem;
}

.f-modal-body {
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 1rem;
  overflow-y: auto;
  background-color: white;
  border-width: 1px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* vueのtransition */
.modalFade-enter,
.modalFade-leave-to {
  opacity: 0;
}
.modalFade-enter-active,
.modalFade-leave-active {
  transition: opacity 200ms ease-out;
}