@charset "utf-8";
/* pagetop */
#pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.50);
	border: 1px solid rgba(0, 0, 0, 0.50);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 500;
}
#pageTop::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/assets/img/common/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(-90deg);
	background-position: center center;
}
#pageTop:hover {
	text-decoration: none;
	opacity: 0.7;
}