@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0166B3;
    font: bold 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
    text-align: center;
}
h2 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h2+p {
    font-size: 1.05em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 1rem 2rem;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p {
    padding-bottom: 0;
}
.pss {
    background: #F36E21;
    color: #FFF;
    text-align: center;
    font-size: 1.05em;
    line-height: 1.3em;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    transform: rotate(-7deg);
    padding: 2rem 0.5rem 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    box-shadow: -0.1rem 0.1rem 1rem #000;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    main {
        padding: 1rem;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    .pss {
        font-size: 0.7em;
        width: 110px;
        height: 110px;
        padding: 1.5rem 0.5rem;
    }
}