@charset "UTF-8";
/* CSS Document */

.fixed_button {
  text-decoration: none;
position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
top: 640px; /* 上から150pxのところにバナーを配置します */
right: 40px; /* 右から40pxのところにバナーを配置します */
}
.fixed_button img{
  height: 160px;
  width: auto;
}

.fixed_banner_pc {
width: 300px; /* バナーの横幅を指定してあげます */
}

.floating-button:hover {
opacity: .8; /* マウスが重なった時に少し透過させます */
}

.fixed_banner_sp {
display: none; /* PCではスマホ用のバナーは非表示にします */
}
@media(max-width:980px){
  .fixed_button{
    display: none;
  }
}