@charset "UTF-8";

.fixed_pc {
	top: 0px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position: fixed;
	text-align: right;
	z-index: 99;
	right: 0;
}

.fixed_pc img {
	height: 310px;
	width: 90px;
}

.fixed_sp, .sp_display {
	display: none;
}

/* lazy load
----------------------------------------------- */
img.fadein {
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

.fadein.is_show  {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.fixed_sp {
		height: auto;
		margin: 0 auto;
		padding: 0;
		position: fixed;
		width: 100%;
		z-index: 99;
	}
	.fixed_sp img {
		height: auto;
		width: 100%;
	}
	.top_fixed_banner {
		top: 0;
	}
	.bottom_fixed_banner img {
		position: fixed;
		bottom: 0;
	}
	.fixed_sp, .sp_display {
		display: block;
	}
	.fixed_pc, .pc_display {
		display: none;
	}
}