@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em "Times New Roman", Times, serif;
    line-height: 1.3;
}

#wrapper {
    position: relative;
    max-width: 715px;
    margin: 1rem auto;
    border: 2px solid #E60000;
    background: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
    text-align: left;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 2.25em;
    line-height: 1.1;
    font-weight: normal;
    text-decoration: underline;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0rem;
    font-weight: normal;
}

ul {
    padding: 0rem 0rem 1rem 1.5rem;
    list-style: none;
}
ul+p{
    text-align: center;
    padding-bottom: 2rem;
}
li {
    padding-left: 1rem;
}

li:before {
    content: "\2022";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    top: 1px;
    margin-left: -1rem;
    font-family: Arial, sans-serif;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0 1.5rem;
    text-align: right;
}

article {
    padding: 0rem;
}

article>p:first-of-type {
    padding-bottom: 2.25rem;
}

article>aside {
    text-align: justify;
}

article section {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-flow: row wrap;
    text-align: center;
}

article section aside {
    width: 23%;
}

footer {
    padding: 0rem;
}

.apply a {
    display: inline-block;
    background: #E60000;
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.apply a:hover {
    text-decoration: none;
}

footer aside {
    text-align: right;
}

@media only screen and (max-width: 715px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    .hide_m {
        display: none;
    }

    article>aside {
        text-align: left;
    }
}

@media only screen and (max-width: 550px) {
    ul {
        padding-left: 0.6rem;
    }

    h1 {
        font-size: 1.7em;
    }

    article section aside {
        width: 50%;
    }
}