/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html, body	{
	padding: 0px;
	margin: 0px;
	height: 100%;
	color: #333;
}

body	{
	margin: 0;
	padding: 0;
}

form {
	display: inline;
}

input[type=text], input[type=password], select, textarea {
	padding: 5px;
	border: 1px solid #ccc;
}

input[type=text], input[type=password], select {
	height: 30px;
}

select {
	background: white;
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.btn-or {
	width: 150px;
	padding: 10px 0;
	border-radius: 4px;
	background: #707070;
	border: 1px solid #707070;
	color: white;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	line-height: 1;
}

.btn-or.rev {
	background: white;
	color: #707070;
}

.btn-or.red {
	background: red;
	border: 1px solid red;
}

.btn-or.red.rev {
	background: white;
	color: red;
}

.btn-or.blue {
	background: #00A9E0;
	border: 1px solid #00A9E0;
}

.btn-or.blue.rev {
	background: white;
	color: #00A9E0;
}

.btn-or.green {
	background: #3da8b8;
	border: 1px solid #3da8b8;
}

.btn-or.green.rev {
	background: white;
	color: #3da8b8;
}
/*------------------------------------------------------------------------------
	必須・任意
------------------------------------------------------------------------------*/
.require {
	position: relative;
}

.require::after {
	content: '必須';
	right: 0;
	padding: 3px 5px;
	background: red;
	color: white;
	font-size: 12px;
	display: inline-block;
	position: absolute;
}

.any {
	position: relative;
}

.any::after {
	content: '任意';
	right: 0;
	padding: 3px 5px;
	background: #707070;
	color: white;
	font-size: 12px;
	display: inline-block;
	position: absolute;
}
/*------------------------------------------------------------------------------
	行数制限
------------------------------------------------------------------------------*/
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	その他
------------------------------------------------------------------------------*/
.input-guide {
	margin-top: 5px;
	color: #707070;
	font-size: 12px;
}
/*------------------------------------------------------------------------------
	JQuery UI
------------------------------------------------------------------------------*/
.ui-datepicker-header {
	background: #707070;
	border: 0;
}

.ui-dialog-titlebar {
	background: #707070;
	border: 0;
}
/*------------------------------------------------------------------------------
	画面説明
------------------------------------------------------------------------------*/
.vm-guide {
    padding: 20px 20px 20px 50px;
    background: white;
    border: 1px solid #E0E0E0;
	border-radius: 5px;
    line-height: 2;   
	position: relative;
}

.vm-guide > i {
	left: 20px;
	top: 24px;	
	color: #3da8b8;
	font-size: 20px;
	position: absolute;
}