@charset "UTF-8";
/* CSS Document */

#floating_list {
	position: fixed;
	right: 0;
	top: 275px;
	width: 85px;
}

#floating_list li {
	margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
	#floating_list {
		bottom: 0;
		left: 0;
		right: 0;  
		width: 92%;
		margin: 0 auto;
		display: flex;
		top: auto;
		justify-content: center;
	}
	
	#floating_list li {
		width: calc((100% - 15px) / 4);
		margin-bottom: 0;
	}
	
	#floating_list li:not(:last-of-type) {
		margin-right: 5px;
	}
}