@charset "utf-8";

/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: #2574be;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.5rem;
	transition: all 0s;/*all 0.3s;*/
}

#page-top a:hover{
	background: #0E1850;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
    bottom: 90px;
	z-index: 199;
    /*はじめは非表示*/
	/* opacity: 0;
	transform: translateY(100px); */
}
@media screen and (min-width: 992px) {
	#page-top {
	position: fixed;
	right: 10px;
    bottom: 90px;
	z-index: 199;
    /*はじめは非表示*/
	/* opacity: 0;
	transform: translateY(100px); */
}
}