@charset "utf-8";
/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　00. ポップアップモジュール

******************************************************************************* */
/* ==

　00. ポップアップモジュール

=============================================================================== */
/* ポップアップ本体 */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  max-width: 95vw;
  padding: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  border-radius: 8px;
  z-index: 9999;
}

  /* 黒の半透明背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* 黒の半透明背景 */
  background-color: rgba(0, 0, 0, 0.5);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 1000;
}


/* 閉じるボタン */
.popup .close {
  position: absolute;
  top: -10px;
  right: -10px;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;
  background: #aaa;
  color: white;

  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;
  padding: 0;
}


/* スマホ対応 */
@media (max-width:350px){
  .popup{
    width:85%;
    height:auto;
  }
}

/* ポップアップ表示内容 */
.popup-images {
  text-align: center;
}

.popup-images img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

