@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #4C4C4C;
    font-family: "Jost", sans-serif;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 500;
}
#wrapper {
    position: relative;
    max-width: 830px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 10px #F3C749;
    background-color: #fff;
    overflow: hidden;
    padding: 0.75rem 0.75rem 0.5rem;
}
p {
    padding-bottom: 0.25rem;
}
h1 {
    margin: 0;
    font-size: 2.25em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.65em;
}
.block {
    display: block;
    margin-top: 0.25rem;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 1.25rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header>div {
    width: 54%;
}
header p {
    line-height: 1.12em;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.font {
    font-size: 1.08em;
    line-height: 1.3;
}
.gray {
    margin: 0 0 0.5rem;
    background-color: #CCCCCC;
    padding: 0.375rem 0.375rem 1px 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.small {
    font-size: 0.625em;
    line-height: 1.3em;
}
article>h2:last-of-type {
    font-size: 1.375em;
    line-height: 1.3;
    position: absolute;
    right: 2rem;
    bottom: 0.5rem;
}
footer {
    position: absolute;
    bottom: 3.5rem;
    right: 4.5rem;
}
@media only screen and (max-width: 829px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header>div {
        width: auto;
    }
    header {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
    }
    header p {
        padding: 0.5rem 0;
    }
    .gray {
        flex-direction: column;
        gap: 0.625rem;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    .small {
        font-size: 0.8em;
        line-height: 1.3em;
        padding: 0.5rem 0;
    }
    article>h2:last-of-type {
        position: static;
        text-align: center;
    }
    footer {
        position: static;
        margin-top: 0.5rem;
    }
    footer :is(h2, p) {
        text-align: center;
    }
    br:not(footer br){
        display: none;
    }
}