@charset "UTF-8";

.floatingBanner__buttonBox {
  position: fixed;
  right: 0px;
  bottom: 220px;
  z-index: 200;
  width: 100%;
  text-align: center;
}

.floatingBanner__buttonBox:hover {
  cursor: pointer;
  opacity: 0.8;
}

.floatingBanner__buttonText {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
}

.floatingBanner__container {
  position: fixed;
  bottom: 220px;
  right: 0;
  z-index: 300;
  box-sizing: border-box;
  display: none;
  box-shadow: rgb(0 0 0 / 16%) 0px 4px 8px;
}

.floatingBanner__container img {
  width: 182px;
  height: 182px;
}

.floatingBanner a.floatingBanner__link {
  display: flex;
  flex-wrap: nowrap;
  color: #333333;
  text-decoration: none;
}

.floatingBanner .floatingBanner__buttonText img{
  width: calc(70 / 950 * 100vw);
  height: calc(135 / 950 * 100vw);
}

.floatingBanner__closeButton {
  position: absolute;
  top: -36px;
  right: 4px;
  width: 36px;
  height: 36px;
  background-color: #333333;
}

.floatingBanner__closeButton::before {
  content: "";
}

.floatingBanner__closeButton:hover {
  cursor: pointer;
  opacity: 0.8;
}