@charset "utf-8";

:root{
  --col0: #060064;
  --col1: #0037ff;
  --grad: linear-gradient(45deg, var(--col0), var(--col1));
}


body{
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

#header{
  width: 100%;
  height: 50px;
  background: var(--grad);
}
#header_logo{
  width: 140px;
  height: 50px;
  background-image: url('/logo_white.gif');
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: center;
}

h2, h3{
  width: fit-content;
  background: var(--grad);
  background-origin: border-box;
  background-repeat: no-repeat;
  background-position: bottom;
}

h2{
  margin-top: 2em;
  padding-left: 1em;
  background-size: 100% 5px;
}

h2::before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--grad);
  background-origin: content_box;
  background-position: bottom;
  clip-path: polygon(50% 0%, 100% 0%, 100% 50%, 0% 50%, 0% 100%, 50% 100%);
//  clip-path: polygon(50% 0%, 0% 0%, 0% 50%, 100% 50%, 100% 100%, 50% 100%);
  transform: translate(-21px, 27px);
}

h3{
  margin: 1.5em 0 1em 0;
  background-size: 100% 2px;
}

ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li{
  border: none;
  padding: 0;
  margin: 0;
  transform: translate(1em, 0);
}
ul li::before{
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: black;
  transform: translate(-11px, 10px);
}
ul p{
  margin: 0.2em 0 1em 0;
}

table, thead, tbody, tr, th, td{
  border-collapse: collapse;
}
table{
  border: 4px solid black;
  margin-left: 1em;
}
thead{
  border-bottom: 3px solid black;
}
th{
  border-top: 1px solid black;
  border-right: 2px solid black;
  border-bottom: 1px solid black;
}
td{
  border: 1px solid black;
}
.table_cat{
  border: 2px solid black;
}
