@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.5em Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    max-width: 810px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 1.5rem;
}
article>p:first-of-type span, h1 {
    font-family: "Time New Roman", serif;
    color: #8E0038;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2.55em;
    line-height: 1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1em;
    line-height: 1.2;
    color: #8E0038;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 3.7rem;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.85rem;
}
hr {
    border: none;
    background: #000;
    height: 1px;
    margin: 1rem 0 1.5rem;
}
.logo-top {
    padding: 1.5rem 2rem;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    10% {
        left: 0%;
    }
    20% {
        left: -100%;
    }
    30% {
        left: -100%;
    }
    40% {
        left: -200%;
    }
    50% {
        left: -200%;
    }
    60% {
        left: -300%;
    }
    70% {
        left: -300%;
    }
    80% {
        left: -400%;
    }
    90% {
        left: -400%;
    }
    100% {
        left: -500%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    10% {
        left: 0%;
    }
    20% {
        left: -100%;
    }
    30% {
        left: -100%;
    }
    40% {
        left: -200%;
    }
    50% {
        left: -200%;
    }
    60% {
        left: -300%;
    }
    70% {
        left: -300%;
    }
    80% {
        left: -400%;
    }
    90% {
        left: -400%;
    }
    100% {
        left: -500%;
    }
}
header section {
    overflow: hidden;
}
header section figure img {
    width: 16.666666%;
    float: left;
}
header section figure {
    position: relative;
    width: 600%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 35s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 35s slidy infinite;
}
article {
    padding: 2rem 2rem 0;
}
article>p:first-of-type {
    font-size: 1.2em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
.information {
    margin-left: 1.85rem;
}
.information p:last-of-type {
    margin-top: 1rem;
}
footer {
    padding: 0 2rem 1.5rem;
}
.logo {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
@media only screen and (max-width:809px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo-top {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    hr {
        margin-top: 0;
    }
    h1 {
        font-size: 2em;
    }
    article {
        padding: 1rem 1rem 0;
    }
    .information {
        margin-left: 0;
    }
    .information p:last-of-type {
        margin-top: 0;
    }
    footer {
        padding: 0 1rem 1rem;
    }
    footer :is(p, h3) {
        text-align: center;
    }
    .logo {
        flex-direction: column;
        align-items: center;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}