/* ----------------------------------------------------- */
/* 3. BEM: c5-braviaBizPopupBox の設定 */
/* ----------------------------------------------------- */
.c5-braviaBizPopupBox {
  max-width: 280px;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
  padding: 15px;
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  right: 20px;
  bottom: -300px;

  /* アニメーション設定 */
  transition: bottom 0.4s ease, opacity 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.c5-braviaBizPopupBox.-isActive {
  visibility: visible;
  opacity: 1;
  bottom: 110px;
}

/* ----------------------------------------------------- */
/* BEM: c5-braviaBizPopupBox__close (閉じるボタン) */
/* ----------------------------------------------------- */
.c5-braviaBizPopupBox__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  transition: opacity 0.2s;
}
.c5-braviaBizPopupBox__close:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------- */
/* BEM: c5-braviaBizPopupBox__inner (中身のコンテナ) */
/* ----------------------------------------------------- */
.c5-braviaBizPopupBox__inner {
  padding: 10px;
}

.c5-braviaBizPopupBox__heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* (キーフレームは省略) */
