@charset "UTF-8";

/**/
.modalwindow{
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.80);
  width: 100vw;
  height: 100vh;
  z-index: 200;
  overflow: hidden;
}
.modalwindow__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modalwindow__img-space{
  max-width: var(--max-width-pc);
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.modalwindow__close{
  color: var(--color-white);
  position: absolute;
  right: 30px;
  top: 10px;
  width: 30px;
  aspect-ratio: 1/1;
  background-size: cover;
  transition: 0.25s ease-in;
  opacity: 0.25;
  cursor: pointer;
}
.modalwindow__close:hover{
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .modalwindow__img-space{
    max-width: none;
    width: calc(100% - 32px);
    height: calc(100% - 50px);
  }
  .modalwindow__close{
    right: 10px;
    top: 10px;
  }
}