@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;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 560px;
    border: solid 1px #000;
    background: #fff;
}
p {
    padding-bottom: 0.3rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    background: url('../images/icon.png') no-repeat -1px 3px;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.35em;
    line-height: 1.3;
}
h1 small {
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
header {
    padding: 1rem;
}
header p, h1 {
    text-align: center;
}
article {
    padding: 0 1rem 1rem;
}
footer {
    padding: 0 1rem 0.5rem;
    position: relative;
}
.logo {
    position: absolute;
    right: 3rem;
    top: 0;
}
:is(a:link,a:hover,a:visited,a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:559px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
         position: static;
        padding-top: 0.5rem;
        display: flex;
        justify-content: center;
    }
    p :is(a,span) {
        display: inline-block;
    }
    footer p{
        text-align: center;
    }
    .hide_m{
        display: none;
    }
}