@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;
    font-weight: 400;
}

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;
}

:is(a:link, a:visited, a:active) {
    color: #0070c0;
    text-decoration: underline;
}

a[href^="tel:"] {
    white-space: nowrap;
    color: #000;
    text-decoration: none;
}

ul li ul {
    padding-bottom: 0;
}

ul li ul li:before {
    content: "\3007";
    font-size: 0.6em;
    margin-top: 5px;
}

.square {
    padding-left: 80px;
}

.square:before {
    content: "\25A0";
}

li span {
    display: block;
}

p {
    padding-bottom: 1rem;
    text-align: justify;
}

.left p {
    text-align: left;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    color: #00ace5;
    padding-bottom: 1.5rem;
}

h1 span {
    font-weight: normal;
    font-size: 1.250rem;

}

h1 small {
    display: block;
      font-size: 1.250rem;
}

h2 {
    font-size: 1rem;
    padding: 1rem 0;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    color: #00ace5;
    padding-bottom: 1rem;
}
.center{
    text-align: center;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 3rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -24px;
    color: #ff5050;
    font-size: 1.5rem;
    line-height: 1;
}

.list,
.bull {
    margin: 0;
    padding: 0;
}

.list>li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    border: .062rem solid #ff5050;
    border-radius: 100%;
    background: transparent;
    margin-left: -.937rem;
    top: .5rem;
}

.bull li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    background: #ff5050;
    margin-left: -.937rem;
    top: .5rem;
}



header {
    display: flex;
    justify-content: flex-start;
    background: #00ace5;
    padding: 1.25rem 5rem;
}

article {
    padding: 1.5rem 5rem 0;
}


.section p {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

footer {
    padding: 0 5rem 1.5rem;

}

@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;
    }

    article p {
        text-align: left;
    }
    .square{
        padding-left: 60px;
    }
}

@media only screen and (max-width: 44rem) {
    header {
        justify-content: center;
        padding: 1.25rem 1rem;
    }

    article {
        padding: 1.5rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

@media only screen and (max-width: 37.5rem) {
    .flex {
        flex-direction: column;
    }

    .box p {
        margin: 0;
        padding: 0;
    }
}

@media only screen and (max-width: 480px) {
    h2 {
        padding: 0 0 .625rem;
    }

    ul li {
        padding: 0 0 0 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }

    .nobull {
        padding: 0;
    }

    a.wrap {
        white-space: normal;
    }
}