/* floating-banner */
.side-figure {
  display: none;
  z-index: 2;
  position: fixed;
  top: 18rem;
  right: 0;
  width: 24rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.side-figure.is-show {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 1;
}
.side-figure__close {
  order: 1;
  margin: 0 0.5rem 0.4rem 0;
  padding: 0 0.45em 0.1em;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.58);
  font-size: 1.2em;
  transition: all 0.3s;
}
.side-figure__close:hover {
  background-color: #fff;
  cursor: pointer;
}
.side-figure a {
  display: block;
  position: relative;
  order: 2;
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
  background-color: rgba(255, 255, 255, 0.58);
}
.side-figure a:hover {
  transform: translateX(-0.3rem) translateY(-0.3rem);
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3px 3px rgba(51, 51, 51, 0.22);
  opacity: 1 !important;
}
.side-figure a:hover ~ .side-figure__close {
  visibility: hidden;
  opacity: 0;
}
.side-figure a > figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
.side-figure a > figure figcaption {
  width: 6rem;
  margin-right: 70%;
  margin-left: 0;
  padding: 0.98em 0 0;
  border-top-left-radius: 0.4rem;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
}
.side-figure a > figure > img {
  width: 35%;
  margin-top: -2rem;
  margin-right: 0.7rem;
  /* transform: scale(1.1); */
}
.side-figure a > figure > p {
  width: 60%;
  padding: 0.6rem 0 0.7rem 1rem;
  font-size: 1.3em;
}
.side-figure a > figure > p.btn {
  width: 100%;
  padding: 0.5rem 0;
  border-bottom-left-radius: 0.4rem;
  background-color: #0f0f0f;
  color: #fdfdfd;
  font-size: 1.2em;
  text-align: center;
}

footer {
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 1040px) {
  .side-figure {
    top: inherit;
    bottom: 8rem;
  }
}/*# sourceMappingURL=floating.css.map */
