<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
#fixedTop {
	right: 10px; /*10px*/
	bottom: 10px;
	/*width: 50px;
	height: auto;
	line-height: 50px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	display: none;*/
	position: fixed;
	z-index: 9999;
	/*border-radius: 0px;
	border-radius: ;(角丸50px_width/heightと同px)
	-webkit-transform: translateZ(0);*/
}
#fixedTop img {
	width: 50px;
}
/*#fixedTop:hover {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.7;
}*/
#fixedTop:hover {
	transform: rotateY( 360deg );/*Yはヨコ回転　Xはタテ回転*/
	transition-duration: 0.5s;
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
#fixedTop {
	right: 5px;
	bottom: 55px;
}
#fixedTop img {
	width: 40px;
}
}
</pre></body></html>