/*----------------------------
	cssの初期化
-----------------------------*/
@charset "Shift_JIS";

@font-face {
	font-family: "myFont";
	src: url("/hokkaido/pc/font/eudc.woff")  format('woff');
}

* { 
	font-size:100% ; 
	font-weight:normal;
	font-family: "myFont";    
	
	margin: 0;
	padding: 0;
	box-sizing : border-box;
	-moz-box-sizing : border-box;
}

/*----------------------------
	ページ共通設定
-----------------------------*/
body {
	/*background-color: #E0EEE0;*/
	background-color: #D3D3D3;

	width: 100%;
}

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;*/
	background-color: #D3D3D3;
	border: solid 1px #D3D3D3;

}
.body_area{
	/*background-color: #FFFAF0;
	border: solid 1px #FFFAF0;*/
	background-color: #D3D3D3;
	border: solid 1px #D3D3D3;
	margin: 0 auto;
	position: relative;
	width: 880px;
}
.header_area {
	/*background-color: #c1ffc1;
	border-bottom: solid 1px  #c1ffc1;*/
	background-color: #000000;
	border-bottom: solid 1px  #000000;

	height: 60px;
	text-align: center;
	width: 100%;
	display: table;
}

.header_area h1 {
	font-size: 140%;
	color: #FFFFFF;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	display: table-cell;
    vertical-align: middle;
    font-weight: bold;
}


.footer_area{
	/*background-color: #c1ffc1;
	border-top: solid 1px  #c1ffc1;*/
	background-color: #000000;
	border-top: solid 1px  #000000;
	color: #FFFFFF;
	text-align: center;
	font-size: 80%;
	height: 60px;
	width: 100%;
	clear: both;
}

/*----------------------------
	２段組にしない場合の
	エリア分け
----------------------------*/
.main_area{
	/*background-color: #FFFAF0;*/
	background-color: #D3D3D3;
	text-align: left;
	width: 100%;
	float: left;
	margin-bottom: 10px;
}
/*----------------------------
	２段組にする場合の
	エリア分け
----------------------------*/
.left_area{
	/*background-color: #FFFAF0;*/
	background-color: #D3D3D3;
	text-align: left;
	width: 420px;
	margin: 5px 7px;
	float: left;
}
.right_area{
	/*background-color: #FFFAF0;*/
	background-color: #D3D3D3;
	text-align: left;
	width: 420px;
	margin: 5px 7px;
	float: left;
}



