@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font-family: 'Titillium Web', Arial, sans-serif;
  font-size: 0.9375em;
  line-height: 1.3em;
}
h2, strong {
  font-weight: 600;
}
#wrapper {
  position: relative;
  max-width: 1000px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff url('bgb.jpg') bottom left no-repeat;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: -0.5rem 0 0;
  font-size: 1.8em;
  line-height: 1.1em;
  text-transform: uppercase;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-bottom: 1rem;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding: 0 0 0.5rem 1rem;
  text-align: justify;
}
li:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100%;
  border: 2px solid;
  float: left;
  margin: 6px 0 0 -1rem;
}
hr {
  border: 0;
  height: 3px;
  background: #000;
  margin: 1rem -2rem 2rem 0;
}
.ttl {
  text-align: right;
  color: #fff;
  position: absolute;
  top: 4.5rem;
  right: 2rem;
  font-size: 1.4em;
  line-height: 1.1;
}
.abs {
  text-align: right;
  font-size: 1.2em;
  line-height: 1.3;
  position: absolute;
  top: 25.5rem;
  right: 2rem;
}
section {
  display: flex;
  justify-content: space-between;
}
.left {
  width: 54%;
}
.right {
  width: 43%;
}
article {
  padding: 2rem;
}
footer {
  background: url('bg.jpg') top left no-repeat;
  width: 234px;
  height: 96px;
  position: absolute;
  bottom: 2rem;
  right: 0;
}
footer p {
  text-align: right;
  color: #fff;
  margin: 0 0 0.5rem auto;
  padding: 0.125rem 2rem 0.375rem 0;
}
@media only screen and (max-width: 999px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p, li {
    text-align: left;
  }
  .ttl {
    position: static;
    text-align: center;
    color: #000;
  }
  .abs {
    position: static;
    text-align: center;
  }
  section {
    flex-direction: column;
  }
  .left, .right {
    width: auto;
  }
  article {
    padding: 1rem;
  }
  footer {
    position: static;
    margin: 0 auto 1rem;
  }
  .hide_m {
    display: none;
  }
}