.l-footer-fixbnr{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  max-width: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateY(-1rem);
}
@media (max-width: 425px){
  .l-footer-fixbnr{
    width: 80%;
    max-width: 180px;
  }
}
.l-footer-close{
  position: absolute;
  left: -15px;
  top: -5px;
  cursor: pointer;
  z-index: 110;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #303030;
  color: #fff;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  font-weight: 100;
  border: none;
}
@media (max-width: 425px){
  .l-footer-close{
		left: -10px;
		top: -0px;
		width: 20px;
		height: 20px;
		font-size: 20px;
  }
}
html.pc button.l-footer-close:active{
  top: -4px;
}

.l-footer-wrap{
  width: 100%;
  transition: .3s;
}
.l-footer-wrap:hover{
  opacity: .8s;
}
.l-footer-image{
  width: 100%;
  height: auto;
}

.l-footer-fixbnr.is-hidden{
  opacity: 0;
  transform: translateY(1rem);
  visibility: hidden;
}
