@charset "UTF-8";

.floating_banner {
	width: 100%;
	height: 45px;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
}
	.floating_banner a {
		width: 100%;
		height: 100%;
		color: #323232;
		background: #f8f132;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.6em;
		text-decoration: none;
	}
	.floating_banner a:hover {
		text-decoration: none;
		background: #c6f268;
	}

@media screen and (min-width: 1024px) {

.floating_banner {
	width: 55px;
	height: 230px;
	right: 0;
	bottom: 60px;
}
	.floating_banner a {
		writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-orientation: upright;
	}

}