@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 2rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0563c1;
    text-decoration: underline;
    white-space: nowrap;
}

a.tel {
    color: inherit;
    text-decoration: none;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 1.5rem;
    line-height: 120%;
    margin: 1rem 0;
}

h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
}

ul {
    margin: 0 0 2rem 3rem;
}

.image {
    margin: 1.25rem 0;
}

footer p {
    font-size: 14px;
    margin-bottom: 0;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 46rem) {
    #wrapper {
        padding: 1rem;
    }
}

@media only screen and (max-width: 30rem) {
    ul {
        margin: 0 0 1.25rem 1rem;
    }
}