@charset "UTF-8";
/*
Theme Name: PICmii
Author: picmii.studio
Version: 1.0
*/



/* Modaal 画像を「画面内(95vh)」に収める：強制版 */
body .modaal-wrapper .modaal-content-container,
body .modaal-wrapper .modaal-content {
  max-height: 95vh !important;
  height: auto !important;
}

/* Modaalが .modaal-image を使うケースが多い */
body .modaal-wrapper img,
body .modaal-wrapper img.modaal-image {
  max-height: 95vh !important;           /* まずは95vhで固定 */
  max-width: 95vw !important;
  width: auto !important;
  height: auto !important;
}

/* 上下の余白を確保したい場合（×ボタン分など） */
body .modaal-wrapper img,
body .modaal-wrapper img.modaal-image {
  max-height: calc(95vh - 60px) !important;
}