/* style-gallery-patch.css */

/* 高さは画面に追従（スクロールを減らす） */
div#photo_gallery {
  --ui-offset: 0px; /* 横長PCは最大表示優先 */

  height: calc(100svh - var(--ui-offset));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 縦が短い環境だけ少しオフセットを増やす（任意） */
@media (max-height: 700px) { div#photo_gallery { --ui-offset: 80px; } }
@media (max-height: 600px) { div#photo_gallery { --ui-offset: 120px; } }

figure.slides {
  margin: 0;
  width: 100%;
  height: 100%;
}

/* 本丸: 縦方向リサイズでも必ず縮む */
img.gallery {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer.gallery { display: none !important; }