<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* luminous style overwrite */
.lum-lightbox{
  z-index: 999;
}

.lum-lightbox-inner {
  overflow: visible;
}

.lum-lightbox-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 画像サイズ */
.lum-lightbox-inner img {
  max-height: 80vh;
  width: auto;
}


/* 閉じるボタン */
.lum-close-button {
  width: 55px;
  height: 55px;
}

.lum-close-button::after,
.lum-close-button::before {
  left: 27px;
  height: 55px;
}

/* 左右矢印 */
.lum-gallery-button {
  height: 75vh;
}

.lum-previous-button::after,
.lum-next-button::after {
  display: none;
}

/* スマホ対応 */
@media (max-width: 768px) {

  .lum-lightbox-inner img {
    max-width: 95vw;
    max-height: 88vh;
  }

  .lum-gallery-button:after {
    width: 6vw;
    height: 6vw;
  }

  .lum-previous-button {
    left: 0;
  }

  .lum-next-button {
    right: 0;
  }
}</pre></body></html>