@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 2px #0066A6;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 1rem 0;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
}
h1 strong {
    color: #0066A6;
    font-size: 1.25em;
}
header p {
    font-size: 0.9375em;
    line-height: 1.3;
}
article {
    display: flex;
    justify-content: space-between;
}
article div {
    width: 50%;
}
figure {
    position: absolute;
    top: 5rem;
    right: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
footer {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    figure {
        justify-content: center;
        position: static;
        padding-bottom: 1rem;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    article {
        flex-direction: column;
    }
    article div {
        width: auto;
    }
}
@media only screen and (max-width: 480px) {
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }
}