#crazy_floating_banner {
  width: 248px;
  padding: 24px;
  background: #FFFFFF;
  position: fixed;
  right: 90px;
  bottom: 15px;
  z-index: 1000;
  transform: translateY(10px);
  transition: all 0.7s ease 3s;
  transition: color 0.4s, background 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
  }
#crazy_floating_banner a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
#crazy_floating_banner span {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}
#crazy_floating_banner span:before,
#crazy_floating_banner span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 30px; /* 棒の高さ */
  background: #333;
  transform: translate(-50%,-50%) rotate(45deg);
}
#crazy_floating_banner span:after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
#crazy_floating_banner a > div {
  width: 100%;
}
#crazy_floating_banner img {
  width: 100%;
}
#crazy_floating_banner p {
  font-size: 1.2rem;
  line-height: 1.5;
}
#crazy_floating_banner p:first-child {
  color: #cea888;
}

@media screen and (max-width: 720px) {
  #crazy_floating_banner {
    width: calc(100% - 30px);
    padding: 12px;
    right: 15px;
    bottom: 10px;
  }
  #crazy_floating_banner span {
    top: -35px;
  }
  #crazy_floating_banner a {
    flex-direction: row
  }
  #crazy_floating_banner img {
    width: 45%;
  }
}