@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 870px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 2rem 0;
}
p {
    padding-bottom: 1rem;
}
p.color, p a.color,ul li:before {
    color: #6C6D70;
}
h1 {
    margin: -1rem 0 0.5rem;
    font-size: 3.192em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "■";
    font-size: 0.7em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    gap: 0 0.5rem;
}
article {
    padding: 1rem 0 0 10rem;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 5rem;
}
@media only screen and (max-width: 869px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    article figure, footer {
        display: flex;
        justify-content: center;
    }
    article {
        padding: 0;
    }
    footer {
        position: static;
    }
    h1{
        font-size: 2em;
    }
    h1, article p:last-of-type{
        text-align: center;
    }
    .hide_m{
        display: none;
    }
}