@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700');

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, img, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 1.7;
  font-weight: 300;
  color: #333;
}

/*
ベースフォント
*/
body {
  font-family: 'Noto Sans JP',sans-serif;
  background: #fff;
}

/*
ベースフォントサイズ
*/
body {
  font-size: 16px;
}
/********* sp *********/
@media only screen and (max-width: 768px) {
body { font-size: 13px;
  }
}

/*
高さ指定
*/
html, body { height: 100%; }
/********* sp *********/
@media only screen and (max-width: 768px) {
html, body { height: 100vh;
  }
}

ul li { list-style-type:none; }

img {
 width: 100%;
}

table {
 collapse: separate;
 border-spacing: 0;
}

a {
  text-decoration: underline;
  color: #023894;
}
a:hover { text-decoration: none; }
a:hover img { text-decoration: none; }


