@charset "UTF-8";
/* ポップアップの背景 */
#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  /* ポップアップ本体 */
  /* 閉じるボタン */
}
#popup-overlay .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
  padding: 0;
  padding-bottom: 5px;
  overflow: visible;
  /* ここを修正 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  /* バナー画像 */
}
#popup-overlay .popup-content a {
  margin: 0;
  padding: 0;
  display: block;
}
#popup-overlay .popup-content a.c-button {
  display: block;
  width: auto;
  padding: 10px;
  color: white;
  font-size: 30px;
  border: 1px solid #cb4000;
  border-radius: 10px;
  box-shadow: 0 3px 0 #c13d00;
  background-color: transparent;
  background-image: linear-gradient(180deg, #fd7f2f 0, #f54e1d 100%);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  margin-left: 1em;
  margin-right: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#popup-overlay .popup-content img {
  width: 100%;
  height: auto;
  display: block;
}
#popup-overlay .popup-close {
  position: absolute;
  top: -10px;
  /* はみ出し */
  right: -10px;
  /* はみ出し */
  background: white;
  /* 色反転 */
  color: black;
  /* 色反転 */
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #popup-overlay .popup-content {
    width: 90%;
    max-width: 400px;
  }
  #popup-overlay .popup-close {
    padding: 5px 7px;
    font-size: 13px;
  }
}/*# sourceMappingURL=popup.css.map */