@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 600px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2, a {
    color: #E02828;
    font-weight: 400;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0;
    font-size: 1.6em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.75em;
}
h1 + p {
    font-size: 1.22em;
    line-height: 1.2;
}
.title {
    padding: 0 1.5rem;
    margin-top: -6.6rem;
}
h2 {
    font-size: 1.067em;
    line-height: 1.3;
    margin-bottom: 0.1rem;
}
a {
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.25rem;
    list-style: none;
}
li {
    padding-left: 1.2rem;
}
ul li:before {
    content: url('icon.jpg');
    float: left;
    margin-top: 0;
    margin-left: -1.2rem;
}
.flex {
    padding: 0 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
}
article, footer {
    width: 49%;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    i br {
        display: none;
    }
    .flex {
        padding: 0 1rem 1rem;
        display: block;
    }
    article, footer {
        width: 100%;
    }
    p {
        text-align: left;
    }
    .title {
        padding: 0 1rem;
        margin-top: 0;
    }
}