@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #888;
    font: 400 1em/1.5em Arial, sans-serif;
    background: #EFEFEF;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.3;
    color: #99cc00;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding-left: 2rem;
}
li:before {
    content: url('../images/iconlist.png');
    float: left;
    margin: 1px 0 0 -2rem;
}
figure, footer {
    display: flex;
    justify-content: flex-end;
}
header, footer, .box {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}
.color {
    color: #0073cc;
}
a.apply {
    display: block;
    width: fit-content;
    padding: 1rem 1.25rem;
    margin: 1rem 0 0;
    border-radius: 0.25rem;
    border: 1px solid #99cc00;
    background: #99cc00;
    color: #fff;
    font-size: 1.25em;
    line-height: 1.3;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    figure, footer {
        justify-content: center;
    }
    a.apply {
        margin: 1rem auto 0;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.75em;
    }
}