@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 2px #231F20;
    background: #fff url('../images/bgt.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1, h2 {
    font-size: 1.5em;
    line-height: 1.3;
}
h1 span {
    display: block;
    font-size: 0.75em;
}
h1 {
    margin: 9rem 1.5rem 11rem;
    color: #0066B3;
    text-align: right;
}
.appl {
    position: absolute;
    top: 1.5rem;
    left: -0.75rem;
    z-index: 22;
}
.link {
    transform: rotate(-8deg);
    color: #fff;
    font-size: 1.375em;
    line-height: 1.3;
    position: absolute;
    top: 12.125rem;
    left: 3.125rem;
}
article {
    padding: 0 1.5rem 1rem;
    border-bottom: 6px solid #FBA919;
}
.qrc {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.qrc p {
    padding: 0;
}
.font {
    position: absolute;
    top: 16rem;
    left: 11rem;
    width: max-content;
}
figure {
    position: absolute;
    bottom: 64px;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
figure a img {
    border-radius: 0 0 1.5rem 1.5rem;
    border: 6px solid #fff;
    border-top: 0;
}
footer {
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    background: #231F20 url('../images/bg.jpg') top left no-repeat;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
footer p {
    color: #fff;
    padding: 0;
    font-size: 1.45em;
    line-height: 1.3;
    text-transform: uppercase;
}
@media only screen and (max-width:799px) {
    #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 {
        margin: 1rem;
        text-align: center;
    }
    .appl {
        padding: 1rem;
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .link {
        position: static;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        background: #0066B3;
        text-align: center;
        transform: none;
    }
    .font {
        position: static;
    }
    .qrc {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }
    .qrc p {
        text-align: center;
    }
    .hide_m {
        display: none;
    }
    figure {
        position: static;
    }
    footer {
        flex-direction: column;
        align-items: center;
        background-image: none;
        gap: 1rem;
        padding: 1rem;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}