@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 5.75rem;
}
p {
    padding-bottom: 1rem;
}
.pb {
    padding-bottom: 2rem;
}
p, li {
    text-align: justify;
}
h1 {
    margin: 1.5rem 0 2.5rem;
    font-size: 1.18em;
    line-height: 1.3;
    text-align: center;
    color: #006600;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    color: #0000ff;
    text-decoration: underline 2px solid;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 1px 0 0 -1.625rem;
}
header {
    padding: 0 0 2rem;
    display: flex;
    justify-content: center;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 6rem 3rem 0;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
    .flex {
        padding-right: 3rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
}
@media only screen and (max-width: 400px) {
    .flex {
        display: block;
        padding: 1rem 0;
    }
    .flex p {
        text-align: center;
    }
}