@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6b696b;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 58.25rem;
    margin: 0.3125rem auto;
    padding: 1rem;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

a.link {
    color: #00e;
    text-decoration: underline;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 0.9375rem;
}

ul li:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4375rem 0 0.4375rem 0.4375rem;
    border-color: transparent transparent transparent #B1B0B1;
    transform: rotate(0deg);
    float: left;
    position: relative;
    top: 0.3125rem;
    margin: 0 0 0 -0.9375rem;
}

h1 {
    font-size: 1.5rem;
    margin: 0;
    width: calc(100% - 11.25rem);
}

h2 {
    font-size: 1.125rem;
    margin: 0 0 0.9375rem;
}

h3 {
    font-size: 1.1875rem;
    margin: 0 0 1.5625rem;
}

header {
    margin: 0 0 9.375rem;
}

.title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    width: 10rem;
    height: 3.875rem;
    border: 0.0625rem solid #D4D4D4;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    display: block;
}

.box,
.title {
    border-top: 0.0625rem solid #D4D4D4;
    border-left: 0.0625rem solid #D4D4D4;
    border-right: 0.0625rem solid #D4D4D4;
    padding: 1rem;
}

footer {
    border: 0.0625rem solid #D4D4D4;
    padding: 1rem;
}

footer h3 {
    margin: 2.5rem 0 1.5625rem;
}

footer > p:last-of-type {
    margin: 0;
}

@media only screen and (max-width: 58.1875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h2 {
        margin: 0 0 0.3125rem;
    }

    h3 {
        margin: 0 0 0.625rem;
    }

    header {
        margin: 0 0 1.25rem;
    }

    footer h3 {
        margin: 0 0 0.625rem;
    }
}

@media only screen and (max-width: 31.25rem) {
    h1 {
        width: 100%;
    }

    header {
        margin: 0 0 0.3125rem;
    }

    .title {
        flex-direction: column;
        gap: 1rem;
    }
}