@charset "UTF-8";


/* テスト以外は削除
body{ font-size: 80%; } */


/**************************************************
  ログインフォーム
**************************************************/

table.login{
	margin:100px auto;
	padding:0;
	border-collapse:collapse;
	border:2px solid #666666;
	width:300px;
	text-align:center;
}
table.login td{
	padding: 10px;
	border: 1px #ccc solid;
}
table.login td.l{
	background:#E6E6E6;
	white-space:nowrap;
}
table.login td.r{
	background:#F2F2F2;
}


/**************************************************
  処理状況（一般、管理共通）
**************************************************/

/* 共通 */
#state1,
#state2,
#state3,
#state4{
	margin: 0 auto;
	padding: 0 auto;
	width: 450px;
	height: 40px;
}
#state1 div,
#state2 div,
#state3 div,
#state4 div{
	margin: 5px;
	padding: 5px;
	float: left;
}

/* 処理中 */
#state1 div.on,
#state2 div.on,
#state3 div.on,
#state4 div.on{
	width: 60px;
	border: 1px #999 solid;
	background: #ffccff;
	text-align: center;
}

/* 処理中以外 */
#state1 div.off,
#state2 div.off,
#state3 div.off,
#state4 div.off{
	width: 60px;
	border: 1px #999 solid;
	background: #ccccff;
	text-align: center;
}

/* 「》」部分*/
#state1 div.next,
#state2 div.next,
#state3 div.next,
#state4 div.next{
}

/* 処理状況を画像にしたい場合は下記コードのコメントアウトを外す */
/* 処理内容 : state内のdivをdisplay:none;にして、backgroundを設定している */

/* #state1 : 詳細 */
/* #state2 : 入力 */
/* #state3 : 確認 */
/* #state4 : 完了 */

/*
#state1 div,
#state2 div,
#state3 div,
#state4 div{
	display: none;
}
#state1,
#state2,
#state3,
#state4{
	margin: 0 auto;
	width: 530px;
	height: 50px;
	background: #ccc;
}
#state1{
	background: url(../img/state1.jpg) no-repeat;
}
#state2{
	background: url(../img/state2.jpg) no-repeat;
}
#state3{
	background: url(../img/state3.jpg) no-repeat;
}
#state4{
	background: url(../img/state4.jpg) no-repeat;
}
*/

/**************************************************
  入力・確認
**************************************************/

/* 高さ調整 */
.haj{
	display: block;
	min-height: 0;
}
.haj:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .haj{
	display: inline-block;
}
/* exclude ie mac \*/
* html .haj{
	height: 1%;
}

/* IE 6 */
* html div.form div.s div.l,* html div.form div.s div.r{
	display:inline;
	zoom:1;
}

/* IE 7 */
*:first-child+html div.form div.s div.l,*:first-child+html div.form div.s div.r{
	display:inline;
	zoom:1;
}

/* 外枠 */
div.form{
	margin: 10px auto;
	width: 550px;
	clear: both;
}

/* 項目セット */
div.form div.s{
	width: 550px;
	clear: both;
	border-top: 1px #666 solid;
	background: #ccc;
}

/* 項目内 : 左側 */
div.form div.l{
	margin: 0;
	padding: 5px 10px;
	width: 150px;
	vertical-align:top;
	display:table-cell;
}

/* 項目内 : 右側 */
div.form div.r{
	margin: 0;
	padding: 5px 10px;
	width: 360px;
	background: #efeeec;
	vertical-align:middle;
	display:table-cell;
}

h3.title1{
	margin: 20px 0 0 0;
}
div.title2{
	margin: 10px 0 20px 0;
	text-align: center;
}

/* 削除フォーム */
div.form div.del div.l{
	background: #ff9999;
}
div.form div.del div.r{
	background: #ffcccc;
}

/* 案内文（上部） */
div.form div.r div.guide_t{
	font-size: 90%;
}

/* 案内文（下部） */
div.form div.r div.guide_b{
	font-size: 90%;
}

/* ボタン */
div.submit{
	margin: 20px auto;
	text-align: center;
}

/* メッセージ */
div.message{
	margin: 10px auto;
	text-align: center;
}

/* 送信完了 */
div.guide{
	margin: 20px auto;
	text-align: center;
}

/* 必須項目「※」の色 */
span.hissu{ color:#CC0000; }

/* エラー時 */
div.error{
	color: #cc0000;
}
div.error div.l{
	background: #ffcccc;
}
div.error div.r{
	background: #fef0ef;
}

