@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 929px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1.75em;
    line-height: 1.3;
}

h1 + p {
    font-size: 1.25em;
    line-height: 1.3;
}
h1 span {
    font-weight: 400;
}
h1, .center {
    text-align: center;
}
h2 {
    font-size: 1.625em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
h3 {
    font-size: 2.8em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #E60005;
    position: absolute;
    top: 14rem;
    left: 31rem;
}
h4 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    color: #E60005;
    text-align: center;
}
h2, h3, h4, .ups {
    text-transform: uppercase;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
figure {
    display: flex;
    justify-content: flex-end;
}
.bg {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    margin: 0.5rem -1rem 1.5rem 0;
    background: #E60005;
    color: #fff;
    font-size: 0.875em;
    line-height: 1.3;
    border-radius: 3rem 0 0 3rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: calc(100% / 3 - 2rem / 3);
}
.box {
    padding: 1rem 1rem 0;
    background: #E60005;
    border-radius: 0 8rem 8rem 0;
    margin: 0 0 0.75rem -1rem;
    width: 56%;
}
.box p {
    color: #fff;
}
.small {
    font-size: 0.875em;
    line-height: 1.3;
}
.qrc {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    position: absolute;
    bottom: 6rem;
    right: 6rem;
}
.qrc p {
    padding-bottom: 0.5rem;
    font-size: 0.875em;
    line-height: 1.3;
    color: #E60005;
    letter-spacing: 0.5px;
}
header{
    margin-bottom: 0.5rem;
}
footer p {
    font-size: 0.75em;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h3 {
        position: static;
        text-align: center;
    }
    .hide_m, h1 br {
        display: none;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    figure {
        justify-content: center;
    }
    h4 {
        text-align: center;
    }
    .qrc {
        position: static;
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .box {
        width: auto;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .flex div {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    h1, h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 2em;
    }
    .box, .bg {
        border-radius: 0;
        margin: 0 -1rem 1rem;
        padding: 0.5rem 1rem;
    }
}