/* コンテンツ・パーツ */


/* フォームテーブル */
table {
    margin: 0px 0px 25px 0px;
    padding:0px 0px 0px 0px;
    border-collapse: separate;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #385492;
    border-spacing: 3px;
    width:640px;
    font-size:12px;
}
th,td{
    border-style:solid;
}

td.last{
    border-width: 0px;
}


th{
    width:160px;
    margin: 0px;
    padding: 5px 5px 7px 5px;
    white-space: nowrap;
    font-weight: normal;
    background-color: #F0F4FE;
    border-color: #98A7C7;
    border-width:0px 1px 1px 0px;
    text-align:right;
}

th span{display:block;
    margin: 5px 0px 0px 0px;
    
}

th.last{

    border-width:0px 1px 0px 0px;

}

td{
    margin: 0px;
    padding: 5px 5px 7px 5px;
    background-color: #fff;
    border-color: #98A7C7;
    border-width:0px 0px 1px 0px;
}



/* フォーム用注釈インデント*/
#form p{
    margin:3px 0px 0px 0px;
    text-indent:1em;
    text-align:justify;
    font-size:1.1em;
}
/* フォームパーツ・上右下左*/

input.formWidth,textarea{
	width:300px;
}

input,textarea,select{
    border:1px solid #98A7C7;
    background-color:#F0F4FE;
    margin: 0px 3px 0px 5px;
    padding: 3px 3px 3px 3px;
}

img.must {
    width: 32px;
    height: 16px;
 float: left;
    margin: 0px 0px 0px 0px;

}

img.must-wide{	width: 30px;
	height: 16px;
	float: left;
	margin: 0px 0px 0px 5px;
}


.nowrap{white-space: nowrap;}

textarea{font-size : 1.2em ;
    width:95%;
    height:100px;
}
input:focus,textarea:focus{
    background-color:#FDFDEB;
}
/* IE6向けフォーカスハック・上右下左*/

input,textarea {
        _behavior: expression(
                (function(el) {
                        if(typeof(behavior_onFocusIn) == 'undefined') {
                                behavior_onFocusIn = function() {
                                        this.className += ' target-focus';
                                };
                                behavior_onFocusOut = function() {
                                        this.className = this.className.replace(/target-focus/, '');
                                };
                        }
                        el.runtimeStyle.behavior = 'none';
                        el.onfocusin  = behavior_onFocusIn;
                        el.onfocusout = behavior_onFocusOut;
                })(this));
}

.target-focus {
        background-color:#FDFDEB;
}


