@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: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p img {
    vertical-align: -4px;
}
p {
    padding-bottom: 1rem;
}
p span.ttu {
    text-transform: uppercase;
}
p.big {
    font-size: 1.1em;
    line-height: 1.3em;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1em;
    line-height: 1.3;
}
h1 span {
    font-weight: normal;
}
h1:before {
    content: "➧";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1.2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.4em;
    line-height: 1.5;
    font-weight: 900;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li, h1 {
    padding-left: 1.2rem;
}
ul li:before {
    content: "➧";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.right {
    width: 47%;
    padding: 3rem 1rem 1.5rem;
}
header {
    display: flex;
    justify-content: center;
}
header, footer {
    background: #F47921;
    padding: 1rem;
}
article img {
    display: block;
}
footer p {
    text-align: center;
    color: #FFF;
    padding: 0;
}
footer p span {
    font-size: 1.1em;
    line-height: 1.3em;
    display: inline-block;
}
.pss {
    position: absolute;
    bottom: 5.7rem;
    left: 1rem;
}
.qr {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 0.5rem;
}
.qr p {
    width: 66%;
    line-height: 1.1rem;
    padding-bottom: 0;
}
.bg {
    padding: 1rem 1rem 0;
    background: #E4E4E4;
    margin: 2rem -1rem;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
    }
    article figure {
        display: flex;
        justify-content: center;
    }
    .right {
        width: 100%;
    }
    .pss {
        position: static;
        padding-bottom: 1rem;
    }
}