/* フローティングバナー */

.floating-banner {
  position: fixed;
  z-index: 99999;
  top: 80px;
  right: 40px;
}
.floating-banner:hover {
  opacity: .8;
}
.banner {
  width: 300px; /* バナーの横幅 */
  height: 250px; /* バナーの高さ */
  padding-top: 40px;
  background: linear-gradient(86.13deg, #143d69 -3.42%, #143d69 59.59%); /* バナーの背景色 */
  color: #fff; /* バナー内の文字色 */
  font-weight: bold;
  text-align: center;
}
a {
  text-decoration: none; /* リンクに下線が入らないように */
}
.copy {
  font-size: 28px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.cta {
  display: inline-block;
  width: 240px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background: linear-gradient(270deg, #143d69 0%, #143d69 100%); /* ボタンの背景 */
  box-shadow: 0px 0px 30px #2984BA; /* ボタンの影 */
  border-radius: 25px;
}

@media screen and (max-width: 990px) {
  .floating-banner {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .floating-banner {
    display: inline-block;
    top: unset;
    right: 0;
    bottom: 0;
  }
  .banner {
    width: 100vw;
    height: 80px;
    padding: 8px;
  }
  .sp {
    display: none;
  }
  .copy {
    font-size: 18px;
    margin: 0 auto 6px;
  }
  .cta {
    height: 28px;
    line-height: 28px;
    font-size: 15px;
  }
}