/*PC用のCSS*/
@media screen and (min-width: 769px) {
	.archiveSingleWrap{
		position: relative; /*.bottom-side(absolute)の基点に必要*/
	}
	.fixed-side {
		position: fixed;/*画面に固定*/
		bottom:0; /*画面下に固定 leftとrighrの位置指定はしない*/
	}
	.bottom-side {
		position: absolute; /*#wrapに絶対配置*/
		bottom: 0; /*#wrap領域の下に固定 leftとrighrの位置指定はしない*/
	}
}
