﻿/*
 * --- バリデーション ---
 */

 label.error {
    color: #da4453;
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 0;
  }
  
 label.error:before {
    content: '';
    font-family: 'LineAwesome';
    font-size: 90%;
    margin-right: 3px;
  }
 /*エラーメッセージがテキストボックス等の下に表示されない場合に追加する*/
 .add-block {
    display: block; 
  }

  /*問い合わせ画面のテキストエリア用*/
  .doc-contact .section-contact textarea ~ label.error{
    position: relative;
    top: -1em;
}