@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.2em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3.8125rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 3rem;
}
ul li:before {
    content: "\2022";
    margin: 0 0 0 -1.5rem;
    float: left;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    position: absolute;
    top: 6.5rem;
}
.pdl {
    padding: 0 0 3rem 9.5rem;
}
.pdl p {
    text-align: left;
}
footer {
    display: flex;
    justify-content: flex-end;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    article br,.hide_m{
        display: none;
    }
    .right,.left{
        width: 100%;
    }
}
@media only screen and (max-width: 780px) {
    header {
        display: flex;
        position: static;
        justify-content: center;
        padding-bottom: 2rem;
    }
    .pdl {
        padding: 0 0 2rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}