@charset "utf-8";
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot'); 
  src: local(''),
       url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), 
       url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg'); 
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot'); 
  src: local(''),
       url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 597px;
    margin: 1rem auto;
    border: solid 2px #A2BA40;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
.center{
    text-align: center;
}
h1,h2,strong{
    font-weight: 700;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
p span.color,ul li:before{
    color: #A2BA40;
}
h1 {
    margin: 0 -1rem 1rem;
    font-size: 1.692em;
    line-height: 1.1;
    background: #CCCCCC;
    padding: 1rem;
}
h1 span{
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "■";
    float: left;
    margin: -3px 0 0 -1rem;
}
li.lp{
    letter-spacing: -0.2px;
}
.flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.flex .right{
    width: 41%;
}
.flex div{
    width: 58%;
}
.mt{
    margin-top: 1.3rem;
}
article, footer{
    padding: 0 1rem;
}
@media only screen and (max-width: 596px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    p{
        text-align: left;
    }
    h1{
        text-align: center;
    }
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100% !important;
    }
    .mt{
        margin-top: -0.5rem;
    }
    .hide_m{
        display: none;
    }
}