/*フッター固定バナー*/
@media screen and (max-width: 730px){/*SP*/
	#footer .inner{
		padding-bottom:9vh !important;
	}
	#footerFloatingMenu {
		display: block;
		width: 100%;
		position: fixed;
		bottom: 0;
		z-index: 9999;
		padding: 2% 1%;
		background-color: rgba(255, 255, 255, 0.8);
		animation: furu 2.2s infinite;
	}
	@keyframes furu {
		0% {transform: translate(0px, 0px) rotateZ(0deg)}
		2% {transform: translate(2px, 2px) rotateZ(2deg)}
		4% {transform: translate(0px, 2px) rotateZ(0deg)}
		6% {transform: translate(2px, 0px) rotateZ(-2deg)}
		8% {transform: translate(0px, 0px) rotateZ(0deg)}
		10% {transform: translate(2px, 2px) rotateZ(2deg)}
		12% {transform: translate(0px, 0px) rotateZ(0deg)}
		14% {transform: translate(2px, 0px) rotateZ(-2deg)}
		16% {transform: translate(0px, 2px) rotateZ(0deg)}
		18% {transform: translate(0px, 0px) rotateZ(0deg)}
		100% {transform: translate(0px, 0px) rotateZ(0deg)}
	}
	#footerFloatingMenu div {
		position: relative;
	}
	#footerFloatingMenu ul a {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
	}
	#footerFloatingMenu ul li:nth-child(2) a {
		right: 0;
	}
}