@charset "utf-8";


/*メイン画像
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	z-index: -1;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*画像の共通設定*/
.slide {
	display: block;
	width: 100%;
	max-width: 1280px;
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#mainimg {
	height: 330px;
	overflow: hidden;
	}
	/*１枚目画像*/
	.slide {
		width: auto;
		height: 100%;
	}

	}/*追加指定ここまで*/
