@charset "UTF-8";

/*=======================================
401、403、404、500エラーページCSS
=======================================*/
html {
	position: relative;
	min-height: 100%;
}
body {
	margin: 0 0 200px 0;
	padding: 0;
	font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',メイリオ,Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;	/*Noto Sans JPはGoogleフォント*/
	font-weight: 400;
	color: #333;
	-webkit-text-size-adjust: 100%;
}
#error {
	width: 100%;
	height: 100%;
	background: url(../img/common/pic-bgsec01.jpg) 50% 50%;
	background-size: 480px auto;
	background-attachment: fixed;
	text-align: center;
}
#error img {
	width: 200px;
	height: 45px;
	margin: 50px auto;
	border: none;
	vertical-align: bottom;
}
#error p {
	margin: 0 0 20px 0;
	font-size: 1em;
	line-height: 1.8em;
}
#error p em, #error p span {
	font-weight: 900;
}
#error p em {
	font-size: 5em;
	color: #e66600;
	font-style: normal;
	line-height: 1em;
	display: block;
}
#error p span {
	margin: 0 0 20px 0;
	font-size: 1.5em;
	color: #e66600;
	display: block;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 0.9em;
	}
	#error p em {
		font-size: 3em;
	}
	#error p span {
		font-size: 1.2em;
	}
}
#error a {
	margin: 30px 0 0 0;
	padding: 8px 40px;
	background: #fff;
	border: solid 1px #999;
	border-radius: 5px;
	color: #05c;
	text-decoration: none;
	display: inline-block;
}
#error a:hover {
	background: #eee;
	border: solid 1px #666;
	color: #05c;
	text-decoration: none;
}
#error small {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 92%;
	max-width: 800px;
	margin: 100px auto 30px auto;
	padding: 30px 0;
	border-top: solid 1px rgba(0,0,0,0.3);
	display: block;
}
#error small::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #c00;
	border-top: solid 1px #fff;
}
