

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#000;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	color: #FFF;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

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

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:0px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: page-top-UpAnime 0.5s forwards;
}	
#page-top.DownMove{
	animation: page-top-DownAnime 0.5s forwards;
}	


@media (max-width: 576px) {
	#page-top{display: none;}
	#reservation {position:fixed;align-items: center; bottom:20px;z-index: 200;
	opacity: 0;
	transform: translateY(100px);}
	  #reservation a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70vw;
    background: rgba(115, 112, 95, 1.00);
    border-radius: 10px;
    padding: 10px 0;
    margin: 0 15vw;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.75);
	letter-spacing:0.1rem;
  }
	#reservation a:hover{text-decoration: none;color:#333;}
	#reservation small{font-size: 0.6rem;}
	#reservation.UpMove{
	animation: page-top-UpAnime 0.5s forwards;
}	
	#reservation.DownMove{
	animation: page-top-DownAnime 0.5s forwards;
}
}


/*　上に上がる動き　*/
@keyframes page-top-UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
@keyframes page-top-DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 0;
	transform: translateY(100px);
  }
}