@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 830px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 5.5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 1.125em;
    line-height: 1.3;
    margin: 1rem 0;
    text-align: center;
}
h1 span {
    font-size: 0.875em;
}
h2 {
    font-size: 1em;
    line-height: 1.5;
}
:is(a:link, a:visited, a:active, a:hover) {
    color: #000;
    text-decoration: none;
    display: inline-block;
}
a.ins {
    text-decoration: underline;
}
a.blue {
    color: #0000FF;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin-left: -1.5rem;
}
:is(p, ul:last-of-type) {
    text-align: justify;
    hyphens: auto;
}
header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
@media only screen and (max-width: 829px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    li {
        padding-left: 2.1rem;
    }
    :is(p, ul:last-of-type) {
        text-align: left;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 0.938em;
        line-height: 1.3em;
    }
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.6rem;
    }
}