@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: "Arial", sans-serif;
    font-size: .875rem;
    line-height: 1.4;
}

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: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    color: #999;
    text-decoration: underline;
}

p {
    margin: 0 0 1.062rem;
}

h1 {
    color: #ed7201;
    font-size: 1.625rem;
    margin: 1.25rem 0;
    line-height: 1.3
}

h1 span {
    font-size: 1.062rem;
    display: block;
    padding-top: .5rem;
}

h2 {
    color: #ed7201;
    font-size: .937rem;
    margin: 0 0 .25rem;
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul li {
    padding: 0 1.125rem .312rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.125rem;
    font-size: 1.125rem;
    line-height: 0.9;
    color: #868686;
}

li span {
    text-decoration: underline;
    font-weight: 700;
}

article {
    margin: 1.875rem;
}

.flex,
footer {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
}

.box {
    width: 48%;
}

footer {
    margin: 0 1.875rem 1.875rem;
}

.box_footer {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article {
        margin: 1rem;
    }

    footer {
        margin: 0 1rem 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 48rem) {
    .flex {
        flex-direction: column;
        gap: 0;
    }

    .box {
        width: 100%;
    }

    .box p:last-of-type {
        margin-bottom: 0
    }
}

@media only screen and (max-width: 43.125rem) {
    footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer p,
    footer h2 {
        text-align: center;
    }

    .box_footer {
        align-items: center;
        justify-content: center;
        gap: 1.875rem
    }

    h1 {
        font-size: 1.375rem;
        text-align: center;
    }
}