#floating-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
}
#floating-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.4);
  overflow: hidden;
  animation: fb-fadein 0.4s ease;
}
@keyframes fb-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media screen and (max-width: 767.98px) {
  #floating-banner {
    max-width: 340px;
  }
}
#floating-banner-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#floating-banner-img img {
  display: block;
  width: 100%;
  height: auto;
}
#floating-banner-tel-sp {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #e85400;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
}
#floating-banner-tel-sp:hover { opacity: 0.85; }
@media (min-width: 768px) {
  #floating-banner-tel-sp { display: none; }
}
