@charset "UTF-8";


section td li::after {
    content: "、";
}
section td li:last-child::after,
td li li:last-child::after {
    content: "";
}

/* お電話でのお問い合わせ */
section p a {
    margin-right: 1em;
    color: #333;
    font-size: 1.7em;
    font-weight: bold;
    text-decoration: none;
}
@media screen and ( min-width:750px ){
    section p br {
        display: none;
    }
}
section span {
    margin-right: 0.5em;
    padding: 0.3em 0.5em;
    background: #333;
    color: #FFF;
    font-size: 0.8em;
}

/* メールでのお問い合わせ */
section h3:last-of-type {
    margin-top: 2em;
}
input[type=email] {
    width: 50%;
}
textarea {
    width: 100%;
    height: 15em;
}
form div {
    margin-top: 2em;
    text-align: center;
}
input[type=submit] {
    padding: 0.3em 1em;
    border: none;
    background: #0036AD;
    color: #FFF;
    cursor: pointer;
}
input[type=submit]:hover {
    background: #F0061C;
}
input[type=button] {
    padding: 0.3em 1em;
    border: none;
    background: #444;
    color: #FFF;
    cursor: pointer;
}
input[type=button]:hover {
    background: #CCC;
}
@media screen and ( max-width:750px ){
    section table {
        width: 100%;
    }
    section th,
    section td {
        width: 100%;
        box-sizing: border-box;
        display: block;
    }
    input[type=email] {
        width: 90%;
    }
}