@charset "utf-8";

/*----------------------------------------------
	html
---------------------------------------------*/
html { font-size: 62.5%; }
/*↑ 10pxが1remとなる様に調整*/

/*----------------------------------------------
	body
---------------------------------------------*/
body {
	display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 1200px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  /*  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', arial, helvetica, sans-serif;*/
  color: #313131;
  line-height: 1.6;
}

/*
body.inner{
	background: #006CBA;
}
*/

/*----------------------------------------------
	a
---------------------------------------------*/
a { color:#313131; }
a:hover,
a:active,
a:focus { color:#006CBA; }

/*----------------------------------------------
	table
---------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------------------------------------
	h1,h2,h3,h4,h5,h6
---------------------------------------------*/
h1,h2,h3,h4,h5,h6{ margin: 0; }

/*----------------------------------------------
	img
---------------------------------------------*/
img { vertical-align: bottom; }

/*----------------------------------------------
	*
---------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
