@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #000;
    font: 1.1em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 495px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.75rem;
}
p a.ins {
    text-decoration: underline;
}
h1 {
    margin: 0 0 0.75rem 2rem;
    font-size: 1.4em;
    line-height: 1.2;
    text-align: left;
}
h1 span {
    font-size: 0.8em;
}
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;
}
header p {
    font-size: 1.2em;
    line-height: 1.3em;
}
@media only screen and (max-width: 494px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article br {
        display: none;
    }
    h1 {
        margin-left: 0;
        text-align: center;
    }
}