@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #000;
    font: 0.9rem/1.5 Verdana, Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 53rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.02rem solid #000;
}
:is(a:link, a:visited, a:active) {
    color: #EE1D23;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
.color {
    color: #EE1D23;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: #EE1D23;
}
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: #EE1D23;
    margin-bottom: 0.25rem;
}
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{
    border-block: 16px solid #EE1D23;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 1.5rem 3rem 0;
}
footer {
    padding: 0 3rem 1.5rem;
    border-bottom: 10px solid #EE1D23;
}
@media only screen and (max-width: 52.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width: 44rem) {
    h2 {
        font-size: 1.5rem;
        position: static;
        color: #EE1D23;
        padding-top: 1rem;
    }
    h2 br {
        display: none;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem .5rem;
        border-bottom: 10px solid #EE1D23;
    }
}