@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') top left no-repeat, url('../images/bg2.jpg') top right no-repeat, #fff;
    overflow: hidden;
    padding: 6rem 7rem 5rem 5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, .color {
    color: #b51d1c !important;
    font-weight: bold;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.75em;
    line-height: 1.3;
}
h1, .center {
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}
h3 {
    font-size: 2em;
    line-height: 1.3em;
    padding: 0.5rem;
    background: #b51d1c;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    column-count: 2;
}
li {
    overflow: hidden;
    padding-left: 1rem;
}
li:before {
    content: "▪";
    float: left;
    margin: -1px 0 0 -1rem;
    color: #b51d1c;
}
header {
    padding-bottom: 3rem;
}
figure {
    position: absolute;
    top: 1rem;
    right: 0;
}
p.center {
    font-size: 1.25em;
    line-height: 1.3;
}
.box {
    padding: 1rem 0.625rem 0.5rem;
    background: #F2F2F2;
    margin: 0 -3rem 2rem 0;
}
.box p {
    padding-bottom: 0.5rem;
}
.benfit {
    display: flex;
    justify-content: center;
    width: fit-content;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
footer p {
    font-size: 2em;
    line-height: 1.3em;
    padding: 0.5rem;
    background: #b51d1c;
    color: #fff;
    text-align: center;
    margin-right: -3rem;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
        background-image: none;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    .inlb {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    header {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 2rem;
    }
    figure {
        position: static;
    }
    .box, footer p {
        margin-right: 0;
    }
}
@media only screen and (max-width:780px) {
    ul {
        column-count: 1;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h3, footer p {
        font-size: 1.625em;
    }
}