@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 1rem/1.5 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

.nowrap {
    white-space: nowrap;
}

article {
    padding: 2rem 6rem 1rem;
}

article p:not(:last-of-type) {
    margin: 0 0 1rem;
    text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article h1 {
    font-size: 1.3rem;
    line-height: 120%;
    margin: 1rem 0 3rem;
}

article h2 {
    font-size: 1rem;
}

article :is(p, ul) {
    hyphens: auto;
}

article ul {
    margin: 1rem 0 2rem 3rem;
    list-style: none;
}

article ul li:before {
    content: "\2022";
    font-size: 1.3rem;
    float: left;
    margin: -0.0625rem 0 0 -1.25rem;
}

article .apply {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0;
}

article .apply .btn {
    background: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
}

article span {
    display: inline-block;
}

footer {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem 2rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article p:not(:last-of-type) {
        text-align: left;
    }
}

@media only screen and (max-width: 48rem) {
    article {
        padding: 1rem 2rem;
    }
}

@media only screen and (max-width: 30rem) {
    article h1 {
        margin: 1rem 0 1.5rem;
    }

    article {
        padding: 1rem;
    }

    article ul {
        margin: 1rem 0 1.25rem 1.1rem;
    }
}