@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 0.875em/1.4em "Segoe UI", Arial, sans-serif;
}
h2, strong {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 3em;
    line-height: 1.3;
    font-weight: normal;
}
h1 small {
    font-size: 1.25rem;
    line-height: 1.3;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
    color: #512770;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
li:before {
    content: "›";
    color: #562B74;
    font-size: 1.5em;
    line-height: 1;
    float: left;
    margin: -5px 0 0 -0.625rem;
}
main {
    padding: 2rem 2rem 0.5rem;
}
.ttl {
    position: absolute;
    top: 14rem;
    left: 2rem;
}
.ttl :is(p, h1) {
    color: #fff;
}
.ttl p {
    font-size: 1.25em;
    line-height: 1.3;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 49%;
}
.flex-ft {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 2rem;
}
footer {
    display: flex;
    justify-content: space-between;
}
footer strong {
    color: #0D2A63;
    font-size: 1.375em;
    line-height: 1.3;
}
footer p {
    padding-bottom: 0.5rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    br {
        display: none;
    }
    .ttl {
        position: static;
    }
    .ttl :is(p, h1) {
        color: #000;
    }
}
@media only screen and (max-width: 780px) {
    h1 {
        font-size: 2em;
    }
    .flex, footer {
        flex-direction: column;
    }
    .flex div {
        width: auto;
    }
    .flex-ft {
        width: 100%;
    }
    .nopad {
        padding: 0;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem 1rem 0.5rem;
    }
}