@charset "utf-8";
/* CSS Document */
#bnr-cp {
  position: fixed;
  z-index: 1;
  width: 30%;
  right: 50px;
  bottom: 50px;
  opacity: 1;
  transition: opacity 1s ease-out;
}
#bnr-cp.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#bnr-cp > .aem-Grid {
  position: relative;
}
#bnr-cp img {
  border: solid 2px #ffffff;
  transition: .3s ease-out;
}
#bnr-cp img:hover {
  border-color: #06d0d3;
}
#close-btn {
  font-size: 100px;
  text-align: right;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: -80px;
  right: 0;
  transition: .3s ease-out;
  -webkit-text-stroke: 1px #000000;
}
#close-btn:hover {
  color: #06d0d3;
  -webkit-text-stroke: 1px #06d0d3;
}
@media screen and (max-width: 767px) {
  #bnr-cp {
    width: 90%;
    right: 50%;
    transform: translateX(50%);
  }
  #close-btn {
    font-size: 10vw;
    top: -10vw;
  }
}