@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 855px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 4rem;
}
p {
    padding-bottom: 1rem;
    text-align: center;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1em;
    line-height: 1.4;
     font-weight: normal;
}
h1+p{
    text-align: left;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: normal;
    text-decoration: underline;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: underline;
    white-space: nowrap;
}
a[href^="tel:"] {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 3.25rem;
}
li ul {
    padding: 0;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin-left: -1.75rem;
}
.pd {
    padding: 1rem 0 1rem 3.25rem;
}
.info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}
.info figure {
    display: flex;
    justify-content: center;
}
header {
    position: relative;
    padding-bottom: 2rem;
}
header section {
    position: absolute;
    top: 0;
    left: 0;
}
header div.box {
    margin: 0 0 2.5rem 21.5rem;
}
header div.box p {
    padding-bottom: 0;
}
footer figure {
    display: flex;
    justify-content: center;
    margin-top: -0.5rem;
}
@media only screen and (max-width:854px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p, li {
        hyphens: auto;
    }
    header section {
        position: static;
        display: flex;
        justify-content: center;
    }
    header div.box {
        margin: 1rem 0;
    }
    br {
        display: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h3 {
        padding-left: 0.5rem;
    }
    li {
        padding-left: 1.2rem;
    }
    ul li:before {
        margin-left: -1rem;
    }
}