@charset "UTF-8";
/* CSS Document */

#not404 p:first-child {
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 1em;
}

#not404 p:last-child {
	margin-top: 1em;
}

/*lgサイズ1280pxより小さい場合に適用*/
@media only screen and (max-width: 1280px) {
}
/*mdサイズ1024pxより小さい場合に適用*/
@media only screen and (max-width: 1024px) {
}
/*smサイズ768pxより小さい場合に適用*/
@media only screen and (max-width: 768px) {
}
/*xsサイズ576pxより小さい場合に適用*/
@media only screen and (max-width: 576px) {
	#not404 p:first-child {
		font-size: 1em;
	}
}
