@charset "utf-8";
/*
こちらに自由に記述ください。
*/

/*PCのみ適応されるCSS*/
@media screen and (min-width: 768px) {
  
  .fixed{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: inline-block;
    width: 140px;
  }
  
  .fixed img{
    width: 100%;
    height: auto;
    transition: all ease 0.6s;
  }
  
  .fixed a:hover{
    opacity: 0.6;
  }
  

}
/*スマホのみ適応されるCSS*/
@media screen and (max-width: 767px) {

  .fixed{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: inline-block;
    width: 80px;
  }

  .fixed img{
    width: 100%;
    height: auto;
    transition: all ease 0.6s;
  }

}
