@charset "utf-8";

body::before {
    background: initial;
}

body {
    background-color: #fff;
}

div#contents {
    margin-top: 200px;
    background-color: white;
    border: initial;
}

div#inquiry-form {
    margin: auto;
    width: 100%;
    padding: 20px 0;
}

div#inquiry-form form p {
    color: black;
    text-align: left;
    margin: 14px;
}

div#inquiry-form form p input {
    border-radius: 3px;
    width: 100%;
    border:0;
    padding: 10px 0;
    border:solid 1px #ccc;
}

div#inquiry-form form p textarea {
    height: 90px;
    resize: none;
    border-radius: 3px;
    width: 100%;
    border:0;
    padding: 10px 0;
    border:solid 1px #ccc;
}

div#inquiry-form form p.button {
    text-align: center;
}

div#inquiry-form form p.button button {
    text-align: center;
    font-size: 14px;
    width: 100px;
    height: 50px;
    border: solid 1px black;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}
span.warn {
    color: red;
}

@media only screen and (min-width: 520px) {
    body {
        background: none;
    }
    div#contents {
        margin-top: 300px;
        background-color: white;
        border: initial;
    }
}

@media only screen and (min-width: 769px) {
    div#contents {
        margin-top: 300px;
        padding-bottom: 220px;
        text-align: center;
        font-weight: normal;
    }
    div#inquiry-form {
        width: 500px;
    }
}

