@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #695E58;
    font: 400 1.5em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 620px;
    margin: 1rem auto;
    border: solid 4px #89153D;
    background: #fff url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: text-top;
}
h1 {
    font-size: 1.625em;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    margin: -7rem 0 -3rem;
}
h1 small {
    text-transform: none;
    font-size: 0.75em;
    display: block;
    margin-top: 0.75rem;
}
h1 span {
    font-weight: 400;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h3 {
    font-size: 0.95em;
    line-height: 1;
    margin: -0.25rem 0 0.125rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}
article {
    padding: 0 1rem 1rem;
}
article > p {
    text-align: center;
    font-size: 0.875em;
    line-height: 1.3;
    color: #6C5218;
    margin: -3rem 9rem 16.75rem 0;
}
.font {
    display: flex;
    justify-content: flex-end;
}
.qrc {
    display: flex;
    gap: 1rem;
}
.qrc div {
    flex: 1;
}
.qrc p {
    font-size: 0.938rem;
    line-height: 1.2;
    font-weight: 600;
}
.qrc :is(h3, p) {
    color: #fff;
}
.social img {
    margin: 0 0.125rem 0.75rem 0;
}
footer p {
    padding: 1rem 1rem 0.75rem;
    background: #89153D;
    color: #fff;
    text-align: center;
    font-size: 1.25em;
    line-height: 1.3;
}
@media only screen and (max-width:619px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        width: auto;
        padding: 1rem;
        background: #89153D;
        margin: 0 0 1rem;
        transform: none;
        text-align: center;
    }
    header {
        padding: 1rem;
        justify-content: center;
    }
    :is(li, h1, h3, article > p ) br {
        display: none;
    }
    article {
        padding: 1rem 1rem 0;
        background: linear-gradient(to top right, #EEBE9D, #FDE8DE);
    }
    article > p {
        padding: 1rem;
        background: #FDBF52;
        margin: 1rem 0;
    }
    .font {
        justify-content: center;
    }
    .box {
        padding: 1rem;
        background: #A55863;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 -1rem;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1.25em;
        line-height: 1.3;
    }
}