@charset "utf-8";

/*-------------------------------------------------------
	common.css
--------------------------------------------------------*/
main {
	padding-bottom: 4rem;
}
a {
	color: #0066cc;
}
a:hover {
	color: #ff0000;
}
main .btnPagetop {
	position: fixed;
	right: 14.5rem;
	bottom: 2.5rem;
	width: 6.3rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	transition: all 0.3s ease-out;
	z-index: 10;
}
main .btnPagetop.hidden {
	visibility: hidden;
	opacity: 0;
}
main .btnResearch {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	width: 11rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	z-index: 10;
}
@media (max-width: 768px) {
	main .btnPagetop {
		width: 8.3rem;
		right: 17.5rem;
	}
	main .btnResearch {
		width: 14rem;
	}
}
