@charset "utf-8";
/* CSS Document */
.pagetop {
  height: 80px;
  width: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #007fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 20px;
  width: 20px;
  border-top: 3px solid #007fff;
  border-right: 3px solid #007fff;
  transform: translateY(20%) rotate(-45deg);
}

.pagetop:hover{
  height: 80px;
  width: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #abd9ff;
  border: solid 2px #abd9ff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}










