@charset "utf-8";

h3 {
    font-size: 1.3em;
    font-weight: 700;
    padding: 15px;
}

/*予約フォーム
-----------------------------------------------*/
.reservation_form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #000;
}

.reservation_form th {
    width: 30%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    border: 1px solid #2e2e2e;
}

.reservation_form td {
    width: 70%;
    padding-left: 10px;
    font-weight: bold;
    border: 1px solid #2e2e2e;
}

.reservation_form input[type="text"],
.reservation_form input[type="tel"],
.reservation_form input[type="email"] {
    width: 100%;
    border-left: 8px solid #f16a6a;
    padding: 5px;
}

.reservation_form input[type="number"],
.reservation_form input[type="date"] {
    border-left: 8px solid #f16a6a;
    padding: 5px;
}

.reservation_btn input {
    width: 80px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #2e2e2e;
    border-radius: 5px;
    background: #e2e2e2;
}

.reservation_btn input:hover {
    opacity: 0.7;
}

.reservation_btn input:first-child {
    margin-right: 30px;
}

.reservation_btn {
    text-align: center;
    padding-top: 25px;
}

/*注意事項
-----------------------------------------------*/

.attention_box {
    text-align: left;
}

.attention_title {
    margin-top : 30px;
}

.attention_text {
    padding-left: 35px;
    font-weight: 700;
}