
/* ----------- position: fixed ----------- */
.header_fixed { 
	position: fixed; 
	width: 100%;
	height: 3em;
	top:0;
	left:0;
	right:0;
	}

.main { position: fixed;
	width: 100%;
	top: 3em;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	}
/* overflow プロパティで要素の内容がボックスからあふれたときスクロールできるようにする */

