@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;
}
*, figure {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 830px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') no-repeat top right;
    overflow: hidden;
    padding: 5rem;
}
:is(h1, h2, h3, h4, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a[href^="tel:"] {
    white-space: nowrap;
}
p span{
    display: inline-block;
}
p a.ins {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.3em;
    line-height: 1.3;
}
h1 span{
    display: block;
    margin-top: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    margin: 0 0 1rem;
    font-size: 1.333em;
    line-height: 1.1;
}
h4 {
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
    font-family: Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
.big{
    font-size: 1.25em;
}
header {
    padding: 0 0 1rem;
    position: absolute;
    right: 0.8rem;
    top: 5rem;
}
article>h3:first-of-type {
    margin: -2rem 4rem 3rem 0;
    padding-left: 7rem;
    font-size: 1.5em;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #000;
}
article div :is(p, h1, h3, h4) {
    text-align: center;
}
article>h4 {
    margin-bottom: 2rem;
}
@media only screen and (max-width:829px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
        background: none;
    }
    br {
        display: none;
    }
    p span {
        display: inline-block;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        background: #EBEBEB;
        padding: 1rem 1rem 0;
        margin-bottom: 1rem;
    }
    article>h3:first-of-type {
        padding: 0;
        margin: 0 0 1rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
        background: #fff;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
    .pdl {
        padding-left: 1rem;
    }
}