@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 400 1.125em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 507px;
    margin: 1rem auto;
    border: 2px solid #231F20;
    background: #fff;
    overflow: hidden;
    padding: 0.7rem 0.8rem 0;
}
h1, h2, h3 span {
    font-weight: 700;
}
h2, h3 span {
    color: #223F99;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #223F99;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0.35rem 0 0.5rem 1rem;
    font-size: 1.313em;
    line-height: 1.2;
    font-weight: 700;
}
h1 span {
    font-weight: 400;
    font-size: 1.125rem;
}
h1::before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -1rem;
    color: #223F99;
}
h2 {
    font-size: 1.6em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.125em;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}
header {
    padding: 0 0 0.5rem;
}
article p:last-of-type {
    background: #40ADE2;
    color: #fff;
    margin: 0 -1rem 0.5rem;
    padding: 0.5rem 1rem 0.625rem;
    font-size: 1.063em;
    line-height: 1.3;
}
.big {
    font-size: 1.3em;
}
article a.white {
    color: #fff;
}
footer a {
    font-size: 1.36em;
    font-weight: 700;
}
@media only screen and (max-width:506px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    span {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    .big, footer a {
        font-size: 1.188em;
    }
}