@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1.125em/1.3em Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 700px;
    border: solid 2px #000;
    background: #fff;
}
#wrapper>img{
    border-top: 2px solid #000;
}
p, ul {
    text-align: justify;
}
p {
    padding-bottom: 1rem;
}
ul {
    padding: 0 0 0.7rem 0;
    list-style: none;
}
li {
    padding: 0 0 3px 3rem;
}
li:before {
    content: url('../images/icon.jpg');
    font-size: 1.4em;
    float: left;
    margin: -1px 0 0 -1.5rem;
    font-family: Arial, sans-serif;
}
:is(h1, .qr p) {
    font-family: "Segoe UI", Arial, sans-serif;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
h1 {
    margin: 0 -1rem 0.7rem;
    padding: 0.5rem 1rem;
    font-size: 1.55em;
    line-height: 1.2;
    background: #8DB3E3;
    text-align: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
h1 span {
    font-size: 0.875em;
    display: block;
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.3rem;
}
header {
    padding: 1rem 1rem 0;
    background: #E1E1E1;
    display: flow-root;
}
header p {
    text-align: center;
    margin: 0 9rem 5rem 0;
    position: relative;
    z-index: 2;
}
header figure {
    position: absolute;
    right: 1rem;
    top: 4rem;
}
article {
    padding: 0 1rem;
}
.qr {
    position: relative;
    background: #CBD7E8;
}
.qr figure {
    position: absolute;
    top: 1.4rem;
    right: 1rem;
}
.bg {
    background: #D6E7D0;
}
.mg {
    margin: 0 -1rem;
    padding: 1rem 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
footer {
    padding: 1rem;
    background: #EAF0DD;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    border-top: 2px solid #000;
}
footer p {
    padding: 0;
    font-size: 0.97em;
    line-height: 1.3em;
}
@media only screen and (max-width:699px) {
    body {
        font-size: 1em;
        line-height: 1.4em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header figure {
        position: static;
        display: flex;
        justify-content: center;
    }
    header p {
        margin: 1rem 0 0;
    }
    br {
        display: none;
    }
    p, ul {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    p span {
        display: inline-block;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}