@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 895px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 4rem;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
    text-align: center;
}
h1 sup {
    font-size: 0.7em;
}
h1 span {
    font-size: 0.76em;
    font-weight: normal;
    line-height: 1.3em;
    display: block;
    margin-right: 2.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
strong, h1, h2 {
    font-weight: 600;
}
a {
    color: #000;
    text-decoration: none;
}
a ins {
    color: #00f;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.75rem;
}
ul li:before {
    content: "\25A0";
    display: inline-block;
    color: #FDB910;
    font-size: 1.5em;
    position: relative;
    float: left;
    margin-top: -7px;
    margin-left: -1.5rem;
}
header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: center;
}
footer {
    background-color: #0038A4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.375rem 0.5rem;
}
.logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
footer p {
    color: #fff;
    padding: 0;
    font-size: 1.1em;
    line-height: 1.3em;
}
@media only screen and (max-width: 894px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    p, li {
        hyphens: auto;
    }
    li {
        padding-left: 1.5rem;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width: 680px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem;
    }
}
@media only screen and (max-width: 480px) {
    .logo {
        flex-direction: column;
        align-items: center;
    }
    .logo p {
        text-align: center;
    }
}