/* lightbox.css
   シンプルな拡大表示用のベース
   本格プラグインを後で入れるなら差し替え可
*/

.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  
  .lightbox-overlay.active {
    display: flex;
  }
  
  .lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    border: 1px solid #444;
    border-radius: 4px;
  }
  