@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #1C5690;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #002E66;
    background: #fff;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0 1rem;
}
.flex p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #0860A8;
    width: 100px;
}
.qr {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: center;
    position: absolute;
    top: -1.6rem;
    right: 1.5rem;
}
.qr>img:first-of-type {
    margin-top: -8rem;
}
h1 {
    background: #F36E21;
    text-align: center;
    width: 220px;
    height: 220px;
    padding: 1.5rem 1rem 0;
    border-radius: 50%;
    color: #FFF;
    font-size: 1.05em;
    line-height: 1.3em;
    transform: rotate(-10deg);
    box-shadow: -0.1rem 0.1rem 1rem #999;
    position: absolute;
    top: -17.1rem;
    right: 1rem;
}
article {
    padding: 2rem 1rem 1rem;
    position: relative;
}
footer {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m, .circle br , h1 br {
        display: none;
    }
    .flex {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flex p {
        width: 100px;
    }
    .qr, footer, h1 {
        position: static;
    }
    h1 {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 1rem;
        margin: 0 0 2rem;
        transform: rotate(0);
    }
    footer, .qr {
        position: static;
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    .qr>img:first-of-type {
    margin-top: -3rem;
}
}