/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
ページUP
参考：https://sinpe-pgm.com/pagetop-button-js/
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: .3s;
  color: #004d99;
  background: #eaf4fc;
  font-weight: 600;
  
  /*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop:hover {
  box-shadow: 0 0 10px #00A6C4;
}

.linklist{
	svg {
		height: 2.2rem; /*svgアイコン設定*/
	}
}