@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 0.9rem/1.5 Verdana, Arial, sans-serif;
    background-color: #f1f1f1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.02rem solid #A7A9A4;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}

:is(a:link, a:visited, a:active) {
    color: #D31D23;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.color {
    color: #D31D23;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: .2rem;
    color: #D31D23;
}

h1+h3 {
    padding-bottom: 1rem;
}

h2 {
    font-size: 2.8rem;
    width: 100%;
    position: absolute;
    top: 13rem;
    left: 0;
    text-align: center;
    color: #fff;
}

h3 {
    font-size: .9rem;
    font-weight: normal;
    color: #D31D23;
}

ul {
    padding: 0 0 1rem 1rem;
}

ul li {
    margin-bottom: 0.24rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


header>a {
    display: inline-block;
    width: 160px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 100;
}

article {
    padding: 1.5rem 3rem 0;
}

footer {
    padding: 0 3rem 1.5rem;
    border-bottom: 10px solid #D31D23;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 44rem) {
    h2 {
        font-size: 1.5rem;
        position: static;
        color: #D31D23;
        padding-top: 1rem;
    }

    h2 br {
        display: none;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem .5rem;
        border-bottom: 10px solid #D31D23;
    }
}