@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 800px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 4rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.27em;
    line-height: 1.1;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
h3 {
    font-size: 1.27em;
    line-height: 1.2em;
}
a {
    color: #000;
    text-decoration: none;
}
a ins {
    color: #0563C1;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1.4rem;
}
li:before {
    content: "";
    width: 10px;
    height: 11px;
    background: url('./icon.jpg') no-repeat center;
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 4px;
    margin-left: -1.4rem;
}
ul:last-of-type {
    text-align: justify;
    word-spacing: 0.5px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}
header aside {
    width: 405px;
}
header aside p {
    text-align: left;
    padding-bottom: 0;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        font-size: 0.875em;
        line-height: 1.3em;
    }
    p, ul:last-of-type {
        text-align: left;
    }
    header {
        flex-direction: column;
    }
    header aside {
        width: auto;
    }
    header img {
        margin-bottom: 0.75rem;
    }
}