
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 10px;
	text-align: center;
	background-color: #FCFAFE;　/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px 10px 10px 15px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #FCFAFE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-weight: bold;	/*文字を太字にする設定*/
	font-size: 20px;
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #bf8300;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f1b739), to(#bf8300));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f1b739, #bf8300);	/*同上*/
	background-image: linear-gradient(#f1b739, #bf8300);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #f1b739;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#bf8300), to(#f1b739));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#bf8300, #f1b739);	/*同上*/
	background-image: linear-gradient(#bf8300, #f1b739);			/*同上*/
}

/*テーブル２
---------------------------------------------------------------------------*/
table.type2 {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
	margin: auto;
}
table.type2 thead th {
	padding: 10px;
	font-weight: bold;
	vertical-align: top;
	color: #369;
	border-bottom: 3px solid #036;
}
table.type2 tbody th {
	width: 190px;
	padding: 5px;
	font-weight: normal;
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
	background: #aaaaaa;
	text-align: center;
}
table.type2 td {
	padding: 10px;
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
}
table.type2 td.ft {
	padding-left: 15px;
	text-indent:-10px;
}


/*テーブル３
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
}
.ta3, .ta3 td, .ta3 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta3 td {
	padding: 10px;
}
/*テーブル内の左側*/
.ta3 th {
	width: 120px;
	padding: 10px;
	text-align: center;
	background-color: #FCFAFE;　/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*テーブルのキャプション設定*/
.ta3 caption{
	padding: 10px 10px 10px 15px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #FCFAFE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-weight: bold;	/*文字を太字にする設定*/
	font-size: 20px;
}

/*テーブル４
---------------------------------------------------------------------------*/
.ta4 {
	width: 100%;
}
.ta4, .ta4 td, .ta4 th{
	border: none;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta4 td{
	padding: 15px;
	text-align: center;
}
/*テーブル内の左側*/
.ta4 th{
	padding: 10px;
	text-align: center;
	background-color: #FCFAFE;　/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta4 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #333;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*テーブルのキャプション設定*/
.ta4 caption{
	padding: 10px 10px 10px 15px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #FCFAFE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	font-weight: bold;	/*文字を太字にする設定*/
	font-size: 20px;
}
