/* メールフォーム全体を囲うidタグ */
#contents_wrapper {
    width : 100% ;
}

/* 入力フォームを囲うclassタグ */
.setting_section {
    margin-bottom : 25px ;
}

/* ボタンを囲うclassタグ */
.button_box {
    clear : both ;
    padding : 8px ;
    text-align : center ;
}

/* 赤文字を表示するためのclassタグ */
.red_txt {
    color: #8C3F63;
font-size: 12px;
magin: 0px;
}

/* 左詰の文字を表示するためのclassタグ */
.left_txt {
    text-align : left;
    
}

/* 説明文を表示するためのidタグ */
#txt_explain {
    color: #000000;
}

/* コンテンツ内の[p]タグ */
#contents p {
    margin-bottom : 10px ;
    text-align : left ;
}

/* コンテンツ内の内部タグ */
#contents .inner {
    padding : 0 ;
}

/* コンテンツ内のフォームに使用する[table]タグ */
#contents table {
    width : 100% ;
    border-collapse : collapse ;
    border-left : 1px solid #b3b3b3 ;
    border-top : 1px solid #b3b3b3 ;
    border-right : none ; 
    border-bottom : none ;
    padding: 20px ;
margin-bottom :0px ;
}

/* コンテンツ内のフォームに使用する[th]タグ */
#contents table th {
    border-right : 1px solid #b3b3b3 ;
    border-bottom : 1px solid #b3b3b3 ;
    border-top : none ; 
    border-left : none ;
    background :#8C3F63;
    color: #ffffff;
    padding : 15px ;
    width : 25% ;
    margin-bottom : 25px ;
}

/* コンテンツ内のフォームに使用する[td]タグ */
#contents table td {
    border-right : 1px solid #b3b3b3 ;
    border-bottom : 1px solid #b3b3b3 ;
    border-top : none ; 
    border-left : none ;
    padding : 15px ;
    text-align : left ;
}


/* フォーム内の入力欄 */
#main_table input {
    width : 75% ;
}

/* フォーム内の入力欄 */
#main_table textarea {
    width : 100% ;
}