@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 805px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem 4.5rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    color: #0462C1;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h3 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.3em;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.25rem;
}
header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 2rem;
}
article section :is(h1, h2, h3, h4, p) {
    text-align: center;
}
:is(span,a) {
    display: inline-block;
}
@media only screen and (max-width:804px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        hyphens: auto;
    }
    .hide_m {
        display: none;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 0.875em;
        line-height: 1.3;
    }
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}