@charset "UTF-8";

/* common */
/* .cmn_btn { */
/*	background-image: url(../../image/common/button1.png); */
/*	background-size: 100% 100%; */
/*	background-repeat: no-repeat; */
/*	border: none; */
/*	display: inline-block; */
/*	color: white; */
/*	padding-left: 40px; */
/*	padding-right: 40px; */
/* } */

/* .cmn_btn:disabled { */
/*	background-image: url(../../image/common/button3.png) !important; */
/*	background-size: 100% 100%; */
/*	background-repeat: no-repeat; */
/*	border: none; */
/*	display: inline-block; */
/*	color: white; */
/* } */

#login_com_btn {
	width: 80%;
	max-width: 300px;
	height: 3rem;
	padding: 0;
}

/* .cmn_btn:hover { */
/*	background-image: url(../../image/common/button2.png); */
/* } */

button, input[type="submit"], input[type="button"] {
	background-color: var(--ftc-color);
	border: none;
	border-radius: 3px;
	display: inline-block;
	color: white;
	padding: 0.375rem 0.75rem;
}

button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	background-color: var(--ftc-hover-color);
}

button:focus, input[type="submit"]:focus, input[type="button"]:focus{
	outline: 0;
}

button:disabled, input[type="submit"]:disabled, input[type="button"]:disabled {
	background-color: var(--button-disable-color);
}

/* 閉じるボタン */
button[type="button"].close {
	text-shadow: none;
	background-color: var(--ftc-color);
	color: white;
	opacity: 1;
	border-radius: 0;
	border-top-right-radius: .2rem;
	position: absolute;
	right: 1rem;
}

button[type="button"].close:focus {
	outline: 0;
}

/* login */
.login_form {
	/*	background-image: url(../../image/login/bg2.png); */
	/*	border: 2px solid #CCCCCC; */
	/*	background-size: 100% auto; */
	/*	background-repeat: no-repeat; */
	width: 475px;
	height: 416px;
	margin-top: 100px;
	padding-top: 60px;
}

.login_input {
	width: 80%;
	max-width: 300px;
	height: 3rem;
	font-size: 16px;
	margin-bottom: 10px;
}

.login_logo {
	padding-bottom: 2rem;
	max-width: 100%
}

/* ローディングのインジケーター設定 */
#loading {
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: 0.8;
}

#loading .loadingMsg {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-top: 140px;
	background: url("[LoadingイメージのURL]") center center no-repeat;
}

/* ローディング位置調整 */
.spinner-border {
	margin-top: 330px;
}

.nowMsg {
	margin-top: 330px;
	display: inline-block;
}

.numRunMsg {
	display: inline-block;
}

.discontinuedButton {
	display: inline-block;
}

/* ドロップダウンの色変更 */
.itemMasterChoice {
	color: #212529 !important;
	padding-left: 24px !important;
}

/* 入力必須項目のテーブルヘッダ色変更 */
.table .thead-light .input-required {
	background-color: #FFFF33 !important;
	color: black !important;
}

/* カメラボタン */
.camera_btn {
	height: 30px;
	width: 30px;
	margin-left: 0.25rem;
}

.camera_btn:hover, .camera_btn.active {
	fill: gray;
	cursor: pointer;
}

.modalLocationTable {
	/*	margin-left:0.1%; */
	/*	margin-right:0.1%; */
	margin-top: 2px;
	margin-bottom: 2px;
	float: left;
	min-width: 120px;
	text-align: left;
}

/* スマホ画面になったとき */
@media screen and (max-width: 991px) {
	.login_form {
		max-width: 90%;
	}
	.login_logo {
		max-width: 90%
	}
	.header_logo {
		max-width: 260px;
	}
}