@charset "UTF-8";
body {
    font-size: 11px;
    max-width: 100%;
    text-align: left;
}

h1 {
  padding: 0.5em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #eaf3ff;/*背景色*/
  border-bottom: solid 3px #516ab6;/*下線*/
}

h2 {
  position: relative;
  padding: 5px 5px 5px 42px;
  background: #ffaf58;
  font-size: 20px;
  color: #fff;
  margin-left: -33px;
  line-height: 1.3;
  z-index:-1;
}

h2::before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px #fff;
  border-bottom: solid 79px transparent;
  z-index:-2
}

table {
    table-layout: fixed;
    word-break: break-all;
}

th {
    text-align: center;
}

table, th, td {
    border: 1px solid black;
}

button {
    margin: 4px;
}

.hidden {
    display: none;
}

.btn-flat-logo {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 1.0em 2.0em;
  text-decoration: none;
  color: #FFF;
  background: #00bcd4;
  transition: .4s;
}

.btn-flat-logo:hover {
  background: #1ec7bb;
}