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

.top img {
	width:100%;
	height:auto;
	}

#left {
	clear:both;
	position:fixed;
	inset: 0;
	margin: auto;
	top:180px;
	/*left:50%;
	transform: translate(-50%, -50%);*/
	z-index:50;
	}

#left ul{
	max-width:950px;
	margin:0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#left ul li {
	/*float:left;*/
	}

.only_pc{
	display:block;
}

.only_sp{
	display:none;
}

@media screen and (max-width: 640px) {
	#left {
		top:100px;
}

	.only_pc{
		display:none;
	}

	.only_sp{
		display:block;
	}

}