@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: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
span {
    display: inline-block;
}
h1 {
    margin: 0 0 0.125rem;
    font-size: 2.5em;
    line-height: 1.15;
    color: #4F81BC;
}
h1+p {
    padding-bottom: 1.25rem;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: normal;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: -1px;
    color: #4F81BC;
}
li a.ins {
    text-decoration: underline;
    color: #0000FF;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
:is(h1, h1+p), .center {
    text-align: center;
}
header .logo {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 2rem 3rem 0 2.25rem;
}
article>p:last-of-type {
    padding: 0 6.4rem 0 0;
}
footer {
    padding: 18% 4rem 0.5rem;
    background: #EAE7E2 url('../images/bg.jpg') no-repeat right top;
    background-size: 100%;
}
footer p {
    text-align: right;
    font-size: 0.75em;
    line-height: 1.3;
}
.qr {
       position: absolute;
    bottom: 48px;
    right: 66px;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    br {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    h1 {
        font-size: 2em;
    }
    header .logo {
        justify-content: center;
    }
    article {
        padding: 2rem 2rem 0;
        margin-bottom: -1rem;
    }
    footer {
        padding: 18% 2rem 0.5rem;
    }
    .qr {
        position: static;
        display: flex;
        justify-content: center;
    }
    article>p:last-of-type {
        padding: 0 0 1rem;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 0.875em;
        line-height: 1.4em;
    }
    h1 {
        font-size: 1.5em;
    }
    header .logo {
        padding: 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 18% 1rem 0;
    }
}