@charset "UTF-8";

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
  /* 初期は非表示 */
}

.popup-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.popup-wrapper {
  width: 90%;
  height: 90%;
  max-width: 650px;
  max-height: 650px;
  margin: 5% auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

/* 中国語（繁体字） */
.popup-overlay.popup-zh .popup-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://kinnobuta-premium.1dining.co.jp/wp-content/themes/1dining/assets/images/top/popup_pc_tw.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 英語 */
.popup-overlay.popup-en .popup-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://kinnobuta-premium.1dining.co.jp/wp-content/themes/1dining/assets/images/top/popup_pc_en.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ×ボタン */
.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: #FFF;
  color: #000;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
}

/* スマホ用の画像切替 */
@media screen and (max-width: 768px) {
  .popup-wrapper {
    width: 90%;
    height: 90%;
    margin: 100px auto 0;
    max-height: 490px;
  }

  /* 中国語（SP） */
  .popup-overlay.popup-zh .popup-wrapper::before {
    background-image: url('https://kinnobuta-premium.1dining.co.jp/wp-content/themes/1dining/assets/images/top/popup_sp_tw.jpg');
  }

  /* 英語（SP） */
  .popup-overlay.popup-en .popup-wrapper::before {
    background-image: url('https://kinnobuta-premium.1dining.co.jp/wp-content/themes/1dining/assets/images/top/popup_sp_en.jpg');
  }
}