/*リンクの形状*/
#page-top a{
	display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 15px;
  bottom: 5px;
  width: 80px;
  height: 80px;
  background: #7cc6ee;
  border-radius: 100%;
  cursor: pointer;
  transition: ease 0.5s;
  z-index: 1;
  border: 2px solid #fff;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 5px;
	bottom: 5px;
	z-index: 1;
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.pagetop_arrow{
  transition: ease .5s;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#page-top a:hover{
  background: #ffabd5;
}

.pagetop_arrow::after{
  position: absolute;
  content: '';
  display: block;
  background: url(../img/bear.png) no-repeat;
  background-size: contain;
  right: -25px;
  bottom: -5px;
  width: 50px;
  aspect-ratio: 1 / 1;
}


@media(max-width:1200px){
	
	#page-top a:hover{
		background: #7cc6ee;
	}

}


@media(max-width:768px){
  #page-top a {
    right: 5px;
  }
}
/* CSS Document */

