@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1em/1.3em Verdana, Tahoma, Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: solid 1px #000;
    background: #fff;
}
h1 {
    margin: 0 0 0.625rem;
    font-size: 1.813em;
    line-height: 1.2em;
}
h2 {
    margin-bottom: 1.25rem;
    font-size: 1.6em;
    line-height: 1.2em;
}
h1 span {
    font-size: 0.7em;
}
main {
    border-left: 12px solid #773E78;
}
.hide_m {
    display: block;
}
.hide_d {
    display: none;
}
header {
    position: relative;
}
header p {
    position: absolute;
    top: 44.5%;
    left: 12.25%;
    font-size: 0.82em;
    line-height: 1.3em;
}
header > a:first-of-type {
    position: absolute;
    left: 4%;
    top: 3%;
    width: 35%;
    height: 10%;
}
header > a:last-of-type {
    position: absolute;
    left: 11%;
    top: 16%;
    width: 21%;
    height: 32%;
}
article {
    position: absolute;
    left: 2.25rem;
    bottom: 2rem;
}
footer {
    position: relative;
    margin: -32px 0 0 0;
    padding: 0.5rem 0.75rem 0.25rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 929px) {
    body {
        text-align: center;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    .hide_d {
        display: block;
    }
    main {
        border-left: none;
    }
    article {
        position: static;
        padding: 0.8rem 0.75rem 0;
    }
    footer {
        margin: 0;
    }
}
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.375em;
    }
}