@charset "utf-8";
/* CSS Document */


/* ==========================
  ページトップ
========================== */
.page_top{
	max-width:50px;
	width:10%;
	position:fixed;
	right:1vw;
	bottom:1vw;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s,visibility 1s, transform 1s;
	}
.active{
  opacity: 1;
  visibility: visible;
}

@keyframes page_top{
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

@media only screen and (max-width:760px) {

}
