@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	height: 100%;
	color: #333;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #f2f2f2;
	background-image: url(../images/status_bg.jpg);
	background-size: cover;
}
body, div, p, h1, h2, h3, h4, h5, h6 {
	border: none;
	list-style-type: none;
}

#status_head {
	height: 20vw;
	max-height: 200px;
}
#status_head div {
	margin: auto;
	width: 100%;
	max-width: 1000px;
	font-size: 36px;
	line-height: 60px;
	color: #ddd;
}
#status_head svg {
	margin-top: 40px;
	width: 30%;
}

#status_body {
	color: #fff;
	background: rgba(0,0,0,0.7);
}
.status_body_inner {
	margin: auto;
	padding: 50px 0 20px;
	width: 100%;
	max-width: 1000px;
}
.status_body_inner > span {
	display: block;
}
.sCode {
	font-size: 2.8em;
	font-weight: 600;
	line-height: 1;
}
.sName {
	font-size: 1.4em;
}
.sComment {
	margin-top: 30px;
	margin-bottom: 50px;
}

#status_body a {
	display: block;
	color: #fff;
	text-align: right;
	text-decoration: none;
	transition: 0.3s;
}
#status_body a svg {
	margin-right: 0.2em;
	height: 1em;
}
#status_body a:hover {
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

/* Media Queries */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

@media screen and (max-width: 1020px) {
	#status_head div {
		padding-left: 5%;
	}
	#status_head svg {
		width: 40%;
	}
	.status_body_inner {
		width: 90%;
	}
}

@media screen and (max-width: 640px) {
	#status_head {
		height: auto;
	}
}

@media screen and (max-width: 360px) {
	#status_head div {
		margin: 0;
		text-align: center;
	}
	#status_head svg {
		width: 80%;
	}
}