@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 300 1.125em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 880px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
h1,h2,strong{
    font-weight: 700;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2 {
    padding: 0.5rem 0.5rem 0.5rem 5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #557C32, #BAD55C);
}
h1 {
    font-size: 1.9em;
    line-height: 1.3em;
}
h2 {
    font-size: 3em;
    line-height: 1.3em;
    text-transform: uppercase;
    margin-right: 3rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    position: relative;
}
header img {
    display: block;
}
.pss {
    background: #ED9328;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.3em;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    transform: rotate(5deg);
    padding: 2.5rem 1rem 0;
    position: absolute;
    top: 45rem;
    right: 1rem;
    font-weight: 400;
}
.tt {
    position: absolute;
    top: 54rem;
    left: 0;
}
main {
    padding: 1rem 3rem 0;
}
.qr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    position: absolute;
    bottom: 3rem;
    left: 4rem;
}
.qr p {
    font-size: 1.2em;
    padding-bottom: 0;
    line-height: 1.3em;
}
footer {
    position: absolute;
    bottom: 2.4rem;
    right: 3.6rem;
}
@media only screen and (max-width: 879px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .tt, .qr, footer {
        position: static;
    }
    .pss {
        top: 1rem;
        right: 2rem;
    }
    h1, h2 {
        margin: 0 0 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    h2 {
        font-size: 2em;
    }
    .qr p {
        color: #000;
    }
    .qr, footer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1rem 0;
    }
}
@media only screen and (max-width: 480px) {
    .pss {
        font-size: 0.875em;
        line-height: 1.3em;
        width: 130px;
        height: 130px;
        padding: 2rem 1rem 0;
    }
}