@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP|Noto+Sans+JP:500,700');
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap');

* {
  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: 500;
  line-height: 1.4;
  color: #000;
}

body {
  font-family: 'Noto Sans JP',sans-serif;
  background-color: #2a4073;
}

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

h1,h2,h3,h4,h5 {
  font-weight: bold;
  line-height: 1.4;
}

strong { font-weight: 700; }

/*
高さ指定
*/
html, body { height: 100%; }

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

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

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

a {
  color: #34A1EB;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

@media only screen and (min-width: 751px) {
  a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
}

