/*

	ボディータグ固定

*/
	@-moz-document url-prefix() {
		input,select {
		font-family: "Yu Gothic UI", "Meiryo UI";
		}
	}

	body {

		text-align : center;
		margin     : 0px;
		padding    : 0px;
		border     : none;
		background-color : #FFFFFF;

	}

/*

	コンテンツ設定

*/

	#container {

		position  : absolute;
		top       : 0px;
		left      : 0px;
		min-width : 100%;
		min-height: auto;
		text-align: left;
		background: -webkit-linear-gradient(top, #dc143c 0%, #ff0000 80%);
		background: -moz-linear-gradient(top, #dc143c 0%, #ff0000 80%);
		background: -ms-linear-gradient(top, #dc143c 0%, #ff0000 80%);
		background: -o-linear-gradient(top, #dc143c 0%, #ff0000 80%);
		background: linear-gradient(top, #dc143c 0%, #ff0000 80%);
		box-shadow: 0px 10px 3px rgb(0,0,0);
		-moz-box-shadow: 0px 10px 3px #000; /* Firefox用 */
		-webkit-box-shadow: 0px 10px 3px #000; /* Safari,Google Chrome用 */

	}

	img.bg {

		height: 100%;
		width: auto;
		margin: auto;
		padding: auto;
		text-align: center;
		border: none;
		position: absolute;
		top: 10px;
		left: 0px;
		z-index:-99;
		opacity: 0.2;

	}

	#loginBox {

		text-align: left;
		width  : 460px;
		height : 260px;
		margin : 0px;
		padding: 20px;
		border  : 3px solid #000000;
		background-color: #FFFFFF;
		border-radius: 50px 50px 50px 50px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;

	}

	#loginShadow {

		width  : 510px;
		height : 310px;
		margin : 90px auto;
		padding: 10px;
		border  : none;
		background-color: #FFFFFF;
		border-radius: 50px 50px 50px 50px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
		-webkit-box-shadow: 10px 10px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 10px 10px 0px rgba(0,0,0,0.2);

	}

