@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;500;600;700;800;900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 'Catamaran', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 870px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') no-repeat bottom;
    overflow: hidden;
    padding: 0;
    text-align: left;
}
a {
    color: #000;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 2rem 0 3rem;
    font-size: 2.25em;
    line-height: 1.1;
    font-weight: normal;
    color: #751F61;
    text-align: center;
    letter-spacing: -1px;
}
h1+p {
    text-align: center;
    padding-bottom: 2rem;
}
h1+p+p {
    text-align: justify;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
h3 {
    font-size: 1.6em;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: normal;
    letter-spacing: -1px;
}
ul {
    padding: 0 0 1rem 1.7rem;
    list-style: none;
}
ul ul {
    padding-bottom: 0;
}
li span {
    display: block;
    margin-left: 13rem;
}
li {
    padding-left: 1.75rem;
}
li:before {
    content: "\2022";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    margin: 1px 0 0 -1.75rem;
    font-family: Arial, sans-serif;
}
ul ul li:before {
    content: "\3007";
    font-size: 0.5em;
    margin-top: 7px;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    position: relative;
}
header a:first-of-type {
    position: absolute;
    top: 28%;
    left: 7%;
    width: 25%;
    height: 72%;
}
header a:last-of-type {
    position: absolute;
    top: 39%;
    right: 3%;
    width: 21%;
    height: 56%;
}
article {
    padding: 2.5rem 4rem 0;
}
article>aside p {
    text-align: justify;
}
article>aside p:first-of-type {
    word-spacing: 1px;
}
footer {
    padding: 0 4rem 7rem;
}
footer section {
    background: #E7E6E6;
    margin: 0 -4rem 2rem;
    padding: 2rem 4rem 1rem;
}
footer section a ins {
    color: #0562C1;
}
footer>aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
footer>aside nav {
    text-align: center;
    width: 381px;
    margin-top: 0.5rem;
}
footer>aside nav p {
    padding-bottom: 0.5rem;
}
footer>h3:last-of-type {
    margin-bottom: 0.5rem;
}
footer p img {
    vertical-align: -16px;
}
@media only screen and (max-width:869px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .hide_m {
        display: none;
    }
    p a {
        display: inline-block;
    }
    ul {
        padding-left: 0.6rem;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
    h1+p+p, article>aside p {
        text-align: left;
    }
    li span {
        margin-left: 0;
        text-align: center;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 7rem;
    }
}
@media only screen and (max-width:750px) {
    footer>aside {
        padding: 0 0 1rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer>aside nav {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    footer>aside img {
        position: static;
        display: block;
        margin-bottom: 1rem;
    }
    h1{
        font-size: 1.7em;
    }
}