@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 0.8125em/1.5em Georgia, Cambria, "Time New Roman", serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #698EA8;
    background: #fff;
    overflow: hidden;
    padding: 2rem 3rem 3rem;
}
#wrapper:after {
    content: "";
    height: 2rem;
    background: #D21D42;
    border-top-right-radius: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 3rem;
}
p {
    padding-bottom: 1rem;
}
: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: 1.5em;
    line-height: 1.3;
    color: #D21E42;
    font-weight: normal;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin: 1rem 0 0.5rem;
    color: #698EA8;
    font-weight: normal;
}
h2 + p {
    padding: 0;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    line-height: 1.3;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
h1, h2, footer p {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
    align-items: flex-end;
}
header {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 2rem;
    overflow: hidden;
    display: flex;
    width: 49%;
}
article {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
article > div {
    width: 49%;
}
.qrc {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: flex-end;
}
.qrc p {
    padding: 0;
    flex: 1;
    line-height: 1.3;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
}
footer p {
    padding: 0;
}
@media only screen and (max-width:929px) {
    #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;
    }
    .hide_m, #wrapper:after {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        position: static;
        width: auto;
        justify-content: center;
        border-radius: 0;
        margin-bottom: 2rem;
    }
    article {
        flex-direction: column;
    }
    article > div {
        width: 100%;
    }
}
@media only screen and (max-width:650px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .qrc {
        align-items: flex-start;
    }
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}