@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "PT Sans", serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 820px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
article p, footer p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1.5rem 0;
    font-size: 2em;
    line-height: 1.1;
    width: 479px;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.286em;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
section h2 {
    color: #6983A0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
li:before {
    content: url('icon.jpg');
    position: relative;
    float: left;
    margin-top: 1px;
    margin-left: -1.3rem;
}
header {
    padding: 2rem;
    color: #fff;
    background: #6983A0;
}
header img {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.font {
    font-size: 0.8em;
}
.bottom{
    padding-bottom: 0;
}
.color {
    color: #D2DB2A;
}
.flex, main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.apply {
    padding: 1rem 0 2rem;
}
.button {
    background: #6983A0;
    font-size: 1.188em;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: #fff;
}
.button i {
    font-size: 0.813em;
}
main {
    padding: 2rem;
}
article {
    width: 64%;
}
footer {
    border: 2px solid #6983A0;
    padding: 1rem 1rem 0;
    max-width: 251px;
    height: 370px;
}
figure {
    margin-bottom: 1rem;
}
@media only screen and (max-width:819px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding-bottom: 1rem;
    }
    .hide_m, i br , h2 br, h1 br {
        display: none;
    }
    p a {
        display: inline-block;
    }
    p {
        text-align: left;
    }
    header, main {
        padding: 1rem;
    }
    article {
        width: 100%;
    }
    header img {
        position: static;
        margin-bottom: 1rem;
    }
    footer {
        height: auto;
        max-width: 100%;
    }
    h1 {
        width: auto;
        font-size: 1.65em;
    }
}