@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*
Last Update 2017-06-12

サイトの基本要素に対するスタイルシートの指定です。
以下の箇所以外、変更は行わないでください。

・notosansを使わない場合は、@importは消す
・bodyの文字色
・リンク色

もしここで指定されている値で、上書きが必要なものに関しては、ここの内容を
変更せずに、各ページごとのスタイルシートで上書きしてください。

*/

/* font-color
--------------------------------------------------------------------*/

body {
	background:#fff;
	color:#595757;
	font-family: 'Noto Sans Japanese', sans-serif; 
	font-weight:300;	
}


/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1em;
	font-weight:normal;
}

h1 strong,
h1 em,
h2 strong,
h2 em,
h3 strong,
h3 em,
h4 strong,
h4 em,
h5 strong,
h5 em,
h6 strong,
h6 em {
	font-weight: inherit;
	_font-weight: expression(this.parentNode.currentStyle.fontWeight);
	*font-weight: expression(this.parentNode.currentStyle.fontWeight);
}

/* normal block
--------------------------------------------------------------------*/

p {
	/*text-align: justify;
	text-justify: distribute;*/
}

/* anchor
--------------------------------------------------------------------*/

a:link {
	color:#494645;
	text-decoration:none;
	-moz-transition:all,.4s;
	-o-transition:all,.4s;
	-webkit-transition:all,.4s;
	transition:all,.4s
}

a:visited {
	color:#494645;
	text-decoration: none;
}

a:hover {
	color:#494645;
	text-decoration:underline;
}

a:active {
}


/* table
--------------------------------------------------------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}