/* ===== 追従キャンペーンバナー ===== */
.campaign-banner-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998; /* 他の要素との兼ね合いで調整してください */
  width: 320px;
  animation: cb-slideIn 0.5s ease-out;
}

@keyframes cb-slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.campaign-banner {
  background: #fff;
  border: 2px solid #023a74;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.campaign-banner__link {
  text-decoration: none;
  display: block;
  padding: 20px 15px;
  transition: background 0.3s;
}

.campaign-banner__link:hover {
  background: #f0f7ff;
}

/* 閉じるボタン */
.campaign-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #023a74;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
  z-index: 2;
  border-bottom-left-radius: 8px;
  transition: background 0.2s;
}

.campaign-banner__close:hover {
  background: #d9534f;
}

/* コンテンツ */
.campaign-banner__label {
  display: inline-block;
  background: #023a74;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.campaign-banner__title {
  color: #023a74;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
  line-height: 1.4;
}

.campaign-banner__text {
  color: #E58E8D;
  font-size: 13px;
  margin: 0;
  padding-right: 20px;
  position: relative;
}

.campaign-banner__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  background: url("../images/arrow02.png") right center no-repeat; /* 既存パスを流用 */
  background-size: contain;
}

/* SP表示：画面下部に横いっぱいに表示する場合 */
@media screen and (max-width: 768px) {
  .campaign-banner-wrapper {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
  }
  .campaign-banner__title {
    font-size: 15px;
  }
	.campaign-banner__link{
		  padding: 15px 25px;
	}
}