@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.25 "Times New Roman", serif;
}
#wrapper {
    position: relative;
    max-width: 720px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
a {
    color: #000;
    text-decoration: none;
}
p span a {
    color: #528135;
    font-weight: bold;
    font-size: 1.3em;
    line-height: 1.2;
}
p {
    padding-bottom: 0.75rem;
}
p span {
    display: block;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
    font-weight: bold;
    font-size: 1.063em;
}
li {
    padding: 0 0 0.5rem 1.5rem;
    background: #fff url('../images/icon_bg.jpg') no-repeat 0 2px;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 1.5rem 1rem 2rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 0 4rem;
}
article>p:first-of-type {
    text-align: justify;
    width: 90%;
}
article .flex {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem -1rem 0.5rem -4rem;
}
article .flex div:first-of-type {
    width: 296px;
}
article .flex div:last-of-type {
    width: 49%;
}
article .center {
    text-align: center;
}
article .center>p:first-of-type {
    font-size: 1.175em;
    line-height: 1.25;
}
footer {
    padding: 1rem 1rem 0;
    text-align: center;
    background: #F1F1F1;
}
@media only screen and (max-width:719px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p,li) {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    article {
        padding: 0 1rem;
    }
    article>p:first-of-type {
        text-align: left;
        width: 100%;
    }
    article .flex {
        display: block;
        margin: 0;
    }
    article .flex div:last-of-type {
        width: 100%;
    }
    article .flex div:first-of-type {
        width: auto;
        margin: 1rem 0;
        display: flex;
        justify-content: center;
    }
    article .flex br {
        display: none;
    }
}