@charset "utf-8";

body {
  height: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #000 !important;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background-color: #fff !important;
}

/* ===== Popup ===== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  /* 初期は非表示 */
  align-items: center;
  /* 中央寄せ */
  justify-content: center;
  padding: 18px;
}

.popup.is-open {
  display: flex;
  /* 表示 */
}

/* 背景を少しぼかす（対応ブラウザは blur、非対応は半透明で雰囲気出る） */
.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.popup__dialog {
  position: relative;
  width: min(920px, 100%);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.popup__picture {
  display: block;
}

.popup__img {
  display: block;
  width: 100%;
  height: auto;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.popup__close:hover {
  background: rgba(0, 0, 0, 0.7);
}