
@charset "UTF-8";

@media (max-width: 991px) {
  .work-list {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    background: #fafafa;
    z-index: 1;
    padding: 120px 10px 30px;
    transform: translateX(-100%);
    transition: transform 0.5s;
  }

  .work-list.--open {
    transform: translateX(0);
  }

  .work-list__inner {
    height: 100%;
    overflow: auto;
  }

  .work-list__close {
    position: absolute;
    top: 72px;
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .work-list__inner {
    height: 75vmin;
    overflow: auto;
  }

  .work-list__open {
    display: none;
  }

  .work-list__close {
    display: none;
  }
}

.main-img {
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-img > img {
  max-height: none;
  object-fit: contain;
  object-position: center;
}
