@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v15-latin-regular.eot');
    src: url('../fonts/source-sans-3-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-regular.svg#SourceSans3') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v15-latin-700.eot');
    src: url('../fonts/source-sans-3-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-700.svg#SourceSans3') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #002742;
    font: 400 1em/1.3em 'Source Sans 3', Arial, sans-serif;
}
h1, h2, h4 {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1.125em;
    text-transform: uppercase;
    line-height: 1.3;
}
h1 span {
    text-transform: none;
    font-weight: 400;
}
h1 + p {
    padding: 0;
}
h2 {
    font-size: 2.625em;
    line-height: 0.84;
    text-transform: uppercase;
    margin-bottom: 0;
}
h3 {
    font-size: 1.125em;
    line-height: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
}
h4 {
    font-size: 1.5em;
    line-height: 0.8;
    text-transform: uppercase;
    padding-right: 0.5rem;
    border-right: 2px solid #fff;
}
h4 span {
    font-size: 1.25em;
}
:is(h2, h4) span {
    display: block;
}
:is(h2, h4) span, h3, .color {
    color: #478E3C;
}
header {
    position: absolute;
    top: 0;
    right: 0;
}
article {
    padding: 2rem 2rem 1rem;
}
.flex {
    display: flex;
    gap: 1rem 1.5rem;
    position: relative;
    flex-wrap: wrap;
}
.flex:before {
    content: "";
    height: 97%;
    border: 1px solid #fff;
    position: absolute;
    left: 45%;
    top: 1%;
}
.flex p {
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.3;
}
.flex div {
    display: flex;
    gap: 0.25rem;
    width: fit-content;
    align-items: flex-start;
}
.ttl {
    padding-left: 0.75rem;
    border-left: 3px solid #478E3C;
}
footer {
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    background: #002742;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
figure {
    display: flex;
    align-items: flex-end;
}
figcaption {
    font-size: 0.875rem;
    line-height: 1.3;
}
figcaption img {
    margin-bottom: -0.5rem;
}
footer p, figcaption, h4 {
    color: #fff;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h4 {
        padding: 0;
        border: 0;
    }
    header {
        display: flex;
        justify-content: center;
        position: static;
    }
    article {
        padding: 2rem 2rem 1rem;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hide_m {
        display: none;
    }
    .flex:before {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    .flex {
        flex-direction: column;
        align-items: center;
    }
    footer, article {
        padding: 1rem;
    }
}