/* floating-banner */
.side-figure {
  display: none;
  z-index: 2;
  position: fixed;
  top: 8rem;
  right: 0;
  width: 22rem;
  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.2rem 0;
  padding: 0 0.45em 0.1em;
  border: none;
  border-radius: 50%;
  background-color: rgba(245, 245, 245, 0.8);
  font-size: 1.0em;
  transition: all 0.3s;
}
.side-figure__close:hover {
  background-color: #fff;
  cursor: pointer;
}
.side-figure a {
  display: block;
  position: relative;
  order: 2;
  border-radius: 0.4rem;
  background-color: rgba(255, 255, 255, 0.7);
}
.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;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);
}
.side-figure a>figure figcaption {
  width: 7rem;
  margin-right: calc(100% - 9rem);
  padding: 0.8rem 0 0;
  font-weight: bold;
  font-size: 0.8em;
  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 0 0.9rem 1rem;
  font-size: 0.85em;
  line-height: 1.5;
}
.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: 0.85em;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  .side-figure {
    top: inherit;
    bottom: 8rem;
  }
}
/*# sourceMappingURL=floating.css.map */
