﻿
.error-message {
    margin-top: 15px;
    font-size: 18px;
    display: none;
    color: red;
    font-weight: bold;
}


/* 入力欄 */
.order-form-container {
    margin-top: 20px;
    margin-bottom: 0px;
}
    .order-form-container .form-control {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background-color: #d5e6cf !important;
        border-radius: 4px !important;
    }

.input-table {
    border-collapse: separate;
    border-spacing: 0 15px;
}


.order-label {
    width: 100px;
}

.order-input-label {
    width: 155px;
    text-align: center;
}

.order-txtbox {
    width: 400px !important;
}


/* ポリシー文言 */
.order-policy-box {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    height: 250px;
    overflow-y: auto;
    margin: 20px;
    border: 2px solid #ccc;
    background-color: #eee;
}



/* 発注ボタン */
.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 150px;
    border: 1px solid #36990f;
    background-color: #36990f;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 3px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .btn-next:hover {
        border: 2px solid #36990f;
        background-color: white;
        color: black;
    }

input[type="submit"].btn-next:active {
    background-color: #2c7a0f !important;
    border-color: #2c7a0f !important;
    color: white !important;
}

.order-btn-group {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* 完了画面 */
.order-email-notice {
    margin: 20px 0px;
    text-align: center;
    display: block;
    font-weight: bold;
}