﻿/** エラー項目 */
form .mf-error:input {
	border: 1px solid red;
}
form .mf-error:focus {
	outline: none;
}

/** エラー一覧(div) */
form .mf-form-error {
	color: #d32f2f;
}

/** エラーツールチップ */
.mf-error-tip {
	display: none;
	position: absolute;
	padding: 6px 10px;
	border-radius: 2px;
	text-align: center;
	color: white;
	background: #d32f2f;
	font-size: 13px;
	cursor: default;
	z-index: 100;
}
.mf-error-tip:after {
	content: "";
	position: absolute;
	left: 48%;
	bottom: -8px;
	border-width: 8px 5px 0;
	border-style: solid;
	border-color: #d32f2f transparent;
	display: block;
}

/** ファイルボタン用 */
.mf-file-wrap {
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: top
}
.mf-file-wrap input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 100px;
	opacity: 0;
	cursor: pointer;
}

.mf-etc-input {
	margin-top: 10px !important;
}

/** その他 */
.btmwrap {
	text-align: center !important;
}
.btmwrap .btm {
	border: none;
	cursor: pointer;
}