@charset "utf-8";

/** エラーダイアログ **/
#error-content{
	display: none;
	width:30%;
	margin:1.5em auto 0;
	z-index:9999;
	position: fixed;
}
.error_back{
	padding: 3%;
	width: fit-content;
	margin: 0 auto;
	background-color: #2020208c;
	border-radius: 8px;
}
.error_box{
	display: inline-block;
	border: 2px solid #ff0014;
	text-align: center;
	padding-bottom: 3%;
	background:#fff;
}
#error-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba( 0,0,0, 0.75 );
}
#error_title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #fff;
	border-bottom: solid 1px #ff0014;
	cursor: default;
	padding: 0px;
	margin: 0px;
	background:#ff0014;
}
#error-body {
	background: url(../img/alert.png) no-repeat top center;
	margin : 20px 0 0;
}
#error-message {
	padding:30px 48px 20px;
	min-height:50px;
}
#error-button {
	text-align: center;
	margin: 5px;
}
#error-button button {
	width:80%;
	border:solid 1px;
}