/*** ページトップへ戻るボタン ***/

#page-top {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 99px;
    right: 20px;
    overflow: hidden;
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 40px;
    line-height: 40px;
    z-index: 20;
    background: #9b75ff ;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: background 0.5s ease;
    transition: background 0.5s ease;
}
/***マウスオーバー時***/
#page-top:hover{
  outline: none;
  background: #79ccff ;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
@media only screen and (max-width: 1199px) {
  #page-top {
    display: none !important;
  }
}
/***トップへ戻るボタンここまで***/
