@CHARSET "UTF-8";

/* パスワードリマインダー画面 */


/*
 *    レイアウト枠組みを記述
 *
 */

/* 情報入力テーブル */
table.basic_table {
	/*
	margin: 20px 20px 20px 20px;
	*/
	margin-bottom: 40px;
}

/* 標準テーブル見出し */
table.basic_table th {
	height: 50px;
	width: 220px;
	font-size: 13px;
	padding-left: 20px;
	background-color: #EBEBEB;
	border-bottom: solid 1px #FFFFFF;
}

/* 標準用テーブルデータ */
table.basic_table td {
	width: 570px;
	font-size: 13px;
	padding-left: 10px;
	padding-right: 20px;
	/* border-top: solid 1px #5c5c5c;
	border-bottom: solid 1px #5c5c5c;*/
	border-top: solid 1px #EBEBEB;
	border-bottom: solid 1px #EBEBEB;
}

/* 上部ヘッダー影 */
.contents {
    box-shadow: 0px 6px 12px -8px rgba(0,0,0,0.4) inset;
}

/* 説明欄 */
.description{
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 14px;
}

/* ラジオボタン幅 */
li{
	margin-bottom:2px;

}


/*
 *    フォーム関連
 *
 */

/* 入力フォーム */
input[type="text"]{
	border: 1px solid #BCBCBC;
	height: 25px;
	margin-top:5px;
	margin-bottom:5px;
}

/* 共通ボタン（グリーン） */
input[type="submit"].btn_green,
input[type="button"].btn_green
{
	background: url("/image/arrow_bt.png") 10px 50% no-repeat ;
	height:50px;
	width:240px;
	font-size:17px;
	font-weight: bold;
	color:#FFFFFF;
	border: 1px solid #8DC33E;
	background-color:#8DC33E;
	border-radius:3px;					/* CSS3 */
	-moz-border-radius: 3px;			/* Firefox */
	-webkit-border-radius: 3px;			/* Safari,Chrome */
	behavior: url(border-radius.htc);	/* for IE */

}

/* 共通ボタン（グリーン ホバー時） */
input[type="submit"].btn_green:hover,
input[type="button"].btn_green:hover
{
	background: url("/image/arrow_bt.png") 10px 50% no-repeat ;
	height:50px;
	width:240px;
	font-size:17px;
	font-weight: bold;
	color:#FFFFFF;
	border: 1px solid #A5D067;
	background-color: #A5D067;
	border-radius:3px;					/* CSS3 */
	-moz-border-radius: 3px;			/* Firefox */
	-webkit-border-radius: 3px;			/* Safari,Chrome */
	behavior: url(border-radius.htc);	/* for IE */
	cursor:pointer;
}

/* 共通ボタン（グレイ） */
input[type="submit"].btn_gray,
input[type="button"].btn_gray
{
	background: url("/image/arrow_bt.png") 10px 50% no-repeat ;
	height:50px;
	width:240px;
	font-size:17px;
	font-weight: bold;
	color:#FFFFFF;
	border: 1px solid #8c8c8c;
	background-color:#8c8c8c;
	border-radius:3px;					/* CSS3 */
	-moz-border-radius: 3px;			/* Firefox */
	-webkit-border-radius: 3px;			/* Safari,Chrome */
	behavior: url(border-radius.htc);	/* for IE */
}

/* 共通ボタン（グレイ ホバー時） */
input[type="submit"].btn_gray:hover,
input[type="button"].btn_gray:hover
{
	background: url("/image/arrow_bt.png") 10px 50% no-repeat ;
	height:50px;
	width:240px;
	font-size:17px;
	font-weight: bold;
	color:#FFFFFF;
	border: 1px solid #707070;
	background-color: #707070;
	border-radius:3px;					/* CSS3 */
	-moz-border-radius: 3px;			/* Firefox */
	-webkit-border-radius: 3px;			/* Safari,Chrome */
	behavior: url(border-radius.htc);	/*f or IE */
	cursor:pointer;
}

/* エラーメッセージ */
span.attention {
    color:#FF0000;
    font-weight:bold;
}