@charset "utf-8";
* {
  font-family: "Noto Sans JP", sans-serif;
}
/*----------------------------------------------
	html
---------------------------------------------*/
html {
  font-size: 62.5%;
}
/*↑ 10pxが1remとなる様に調整*/
/*----------------------------------------------
	body
---------------------------------------------*/
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', arial, helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
}
/*----------------------------------------------
	a
---------------------------------------------*/
a {
  color: #333;
}
a:hover, a:active, a:focus {
  color: #ffa500;
}
/*----------------------------------------------
	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;
}