@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 965px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
p.mt {
    margin-top: 3.5rem;
}
p span.color{
    color: #444444;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.1;
    background: #E77721;
    padding: 1rem;
    color: #fff;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3;
    color: #E77721;
    padding-bottom: 0.4rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 4px 1.5rem;
    background: url('../images/icon.jpg') no-repeat -1px 3px;
}
.black {
    color: #000;
}
hr {
    border: none;
    border-bottom: 1px solid #E77721;
    margin-bottom: 1rem;
}
article {
    padding: 1.5rem 1.5rem 5rem;
    background: url('../images/bg.jpg') no-repeat;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.left, .right {
    width: 50%;
}
footer {
    position: absolute;
    border: 1px solid #E77721;
    padding: 2rem 1.5rem;
    right: 1.5rem;
    bottom: 10rem;
}
@media only screen and (max-width:964px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, ul) {
        hyphens: auto;
    }
}
@media only screen and (max-width:780px) {
    .left, .right {
        width: 100%;
    }
    .last {
        padding-bottom: 0;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        border: none;
    }
    article {
        padding: 1rem;
    }
    .hide_m {
        display: none;
    }
    h1 {
        font-size: 2em;
    }
}