* {
  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, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
}

/*
ベースフォント
*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

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

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

ul li { list-style-type:none; font-weight:600; }

img {
  width: 100%;
  vertical-align: top;
}

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

strong{ font-weight: 700; }

a {
  /*color: #00acda;*/
  /*color: #1256D3;*/
  color: #1489ff;
  /*color: #000099;*/
  text-decoration: none;
}
/* hover */
/********* pc *********/
@media only screen and (min-width: 769px) {
a:hover {
  /*color: #00acda;*/
  /*color: #1256D3;*/
  color: #1489ff;
  /*color: #000099;*/
  text-decoration: underline;
 }
}
