@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.wrapper {
  max-width: 1140px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000000;
  text-decoration: underline;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  line-height: 1.5rem;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  background-color: #2fa0f6;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}

.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}

.button span {
  display: none;
}

@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}

.button--icon {
  min-width: initial;
  padding: 0.5rem;
}


/*--------------------------------------------------------------------------------*/

.site-box {
  width: 100%;
  max-width: 700px;
  margin: 5rem auto;
}

h1.h1-title {
  margin: 2rem 0;
}

table{
  width: 100%;
}

table tr {

}

table th{
  position: relative;
  text-align: left;
  width: 25%;
}

table th:after{
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #333;
  position: absolute;
  top:calc(50% - 1px);
  right:30px;
}

table td{
  text-align: left;
  width: 75%;
  padding: 0.5rem 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  display: flex;
  align-items: baseline;
}

li::before {
  content: "●";
  color: #000;
  margin: 0 3px 0 0;
}

small {
  margin: 2rem 0;
  display: block;
}

@media (max-width: 600px) {
  .site-box {
    padding: 0 1rem;
  }
  table th:after {
    display: none;
  }
}
