@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3333FF;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
    text-align: justify;
    hyphens: auto;
}
span{
    white-space: nowrap;
}
h1{
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.2
}
h1 span{
    font-weight: normal
}
h2 {
    position: absolute;
    background: #fff;
    font-size: 38px;
    text-align: center;
    line-height: 1.2;
    padding: .312rem .625rem;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;

}
h3{
    text-align: center;
    
    font-weight: normal;
    font-size: 1rem;
    margin-bottom: 1rem
}
h4{
    font-size: 1.437rem;
    text-align: center;
    border-bottom: 5px solid #3333FF;
    margin: 0 0 13px
}
ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}
ul li{
    padding-left: 45px;
    padding-right: 16px
}
.section ul li {
    padding-left: 125px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -25px;
    font-size: 16px;
    line-height: 1.2;
}

header {
    position: relative
}
.section{
    padding: 1rem 16px 0
}
.flex{
    background: #E4E4FD;
    padding: .625rem 1.562rem;
    display: flex
}
.column{
    width: 50%
}
footer {
    background: #0000FF;
    color: #fff;
    padding: .625rem 1rem;
    position: relative
}

footer img{
    position: absolute;
    top: .625rem;
    right: 16px
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left
    }
    ul li{
        padding: 0 0 0 1.562rem
    }
    .section ul li{
        padding-left: 1.562rem
    }
    .flex{
        padding: 1rem 1rem .312rem;
        flex-direction: column;
    }
    .column{
        width: 100%
    }
    footer{
        padding: 1rem 1rem .125rem
    }
    footer p{
        text-align: center
    }
    footer img{
        position: static;
        margin: 0 auto 1rem;
        display: block
    }
    .no_br{
        display: none
    }
}


@media only screen and (max-width: 500px) {
    .section{
        padding: 1rem 0
    }
    h2{
        font-size: 25px
    }
    h4{
        font-size: 1.25rem
    }
    
}

