@charset "utf-8";

/* 2カラム（左カラム＆中央カラム）レイアウト変更用 */


/* コンテンツ枠 --------------------------------------------------------------------------------*/

#container {
	background-image: none;
}


/*
***********************************************************************************************
本文
***********************************************************************************************
*/

#content {
	float: right;
	width: 800px;
}

	.viewmode-mobile #content {
		float: none;
		width: 100%;
	}

/*
***********************************************************************************************
サイドバー
***********************************************************************************************
*/

#content_aside {
	display: block;
}

	/* 画面解像度が低い場合はサイドバーを固定しない */
	@media screen and (max-width: 1200px){
		#content_aside {
			position: static !important;
		}

		/* jquery.frix.jsが生成する要素 */
		.frix-decoy {
			display: none !important;
		}
	}

	/* 印刷時もサイドバーを固定しない */
	@media print {
		#content_aside {
			position: static !important;
		}

		/* jquery.frix.jsが生成する要素 */
		.frix-decoy {
			display: none !important;
		}
	}