/* Zoom レイヤー */
.modalImg-overlay {
  display: none; /* 非表示 */
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* 透過ブラック */
  align-items: center;
  justify-content: center;
}
    /* Zoom 拡大画像 */
    .modalImg-content {
    max-width: 99%;
    max-height: 99%;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    }