@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
.justify {
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.097em;
    line-height: 1.2em;
}
h1 span {
    font-size: 0.8em;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    text-decoration: underline;
    margin-bottom: 0.25rem;
}
h3 {
    font-size: 1.063em;
    line-height: 1.3em;
}
h3 span {
    font-weight: normal;
    display: block;
    line-height: 1.3em;
}
h4 {
    font-size: 1.125em;
    line-height: 1.3em;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
h4 span {
    font-weight: normal;
}
h1, h4, .center {
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.blue {
    color: #095FAA;
    font-weight: bold;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.5rem;
}
.logo {
    padding: 0.625rem 5.5rem 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
article {
    padding: 2.5rem 2.5rem 1rem;
}
footer {
    padding: 0 2.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer p {
    font-size: 0.625em;
    line-height: 1.6em;
    padding: 0;
}
.pdl {
    padding-left: 2.5rem;
}
.big {
    font-size: 1.18em;
    line-height: 1.6em;
}
.qr {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
figure {
    display: flex;
    align-items: center;
    gap: 2rem;
}
span {
    display: inline-block;
}
.red {
    color: #EF4735;
}
@media only screen and (max-width: 849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .justify {
        text-align: left;
    }
    p, li {
        hyphens: auto;
    }
    .hide_m {
        display: none;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
    }
    .pdl {
        padding: 0;
    }
}
@media only screen and (max-width: 780px) {
    .logo {
        padding: 0.5rem 2rem;
    }
    article {
        padding: 2rem 2rem 1rem;
    }
    footer {
        padding: 0 2rem 1rem;
    }
}
@media only screen and (max-width: 530px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    li {
        padding-left: 1.5rem;
    }
    figure {
        justify-content: center;
        gap: 1rem 2rem;
        flex-wrap: wrap;
    }
    .qr {
        flex-direction: column;
    }
    .qr p, h3 {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    .logo, article, footer {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
    ul li::before {
        margin-left: -1rem;
    }
}