@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em  Arial, sans-serif;
    color: #000;
}
h1, h2, p, ul {
    margin: 0;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 705px;
    border: solid 1px #000;
    background: #fff;
    padding: 0.5rem 0.7rem 0.75rem;
}
hr {
    margin: 0.5rem -0.7rem;
    border: none;
    border-bottom: 1px solid #000;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
p :is(span, a) {
    display: inline-block;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    color: #0023FF;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 2.5rem;
}
li:before {
    content: "\2010";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.442em;
    line-height: 1.1em;
    text-align: center;
}
h1 small {
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
header {
    display: flex;
    justify-content: end;
}
article>p:last-of-type{
    margin-right: 6.4rem;
}
footer {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:704px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        text-align: left;
        hyphens: auto;
    }
    header {
        justify-content: center;
    }
    footer {
        position: static;
        padding-bottom: 0.7rem;
    }
    br {
        display: none;
    }
    article>p:last-of-type{
        margin-right: 0;
    }
}
@media only screen and (max-width:480px) {
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}