* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Source Sans 3", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .background {
    background: #f3f2f2;
    padding: 20px 40px 5px;
}

#wrapper .title {
    background: #fff;
    padding: 20px 40px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: center;
}

#wrapper article {
    padding: 0;
}

#wrapper footer {
    padding: 20px 40px;
    background: #FCE900;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    padding-left: 15px;
    border-left: 4px solid #1e398f;
}

#wrapper h3.ttl {
    padding-left: 15px;
    border-left: 4px solid #1e398f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 7px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    margin: 30px 0 0;
}

#wrapper .button a {
    box-shadow: 0 2px 58px 2px rgba(37, 37, 37, .15);
    padding: 10px 15px;
    color: #1a1a18;
    background-color: #fff;
    border-radius: 2px;
    display: block;
    transition: all .2s ease-in;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper .checklist li:before {
    content: url(checkbox.jpg);
}

#wrapper .checklist li {
    padding-left: 28px;
    margin-bottom: 7px;
}

#wrapper .text {
    font-size: 20px;
    margin-left: 20px;
}

#wrapper .checklist {
    margin-left: 15px;
}

#wrapper ul li {
    padding-left: 19px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .background,
    #wrapper .title,
    #wrapper footer {
        padding: 16px;
    }

}