@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.125em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 744px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('./bg.jpg') no-repeat top left -1px;
    overflow: hidden;
    padding: 1rem 5rem 1rem 6.5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
.hide_d {
    display: none;
}
.font {
    font: 0.938em/1.3 'Times New Roman', Times, serif;
}
.font1 {
    font: 0.875em/1.3 'Times New Roman', Times, serif;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.188em;
    line-height: 1.2;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font: 1em/1.3 'Times New Roman', Times, serif;
    letter-spacing: 5px;
    font-weight: 400;
}
h2 + p {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.75rem;
}
a {
    color: #00f;
    text-decoration: underline;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    position: absolute;
    top: 0;
    right: 0;
}
@media only screen and (max-width:743px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #fff;
    }
    p {
        text-align: left;
    }
    .hide_m {
        display: none;
    }
    .hide_d {
        display: initial;
    }
    header {
        position: static;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}