/*上に行きますよボタン*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#pageTop a {
	display: block;
	z-index: 3;
	border-radius: 10px;
	width: 40px;
	height: 40px;
	background-color: #73A776;
	color: #fff;
	font-weight: bold;
	text-align: center;
	opacity: 1.0;
	font-size: 25px;
	line-height: normal;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*ふわっとするやつ*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}