@charset "UTF-8";

/* お問い合わせ
------------------------------- */
form div {
    margin-bottom: 20px;
}
label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}
input[type="text"],
input[type="email"],
textarea {
    border: 2px #0bd solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    max-width: 240px;
}
textarea {
    width: 100%;
    max-width: 480px;
    height: 6rem;
}

/* ボタン
------------------------------- */
.button {
    font-size: 1rem;
    background: #0bd;
    color: #fff;
    border-radius: 5px;
    padding: 1rem 2rem;
    margin: 1rem 2rem 1rem 0;
}
.button:hover {
    background: #0090aa;
}
