@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: Calibri, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 615px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #042E43;
    overflow: hidden;
    padding: 2rem 3rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 3.5em;
    line-height: 1;
    border-top: 1px solid #599CB3;
    padding: 0.8rem 0.5rem 0 0;
    min-width: 85%;
}
h1 span {
    font-size: 0.52em;
    display: block;
    color: #599CB3;
    font-weight: 400;
    width: fit-content;
    margin-top: 0.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    text-align: right;
    padding-bottom: 2rem;
}
.big {
    font-size: 1.5em;
    line-height: 1.3;
    width: 80%;
}
.big2 {
    font-size: 1.35em;
    line-height: 1.3;
    width: 80%;
}
a.ins {
    text-decoration: none;
    border-bottom: 1px solid #599CB3;
    padding-bottom: 5px;
}
section {
    padding: 3rem 0 6rem;
}
section, h1, h1 + p {
    position: relative;
    z-index: 2;
}
section p:first-of-type {
    padding-bottom: 2rem;
}
footer {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
@media only screen and (max-width:614px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
    }
    .hide_m {
        display: none;
    }
    header {
        padding: 1rem;
        text-align: center;
    }
    article {
        padding: 0 1rem;
    }
    section {
        padding: 0;
    }
    footer {
        text-align: right;
        position: static;
        padding-left: 1rem;
    }
    h1 {
        font-size: 2.2em;
        padding-right: 0;
    }
}