

/***********************************************************
*****************      ログインページ     ******************
************************************************************/


/* ログインフォームのラッパー */
#index_html #login_form_wrapper{
	margin-top: 30px;
	padding-top: 15px;
	text-align: center;
	height: 320px;
	background: rgba(255, 255, 255, 0.6);
}

/* ログインメッセージ */
#index_html #login_form_wrapper #login_message{
	text-align: center;
	color: #700000;
}

/* ログインフォームのイメージロゴ */
#index_html #login_form_wrapper #img_logo{
	margin-bottom: 10px;
}

/* ログインフォームのフォーム */
#index_html #login_form_wrapper .table{
	display: table;
	width: 100%;
	margin: 20px auto;
	font-size: 17px;
}
#index_html #login_form_wrapper .table .tr{
	display: table-row;
	height: 30px;
	margin-top: 20px;
}
#index_html #login_form_wrapper .table .th{
	display: table-cell;
	width: 40%;
	text-align: right;
	vertical-align: middle;
	margin-top: 20px;
}
#index_html #login_form_wrapper .table .td{
	display: table-cell;
	width: 55%;
	text-align: left;
	vertical-align: middle;
	margin-top: 20px;
}
#index_html #login_form_wrapper #login_button_area{
	text-align: center;
}


/* PC用の差分コーティング */
@media screen and (min-width : 600px){
	
	/***********************************************************
	*****************      ログインページ     ******************
	************************************************************/
	
	/* ログインフォームのタイトル */
	#index_html #login_form_wrapper h2{
		font-size: 28px;
	}
	
	/* ログインメッセージ */
	#index_html #login_form_wrapper #login_message{
		margin: 10px 0 0 0;
		font-size: 16px;
	}
	
	/* ログインフォームのフォーム */
	#index_html #login_form_wrapper .table{
		width: 300px;
	}
	#index_html #login_form_wrapper .table .th{
		
	}
	#index_html #login_form_wrapper .table .td{
		
	}
	
	/* ログインフォームのtext,selectのスタイル */
	#index_html #login_form_wrapper #emp_list{
		font-size: 14px;
		padding-bottom: 3px;
	}
	#index_html #login_form_wrapper #password{
		font-size: 15px;
		width: 150px;
	}
	#index_html #login_form_wrapper #login_button{
		font-size: 14px;
	}
}


/* スマホ用の差分コーティング */
@media screen and (max-width: 599px){
	
	/***********************************************************
	*****************      ログインページ     ******************
	************************************************************/
	
	/* ログインフォームのラッパー */
	#index_html #login_form_wrapper{
		margin-top: 10px;
		padding-top: 4px;
		height: 200;
	}
	
	/* ログインメッセージ */
	#index_html #login_form_wrapper #login_message{
		margin: 10px 0 0 0;
		font-size: 14px;
	}
	
	/* ログインフォームのタイトル */
	#index_html #login_form_wrapper h2{
		font-size: 17px;
	}
	
	/* ログインフォームのフォーム */
	#index_html #login_form_wrapper .table{
		display: table;
		width: 100%;
		margin: 10px auto;
		font-size: 14px;
	}
	#index_html #login_form_wrapper .table .th{
		font-size: 13px;
	}
	#index_html #login_form_wrapper .table .td{
		
	}
	#index_html #login_form_wrapper #login_button_area{
		text-align: center;
	}
	
	/* ログインフォームのtext,selectのスタイル */
	#index_html #login_form_wrapper #emp_list{
		font-size: 12px;
		padding-bottom: 3px;
	}
	#index_html #login_form_wrapper #password{
		font-size: 14px;
		width: 110px;
	}
	#index_html #login_form_wrapper #login_button{
		font-size: 12px;
	}
}



