@charset "UTF-8";

/** General Style Info **/

*{
	margin : 0;
	padding : 0;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height: 1.6;
	letter-spacing: 0em;
	color: #595757;
	background-color: #fff;
}
h1 {
	font-size: 1em;
	line-height: 1;
	font-weight: normal;
}
img {
	border: none;
}
a img{
	border: none;
}

/** Layout **/

header {
	width: 96%;
	margin: 10vh auto 0;
	text-align: center;
	font-size: 0;
}
header img {
	width: 100%;
	max-width: 512px;
	animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  from {
	  opacity: 0;
  }
  to {
	  opacity: 1;
  }
}

footer {
	text-align: center;
	font-size: 0.6em;
	padding-top: 1em;
	clear: both;
	border-top: 1px solid #595757;
}