@charset "UTF-8";


/* 背景の半透明グレー */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* 表示状態 */
.popup-overlay.is-show {
  display: flex;
}

/* 中央の白いボックス */
.popup-box {
  position: relative;
  width: min(90vw, 520px);
  background: #fff;
  padding: 40px 30px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* 閉じるボタン */
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* 見出し */
.popup-box h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

/* 本文 */
.popup-box p {
  margin: 0 0 24px;
  line-height: 1.8;
}

/* ボタン */
.popup-button {
  display: inline-block;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}


@media (max-width: 480px) {
.popup-box {
  position: relative;
  width: 95vw;
  background: #fff;
  padding: 40px 30px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}
}

