/* ******************************************************************
 *	File name		: base.css
 *	Summary			: css base
 * ******************************************************************
 */

/* -----------------------------------------------------------------
   base
----------------------------------------------------------------- */
body{
	position:relative;
	width:100%;
	height:100%;
	line-height:145%;
	color:#222;
}
#wrapper{
	position:relative;
	width:100%;
	height:100%;
	border:1px solid rgba(0,0,255,0);
}
*{
	font-family: 'Noto Serif JP', serif;
}
/* -----------------------------------------------------------------
   header
----------------------------------------------------------------- */
header{
	position:relative;
	width:100%;
	height:100%;
	}
	header h1{
		display:flex;
		display:-webkit-flex;
		justify-content: center;
		align-items: center;
		width:100%;
		height:100%;
		margin-top:-90px;
		font-weight:bold;
		font-size:1.2rem;
	}
	header h1 img{
		position:relative;
}
/* -----------------------------------------------------------------
   main
----------------------------------------------------------------- */

main{
	position:absolute;
	top:50%;
	left:0px;
	width:100%;
	text-align:center;
	color:#000;
}

main p{
	margin-bottom:10px;
}

/* -----------------------------------------------------------------
   footer
----------------------------------------------------------------- */
footer{
	clear:both;
	position:absolute;
	bottom:0px;
	width:100%;
	text-align:center;
	color:#000;
	z-index:20;
	}
	footer #copyright{
		padding:15px 20px;
		text-align:center;
		font-size:0.75em;
}

/* --- responsive --- */

@media screen and (max-width:980px){
}














