@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: layout.css
 * Summary:   レイアウト用スタイル
 * Author:    CrEa Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    structures
 *       =1-1    header
 *       =1-2    contents
 *                 - main contents
 *                 - navigation
 *       =1-3    sidepanel
 *       =1-4    footer
 *     =2    breakpoint checker (for javascript)
 *
 * ===============================================================
*/



/** =1
 * ========================================
 * structures
 * ========================================
 */

.l-container {
	position: relative;
	height: auto;
	min-height: 100%;
	width: 100%;
	margin: 0 auto;
}

	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 768px) {
	}

	/* -- >>> styles for medium & wide layout ----- */
	@media screen and (min-width: 769px) {
	}



.l-inner {
}

	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 768px) {
		.l-inner {
			padding-right: 5.3%;
			padding-left: 5.3%;
		}
	}

	/* -- >>> styles for medium & wide layout ----- */
	@media screen and (min-width: 769px) {
		.l-inner {
			max-width: 1040px;
			margin-right: auto;
			margin-left: auto;
		}
	}





	/** =1-1
	 * header
	 * ----------------------------------
	 */

	.l-header {
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 768px) {
		}

		/* -- >>> styles for medium & wide layout ----- */
		@media screen and (min-width: 769px) {
		}


	/** =1-2
	 * contents
	 * ----------------------------------
	 */

	.l-contents {
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 768px) {
		}

		/* -- >>> styles for medium & wide layout ----- */
		@media screen and (min-width: 769px) {
		}


		/* [ main contents ]
		------------------------------ */
		.l-main {
		}

			/* -- >>> styles for narrow layout ----- */
			@media screen and (max-width: 768px) {
			}

			/* -- >>> styles for medium & wide layout ----- */
			@media screen and (min-width: 769px) {
			}

		.l-article {
		}
		
			/* -- >>> styles for narrow layout ----- */
			@media screen and (max-width: 768px) {
			}
		
			/* -- >>> styles for medium & wide layout ----- */
			@media screen and (min-width: 769px) {
			}

		.l-section {
		}

			/* -- >>> styles for narrow layout ----- */
			@media screen and (max-width: 768px) {
			}

			/* -- >>> styles for medium & wide layout ----- */
			@media screen and (min-width: 769px) {
			}

	/** =1-4
	 * footer
	 * ----------------------------------
	 */

	.l-footer {
		background-color: #fff;
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 768px) {
		}

		/* -- >>> styles for medium & wide layout ----- */
		@media screen and (min-width: 769px) {
		}



/** =2
 * ========================================
 * breakpoint checker (for javascript)
 * ========================================
 */

#js-breakpointChecker {
	position: absolute;
	z-index: -100;
	width: 0;
	height: 0;
	overflow: hidden;
}

#js-breakpointChecker div {
	display: none;
}
	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 768px) {
		#js-breakpointChecker .narrow {
			display: block;
		}
	}

	/* -- >>> styles for medium layout ----- */
	@media screen and (min-width: 769px) and (max-width: 1039px) {
		#js-breakpointChecker .medium {
			display: block;
		}
	}

	/* -- >>> styles for wide layout ----- */
	@media screen and (min-width: 1040px) {
		#js-breakpointChecker .wide {
			display: block;
		}
	}
