@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1.25em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-left: 1.25rem;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1em;
    line-height: 1.3;
    padding-left: 1.25rem;
}
h1:before {
    content: "▶";
    float: left;
    margin: -1px 0 0 -1.25rem;
}
h1 span {
    font-weight: normal;
}
@media only screen and (max-width:479px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    img {
        width: 22px;
    }
}