@charset "UTF-8";
/* 基本スタイル */
#floating-banner-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 300px;
  max-width: 90%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transform: translateY(calc(100% + 30px));
  transition: transform 0.5s ease-in-out;
}
#floating-banner-container a {
  display: block;
}
#floating-banner-container a::after {
  display: none;
}
#floating-banner-container.is-visible {
  transform: translateY(0);
}
#floating-banner-container.is-visible #floating-banner-close {
  display: flex;
}

#floating-banner-container img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 閉じるボタン */
#floating-banner-close {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #333;
  color: #fff;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #fff;
  z-index: 10000;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  #floating-banner-container {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    background-color: #d7d7d7;
    box-sizing: border-box;
    padding: 1em 3em;
    transform: translateY(100%);
  }
  #floating-banner-close {
    border-radius: 0;
    border: 0;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=sticky_banner.css.map */