@charset "utf-8";

/* ****************************************************
  form styles
***************************************************** */

/* Header for Form */
body#other #header {
	border-bottom: 3px solid #10218b;
}
body#other #header .logo2 {
	padding-bottom: 0;
}

/* Width and height Property */
.width01 {
	width: 330px;
}
.width01_5 {
    width: 250px;
}
.width02 {
	width: 165px;
}
.width02_5 {
    width: 130px;
}
.width03 {
	width: 110px;
}
.width04 {
	width: 55px;
}
/* --------- ラジオボタン幅調整 --------- */
/* CSS Hach IE */
input[type="radio"]{
	width: auto;
	width: 19px\0;
	width: 15px\9\0;
}
/* CSS Hach Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type="radio"]{
		width: 19px;
	}
}
/* --------- チェックボックス幅調整 --------- */
/* CSS Hach IE */
input[type="checkbox"]{
	width: auto;
	width: 20px\0;
	width: 16px\9\0;
}
/* CSS Hach Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type="checkbox"]{
		width: 20px;
	}
}
/* table Border Property */
table.formTable td,
table.formTable th {
	border: none!important;
	padding:0 10px 0 0;
}

table td.bgColor01 {
	background-color:#FFFFFF;
}

/* Clear fix
=========================================*/
ul.formList02:after,
ul.formList02 li:after,
ul.formList03:after,
ul.formList03 li:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
	font-size: 0;
	line-height: 0;
}

ul.formList02,
ul.formList02 li,
ul.formList03,
ul.formList03 li {
	zoom: 1;
}

*:first-child+html ul.formList02,
*:first-child+html ul.formList02 li,
*:first-child+html ul.formList03,
*:first-child+html ul.formList03 li {/* for IE7 */
	display:inline-table;
}