/* CSS Document */

#pagePath{
	display: none;
	}

#notFound{}
	#notFound .wrap{
		display: flex;
		align-items: center;
		flex-direction: column;
		}

.headline{
	color: #999;
	text-align: center;
	}
	.headline:before{
		content: "(>_<)";
		display: block;
		margin-bottom: 0.2em;
		color: #999;
		font-family: Lato, sans-serif;
		font-size: 3em;
		font-weight: 300;
		line-height: 1em;
		}

.caution{
	margin: auto;
	padding:1em;
	background:#f2f2f2;
	border:1px solid #ccc;
	font-size: 0.8em;
	line-height: 1.4em;
	}



/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
#notFound{
	text-align: center;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


