/*----------------------------
	cssの初期化
-----------------------------*/
@charset "Shift_JIS";

* { 
	font-size:100% ; 
	font-weight:normal;
	
	margin: 0;
	padding: 0;
	box-sizing : border-box;
	-moz-box-sizing : border-box;
}

/*----------------------------
	ページ共通設定
-----------------------------*/
body {
	background-color: #E0EEE0;
	width: 100%;
}

h1{
  padding-top: 15px;
  font-size: 150%;
  font-weight: bold;
  color: #00331F;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 3px;
}

h2{
	font-size: 110%;
	color: #000000;
}

.alert{
	text-align: center;
	padding: 3px, 0;
	color: red;
	border: 2px solid;
	font-weight: bold;
	font-size: 110%;
}

#menucenter{
	text-align: center;
	padding: 1px 0 0 ;
}

.auth{
	font-size: 20%;
	color: #E0EEE0;
}
/*----------------------------
	内容
----------------------------*/
label {
  white-space: nowrap;
}

.data{
	width: 95%;
	padding: 1em, 2px;
	margin: 10px auto;
}

.title{
	background-color: #c1ffc1;
	border: solid 1px #FFFAF0;

}
.body_area{
	background-color: #FFFAF0;
	border: solid 1px #FFFAF0;
	margin: 0 auto;
	position: relative;
	width: 880px;
}
.header_area{
	background-color: #c1ffc1;
	border-bottom: solid 1px  #c1ffc1;
	height: 60px;
	text-align: center;
	width: 100%;
}
.footer_area{
	background-color: #c1ffc1;
	border-top: solid 1px  #c1ffc1;
	text-align: center;
	font-size: 80%;
	height: 60px;
	width: 100%;
	clear: both;
}

/*----------------------------
	２段組にしない場合の
	エリア分け
----------------------------*/
.main_area{
	background-color: #FFFAF0;
	text-align: left;
	width: 100%;
	float: left;
	margin-bottom: 10px;
}
/*----------------------------
	２段組にする場合の
	エリア分け
----------------------------*/
.left_area{
	background-color: #FFFAF0;
	text-align: left;
	width: 420px;
	margin: 5px 7px;
	float: left;
}
.right_area{
	background-color: #FFFAF0;
	text-align: left;
	width: 420px;
	margin: 5px 7px;
	float: left;
}



