@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 860px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.455em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-decoration: underline;
    letter-spacing: 2px;
    text-align: center;
}
a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
a.link {
    color: #0000ff;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.55rem;
}
ul ul {
    padding: 0;
}
li li::before {
    content: "\25CB";
    font-size: 1em;
    margin-top: 0;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    margin-top: -6px;
    margin-left: -1.55rem;
}
header {
    padding: 0;
    text-align: right;
}
article {
    padding: 0 3rem;
}
article>p:last-of-type {
    text-align: center;
}
footer {
    padding: 0 3rem;
}
.qr {
    position: absolute;
    bottom: 126px;
    right: 6rem;
}
@media only screen and (max-width:859px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 2rem;
    }
    article, footer {
        padding: 0;
    }
    .jus, li {
        text-align: left;
    }
    .qr {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    header {
        padding-bottom: 1rem;
        text-align: center;
    }
    h3 {
        letter-spacing: 0.5px;
        font-size: 1.3em;
    }
    li {
        padding-left: 1.1rem;
    }
    li::before {
        margin-left: -1.1rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul ul {
        padding-left: 0;
    }
}