/*-----------------------
  リアルタイムバリデーション
------------------------*/
.valudatiomMessageArea {
    position: absolute;
    z-index: 99;
    margin-top: 10px;
}

.validationMessage {
    color: #af0000;
    font-size: 70%;
    padding: 3px;
    background-color: #FDF7F2;
    border: 1px solid #AF0000;
    opacity: 0.95;
    margin-left: -10px;
    margin-top: -61px;
    margin-top: -61px\9; /* IE8以降 */
}

.triangle {
    width: 0;
    height: 0;
    left: 50%;
    border-bottom: 8px solid transparent; /*下向き三角*/
    border-right: 8px solid transparent; /*左向き三角*/
    border-left: 8px solid transparent; /*右向き三角*/
    border-top: 10px solid #AF0000; /*上向き三角*/
    opacity: 1.0;
    margin-top: -20px;
}

/*-----------------------
  全角
------------------------*/
textarea.fullwidth, input.fullwidth {
    ime-mode: active;
}

/*-----------------------
  数字
------------------------*/
input.digit, input.alphaNum2 {
    ime-mode: inactive;
}

/*-----------------------
  email
------------------------*/
.email {
    -ms-ime-mode: inactive;
}

/*-----------------------------
 検索popUpエラーメッセージ
-----------------------------*/
.searchAlert {
	border-radius: 4px;
	box-shadow: 0 1px 4px gray;
	padding: 10px;
	margin-top: -15px;
	position: absolute;
	z-index: 1002;
	color: #222222;
	font-size: 120%;
	background-color: #ffffff;
	border: 3px solid #777777;
	font-size: 13px;
	line-height: 1.5em;
}