@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 813px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 5rem;
}
:is(p, ul) {
    text-align: justify;
    hyphens: auto;
}
p {
    padding-bottom: 1rem;
}
.pb {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
a {
    color: #000;
    text-decoration: none;
}
p a.ins {
    color: #00f;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1.5rem;
}
header {
    margin: 0 -2.5rem 2rem;
    display: flex;
    justify-content: flex-end;
}
footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    bottom: 4rem;
    right: 2.5rem;
}
@media only screen and (max-width: 812px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p, ul {
        text-align: left;
    }
    header {
        margin: 0 0 1.5rem;
        display: flex;
        justify-content: center;
    }
    footer {
        position: static;
        justify-content: center;
        gap: 1.5rem;
    }
}
@media only screen and (max-width: 480px) {
    li {
        padding-left: 1.5rem;
    }
}