.floating-banner {
  position: fixed;
  z-index: 99999;
  top: 200px;
  right: 5px;
}
.floating-banner:hover {
  opacity: .8;
}
.banner {
  width: 0px; /* バナーの横幅 */
  height: 0px; /* バナーの高さ */
  padding-top: 10px;
  background: linear-gradient(86.13deg, #7080F7 -3.42%, #3E9ED9 59.59%); /* バナーの背景色 */
  color: #fff; /* バナー内の文字色 */
  font-weight: bold;
  text-align: center;
}
a {
  text-decoration: none; /* リンクに下線が入らないように */
}
.copy {
  font-size: 15px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.cta {
  display: inline-block;
  width: 180px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  background: linear-gradient(270deg, #F4A240 0%, #E3A608 100%); /* ボタンの背景 */
  box-shadow: 0px 0px 30px #2984BA; /* ボタンの影 */
  border-radius: 25px;
}


@media screen and (max-width: 2000px) {

  .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;
  }
}

  .copy2 {
  	-webkit-animation: blink 1s ease-in-out infinite alternate;
	animation: blink 1s ease-in-out infinite alternate;
    font-size: 18px;
    margin: 0 auto 6px;
  }









.side-menu {
  position: fixed;
  top: 20vh;
	right:0;
	z-index:1;
  font-size:0; /* 親要素でフォントサイズを０にする */

}

.side-menu li a{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size:2rem; /*  フォントサイズ0になっているので指定する */
  /* 以下、装飾 */
  padding:15px 15px;
  color:#666666;
  background-color: rgba(255,255,255,0.7);
  border-radius: 15px 0px 0px 15px;
  border-top: solid 5px #80ad1f;
  border-right: solid 0px #80ad1f;
  border-bottom: solid 5px #80ad1f;
  border-left: solid 5px #80ad1f;
}

@media screen and (max-width: 900px) {

  .side-menu {
    display: none;
  }

}


.blink {
	-webkit-animation: blink 1s ease-in-out infinite alternate;
	animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
