/* 共通画面CSS */
/*
	CSSプロパティ分類
	1：表示・配置
	2：サイズ・余白
	3：フォント・テキスト
	4：背景・ボーダー
*/
/* 共通 >> */
.cmn-msg-area {
	/* 1 */
	display: block;
	position: relative;
	/* 2 */
	margin: 5% auto;
	padding: 10px 0;
	width: 400px;
	/* 3 */
	text-align: center;
	/* 4 */
	background: #feefea;
	border: #ffcebd solid 3px;
}

.cmn-btn-area {
	/* 2 */
	margin: 3% 0;
	/* 3 */
	text-align: center;
}

.cmn-btn {
	/* 1 */
	display: inline-block;
	/* 2 */
	margin: 3px;
	width: 15%;
}

.cmn-table {
	/* 2 */
	width: 100%;
}

.cmn-table-data {
	/* 2 */
	padding: 6px;
	/* 3 */
	text-align: left;
	/* 4 */
	background: #fff;
	border: #b9b9b9 solid 1px;
}

.cmn-table-input {
	/* 2 */
	width: 90%;
}

.cmn-box-paint {
	/* 2 */
	padding: 5px;
	/* 4 */
	background: #fff;
	border: #b9b9b9 solid 1px;
}

.cmn-note {
	/* 3 */
	font-weight: bold;
}

/* 閉局中(Closed) >> */
.msg-closed {
	/* 3 */
	font-weight: bold;
	line-height: 3;
}

.closed-time {
	/* 3 */
	font-weight: bold;
}
/* 閉局中(Closed) << */
/* システムエラー >> */
.cmn-err-area {
	/* 4 */
	background: #e9f6ff;
	border: #f00 solid 3px;
}

.msg-error {
	/* 3 */
	font-weight: bold;
}
/* システムエラー << */
/* 終了 >> */
.cmn-logout {
	/* 2 */
	margin: 0 0 1.0em 0;
	/* 3 */
	color: red;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	/* 4 */
	background: #fff;
}

.cmn-logout-msg {
	/* 1 */
	display: block;
	/* 2 */
	margin: 0 auto;
	padding: 15px 0;
	width: 80%;
	/* 3 */
	color: black;
	font-size: 1.0em;
	font-weight: bold;
	text-align: center;
	/* 4 */
	background: #f1f1f1;
	border: #cbcbcb solid 1px;
}
/* 終了 << */
/* ログイン >> */
.login-err-msg {
	/* 1 */
	display: block;
	/* 2 */
	width: 100%;
	/* 3 */
	color: red;
	font-weight: bold;
}

.login-note {
	/* 1 */
	list-style: disc outside;
	/* 2 */
	margin: 0 0 0 20px;
}
/* ログイン << */
/* 共通画面 << */

