@charset "UTF-8";
/*=============================================*/

/*ページ上部へ戻るボタン ----------------------- */

  .footer-top .totop {
  -webkit-transition: 0.5s;
  background: #333333;
  border-radius: 50%;
  bottom: 16px;
  bottom: 60px;
  color: transparent;
  height: 50px;
  position: fixed;
  right: 16px;
  text-align: center;
  transition: 0.5s;
  width: 50px;
  z-index: 100;
  }

  .footer-top .totop::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  border-right: 4px solid #f3f3f3;
  border-top: 4px solid #f3f3f3;
  bottom: 60px;
  content: "";
  display: block;
  height: 10px;
  left: 50%;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  }

  .footer-top .totop:focus,
  .footer-top .totop:hover {
  opacity: 0.4;
  }

  
/* Mobile-----------------------------------*/

/*ページ上部へ戻るボタン ----------------------- */
@media screen and (max-width: 480px) {
  .footer-top .totop {
    height: 36px;
    width: 36px;
    bottom: 25px;
  }
  }

}