/* -------------------------------------------------------------------------- */
/* 2023/11/08 移植(色変更)																										*/
/* -------------------------------------------------------------------------- */
@charset "UTF-8";
/* CSS Document */

#backto-btn{
	position: fixed;
	z-index: 999;
	bottom: 100px;
	right: 1px;
	font-size: 11px;
	display: block;
	background-color: #F9AEB8;
	opacity: 0.5;
	color: #fff;
	text-align: center;
}

#backto-btn:hover{
	opacity: 0.9;
	cursor: pointer;
}

@media screen and (min-width: 980px)
{
	#backto-btn{
		width: 85px;
		padding: 28px 0;
		border-radius: 5px;
	}

	#backto-btn:before{
		content: '▲\a上に戻る';
		white-space: pre;
	}
}

@media screen and (min-width: 320px) and (max-width: 980px)
{
	#backto-btn{
		width: 40px;
		padding: 20px 0;
		border-radius: 5px 0 0 5px;
	}

	#backto-btn:before{
		content: '▲';
		white-space: pre;
	}
}
