@charset "UTF-8";

/*************************************************
【忍者式メールフォーム自作CSS】
自作CSSを使用するには、HTMLとCSSの知識が必須です。
HTMLやCSSについては参考文献などを参照してください。
*************************************************/

/*メールフォーム全体を囲っているタグのid*/
#short_message_top {
width: 100%; 
}

/*メールフォームのパーツや送信ボタンを囲っているタグのclass（タイトル、説明文以外）*/
#short_message_top .main {
}

/*メールフォームのタイトルを囲っているタグのclass*/
#short_message_top .title{

}

/*メールフォームの説明文を囲っているタグのclass*/
#short_message_top .explain {

}

/*『textarea』パーツの表示名と入力項目を囲っているタグのclass*/
#short_message_top .textarea_top {
}

/*『textarea』パーツの表示名を囲っているタグのclass（[ 一言メッセージ ]の部分）*/
#short_message_top .textarea_left{
font-size: 0.6em; 

}

/*『textarea』パーツの入力項目を囲っているタグのclass*/
#short_message_top .textarea_right {
float: right; 
}

/*『textarea』パーツの入力項目のclass（inputなどの部分）*/
#short_message_top .textarea_parts {
width: 100%; 
height: 5em; 
}

/*メールフォームの送信ボタンを囲っているタグのclass*/
#short_message_top .submit {
float: right; 
}

/*メールフォームの送信ボタンのclass*/
#short_message_top .submit_button {
font-size:10pt;
}

/*エラーメッセージを囲っているタグのclass*/
#short_message_top .error {

}

/*エラーメッセージのリトライボタンを囲っているタグのclass*/
#short_message_top .error_submit {

}

/*エラーメッセージのリトライボタンのclass*/
#short_message_top .error_submit_button {

}

/*送信完了メッセージを囲っているタグのclass*/
#short_message_top .result {

}

/*送信完了メッセージの戻るボタンを囲っているタグのclass*/
#short_message_top .result_submit {

}

/*送信完了メッセージの戻るボタンのclass*/
#short_message_top .result_submit_button {

}
