@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&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: #333333;
    font: 400 1em/1.3em "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #007E3D;
    background: url('bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 2rem 4rem;
    height: 725px;
}
p {
    padding-bottom: 0.5rem;
}
h2,h3, strong {
    font-weight: 700;
}
h1 {
    margin: 0.5rem 0;
    font-size: 3em;
    line-height: 0.8;
    font-family: 'Nanum Pen Script', cursive;
    color: #627179;
    font-weight: 400;
}
h1 span {
    font-size: 0.7em;
}
h2, h3 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
h3 {
    color: #007E3D;
    margin-bottom: 1rem;
}
a {
    color: #333333;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    float: left;
    margin-left: -1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 1rem;
}
.flex div {
    width: 48%;
}
footer {
    display: none;
}
@media only screen and (max-width: 549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem 1rem 0;
        background: #F1ECE4;
    }
    header {
        display: flex;
        justify-content: center;
    }
    h1 {
        text-align: center;
        margin: 1rem 0;
    }
    p {
        text-align: left;
    }
    footer {
        display: block;
        margin: 1rem -1rem 0;
    }
    .hide_m {
        display: none;
    }
}