    /* エラーメッセージのスタイル */
    label.error {
    	display:block;
        color: red;
        font-size: 12px;
        margin-top: 30px;
        /* エラーメッセージの枠線を非表示 */
        border: none;
    }

    /* エラーのある入力フィールドに枠を追加 */
    input.error {
        border-bottom: 2px solid #f30;
        background:#fdd;
       }