@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Roboto Condensed', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 955px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 3rem 4rem 2rem;
    text-align: left;
}
a {
    color: #000;
    text-decoration: none;
}
p a.ins {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.1em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    font-size: 0.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    font-weight: normal;
    padding-bottom: 1rem;
}
ul {
    padding: 0 0 1rem 1.75rem;
    list-style: none;
}
ul ul {
    padding-bottom: 0;
}
li {
    padding-left: 1.75rem;
    text-align: justify;
    hyphens: auto;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    line-height: 1;
    font-family: Arial, sans-serif;
    float: left;
    margin: -1px 0 0 -1.75rem;
}
ul ul li:before {
    content: "\25CB";
    font-size: 1em;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    display: flex;
    justify-content: space-between;
}
header img {
    margin-top: -0.5rem;
}
header section {
    width: 76%;
}
header section p:first-of-type {
    padding-bottom: 1.5rem;
}
.center {
    text-align: center;
}
p span {
    display: inline-block;
}
@media only screen and (max-width:954px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    br {
        display: none;
    }
    .hide_m{
        display: block;
    }
    ul {
        padding-left: 0.6rem;
    }
    li {
        padding-left: 1rem;
        text-align: left;
    }
    li:before {
        margin-left: -1rem;
    }
    header {
        display: block;
    }
    header figure {
        display: flex;
        justify-content: center;
    }
    header section p:last-of-type {
        padding-left: 0;
    }
    header section {
        width: 100%;
    }
    ul, p, header p {
        hyphens: auto;
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 0.5rem;
    }
}