@media screen and (min-width: 960px) {
    .p-point__item.--item04 .p-point__content {
        position: relative;
    }
}

@media screen and (min-width: 960px) {
    .p-point__item.--item04 .p-point__text {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 960px) {
    .p-point__item.--item04 .p-point__flex:nth-child(2) {
        margin-top: 70px!important;
    }
}

@media screen and (min-width: 960px) {
    .p-point__item.--item04 .p-point__content {
        margin-top: 0!important;
    }
}

/* オーバーレイ背景 */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ポップアップコンテンツ */
#popup-content {
  position: relative;
  padding: 0;
  border-radius: 8px;
  max-width: 90%;
  width: 500px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.3); */
}

/* ポップアップ画像 */
#popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 閉じるボタン（枠外・右上） */
#popup-close {
  position: absolute;
  top: -30px; /* ポップアップ枠の上に出す */
  right: 0; /* ポップアップ枠の右に出す */
  width: 60px;
  height: 60px;
  background-color: #9F8CB5; /* 背景色：画像のようなブラウン */
  color: #fff;
  border: none;
  font-size: 16px;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10000;
}

/* ボタン内のテキスト整形 */
#popup-close::before {
  content: '×';
  font-size: 22px;
  line-height: 1;
}

#popup-close::after {
  content: '閉じる';
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

.p-map__txt {
  text-align: center;
  background-color: #f5f4f4;
  padding-top: 20px;
  font-size: 18px;
}

@media screen and (min-width: 768px) {

  .p-campaign__wrapper img {
    width: 100%!important;
  }
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

/* スマホ専用画面下部固定バナー */
.sp-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent linear-gradient(180deg, #459ed6 0%, #d580a1 100%) 0% 0% no-repeat padding-box;
  z-index: 9998;
  padding: 15px 20px;
  display: none;
}

.sp-fixed-banner__link {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  display: block;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.8px;
}

/* スマホのみ表示 */ 
 /* バナーの高さ分だけbodyにパディングを追加 */
/* @media screen and (max-width: 959px) {
  .sp-fixed-banner {
    display: block;
  }
  

  body {
    padding-bottom: 50px;
  }
} */