@charset "utf-8";
/* CSS Document */
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font: 15px /15px 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'Droid Sans', 'Roboto', Meiryo, sans-serif;
    text-align: center;
    color: #FEFEFE;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
}
h1 {
    line-height: 1em;
    font-weight: bold;
}
h2 {
    line-height: 1em;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #585858;
}
footer p {
    font-size: 1.5em;
    line-height: 1em;
    margin-bottom: 20px;
}
a {
    color: #FEFEFE;
    transition: 0.1s;
}
a:visited {
    color: #FEFEFE;
}
a:link {
    color: #FEFEFE;
}
a:hover {
    color: #585858;
    transition: 0.1s;
}
@media screen and (min-width:751px) {
    h1 {
        margin: 140px 0 60px;
        font-size: 3.6em;
    }
    h2 {
        margin: 4% 0 1%;
        font-size: 1.8em;
    }
    section {
        width: 60%;
        margin: 0 auto 5%;
    }
    section p {
        margin-top: 20px;
        line-height: 2.4em;
    }
}
@media screen and (max-width:750px) {
    h1 {
        margin: 15% 0 10%;
        font-size: 2em;
    }
    h2 {
        margin: 2% 0 1%;
        font-size: 1.4em;
    }
    section {
        width: 80%;
        margin: 0 auto 30%;
    }
    section p {
        margin-top: 20px;
        line-height: 1.6em;
    }
    footer {
        width: 100%;
        font-size: 12px;
    }
}