@charset "utf-8";
/* 修理コンテンツで使用 */
/* ===========================
   Floating Banner (画像だけ＋閉じるボタン)
   =========================== */
.floating-banner {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 9999;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
}
.floating-banner img {
  display: block;
  width: 330px;
  height: auto;
  margin: 0;
  border: 0;
}
.floating-banner .close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  transition: background .2s ease, transform .2s ease;
  z-index: 10000;
}
.floating-banner .close-btn:hover {
  background: #333;
  transform: scale(1.1);
}
@media (max-width: 599px) {
  .floating-banner img {
    width: 260px;
  }
  .floating-banner .close-btn {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}