@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font: 400 1em/1.3 Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #9D0D57;
    text-decoration: none;
    white-space: nowrap;
}

a.tel {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
}

h2 {
    font-size: 1em;
}

h3 {
    font-size: 1.25em;
    margin-bottom: 1rem;
    text-align: center;
}

h1,
h2,
h3 {
    color: #9D0D57;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 3rem;
}

li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.5rem;
}

header {
    padding-bottom: 1rem;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    a.wrap {
        white-space: normal;
    }

    h1 {
        text-align: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
        margin: 0;
        text-align: center;
    }
}

@media only screen and (max-width:480px) {
    li {
        padding-left: 1rem;
    }

    li:before {
        margin-left: -1rem;
    }
}