@import url(common.css);
/*------------------------------------------
トップへ戻るボタン2
------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  background: rgba(128, 128, 128, 0.8);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 22px;
  border-radius: 50px;
  padding-top: 30px;
  box-sizing: border-box;
  outline: 0;
  z-index: 2147483647;
}

.pagetop:before {
  content: "\25B2";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.pagetop a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .pagetop {
    bottom: 8px;
    right: 8px;
    width: 50px;
    height: 50px;
    line-height: 15px;
    padding-top: 27px;
  }
  .pagetop:before {
    font-size: 14px;
  }
}
