@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #6499C2;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
p a.ins{
    text-decoration: underline;
}
.jus {
    text-align: justify;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.2em;
    line-height: 1.3;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li,h3 {
    padding-left: 1rem;
}
ul li:before, h3:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1rem;
}
header{
    position: relative;
}
header figure{
    display: none;
}
article div{
    position: absolute;
    top: 13.9rem;
    left: 6rem;
}
article div p {
    font-size: 1rem;
    line-height: 1.3;
}
article div :is(p,h1){
    color: #FFF;
}
article{
    padding: 1rem 1rem 0;
}
article section{
    display: flex;
    justify-content: space-between;
}
article section p{
    padding-bottom: 0;
}
article section:last-of-type p:last-of-type{
    padding-bottom: 0.5rem;
}
article section h3{
    width: 200px;
}
article section p{
    width: 700px;
}
footer{
    padding: 0 1rem;
}
footer p, article div p,h1 {
    text-align: center;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    .jus {
        text-align: left;
    }
    header figure{
        display: block;
    }
    header > a img{
        display: none;
    }
    article div{
        position: static;
        padding: 1rem;
        border-radius: 20px;
        background: #6499C2;
        margin-bottom: 1rem;
    }
    article section{
        display: block;
    }
    article section :is(h3,p){
        width: 100%;
    }
    p :is(a,span){
        display: inline-block;
    }
    p {
        text-align: left;
    }
}