@charset "UTF-8";
/* @import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css); */

/* https://fonts.google.com/earlyaccess#Noto+Sans+JP */
/* @import url(//fonts.googleapis.com/earlyaccess/notosansjp.css); */

/*==================
初期化の設定
====================*/
* {
	box-sizing:border-box;
}

html {
	/*フォントサイズを1rem10pxとして使えるために*/
/*	font-size:62.5%;*/
}


body{
	font-size:14px;
	line-height:1.7rem;
	font-family: 'Noto Serif JP', serif;
	/* font-family: "Hannari"; */
	/* font-family: "Sawarabi Mincho";  */
	/* font-family: "Kokoro", sans-serif; */
	/* font-family: "Noto Sans JP", sans-serif; */
/*	font-family: 'Dosis', sans-serif;*/
/*	font-family: 'Handlee', cursive;*/
	color:rgb(39, 35, 35);
	background:#fff;
}

a {
	text-decoration:none;
}

a:link,
a:visited,
a:active{
	color:#333;
}

a:hover{
	color:#333;
}

/*リスト要素の初期値をリセット*/
ul,ol{
	list-style: none;
	padding-left: 0;
}

/*clearfixの設定*/
.clearfix:after{
	display: block;/*block要素にする*/
	content: "";
	clear: both;
}

