@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.0625rem solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

a.color {
    color: #234DA1;
}

a.web:hover {
    text-decoration: underline;
}

.no_wrap {
    white-space: nowrap;
}

h1 {
    color: #2E74B5;
    font-size: 28px;
    font-weight: 400;
    margin: 16px 0 20px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 1.1em;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    text-align: justify;
}

ul li {
    padding: 0 0 0 50px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -20px;
    font-size: 1.375em;
    line-height: 1;
}

.no_margin {
    margin: 0;
    font-size: 1.125rem;
}

header {
    padding: 2.5rem 30px 1.25rem 5rem;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 5rem;
}

.blue_bg {
    background-color: #E0EAFC;
    padding: 10px;
    margin: 0 0 1.25rem;
}

.blue_bg > p:last-of-type {
    margin: 0;
}

footer {
    font-size: 0.9375rem;
    padding: 0 5rem 5rem;
}

.last_line p {
    text-align: right;
}

@media only screen and (max-width: 819px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }

    ul li {
        padding: 0 0 0 20px;
    }

    ul li:before {
        margin: 0 0 0 -15px;
    }

    p,
    h2,
    .last_line p {
        text-align: left;
    }

    header {
        padding: 1rem;
    }

    article {
        padding: 0 1rem;
    }

    .blue_bg {
        padding: 0.625rem;
    }

    footer {
        font-size: 0.9375rem;
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width: 600px) {

    h1,
    h2 {
        text-align: center;
    }

    header {
        padding: 1rem;
        justify-content: center;
    }

    .blue_bg p {
        text-align: center;
    }

    .none {
        display: none
    }
}
