    /* 共通のスタイル */
    body {
        font-size: 16px;
        line-height: 1.5;
        background-color: #f8f9fa;
        padding: 10px;
    }
    div#logo {
        margin: 10px auto;
        text-align: center;
    }
    /* 見出し */
    h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    /* フォームのスタイル */
    .form-container {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding: 15px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* フォームグループのデザイン */
    .form-group {
        margin-bottom: 15px;
    }

    /* ラベル */
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    /* 入力フィールド */
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    input[type="number"], 
    select {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
        background-color: #fff;
    }

    /* ラジオボタンとチェックボックス */
    input[type="radio"], 
    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        vertical-align: middle;
    }

    /* ラジオボタンとテキストの調整 */
    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    /* ラジオボタンのホバー */
    .radio-group label:hover {
        background-color: #e9ecef;
    }

    /* 選択されたラジオボタンのデザイン */
    input[type="radio"]:checked + label {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    /* ボタンデザイン */
    button {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    button:hover {
        background-color: #0056b3;
    }

    /* スマホ対応 */
    @media (max-width: 480px) {
        body {
            font-size: 14px;
            padding: 5px;
        }

        .form-container {
            padding: 10px;
        }

        label {
            font-size: 14px;
        }

        input[type="radio"], 
        input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }

        button {
            font-size: 16px;
            padding: 10px;
        }

        /* フローの調整 */
        #satei_flow ul {
            flex-direction: column;
            gap: 10px;
        }

        .satei_flowbox {
            width: 100%;
        }

        .satei_flowbox::after {
            content: "";
        }
    }

    /*----------------------------------------------------
                            クイック査定フロー
    ----------------------------------------------------*/
    #satei_flow {
        overflow: hidden;
        padding-bottom: 20px;
    }

    #satei_flow ul {
        list-style-type: none;
        width: 90%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 0;
    }

    #satei_flow ul li {
        border-radius: 10px;
        font-weight: bold;
        display: block;
        color: #323232;
        text-align: center;
        width: 22%;
        border: 1px solid #CCC;
        padding: 20px 3px;
        background: linear-gradient(to bottom, #FFF 0%, #f7e4c0 100%);
        box-shadow: 2px 2px 1px 2px #969696;
        position: relative;
        font-size: 14px;
    }

    /* 矢印アイコン */
    .satei_flowbox span::after {
        content: "▶";
        position: absolute;
        right: -23px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: bold;
        color:rgb(60, 60, 60);
    }

    /* 最後のステップには矢印を付けない */
    .satei_flowbox:last-child span::after {
        content: "";
    }

    /* 未完了のステップ */
    .opacity50 {
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

    /* スマホ対応 */
    @media (max-width: 768px) {
        #satei_flow ul {
            flex-direction: column;
            gap: 10px;
        }
        #satei_flow ul li {
            width:80%;
            margin-bottom: 10px;
        }

        .satei_flowbox {
            width: 100%;
        }

        .satei_flowbox span::after {
            content: "▼";
            right:45%;
            top:115%;
            font-size: 20px;
            font-weight: bold;
            color:rgb(150, 150, 150);
        }
    }

        /* 査定結果のスタイル */
        .result-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .result-container h2 {
            margin-bottom: 15px;
            font-size: 24px;
        }

        .result-container p {
            font-size: 18px;
            margin-bottom: 10px;
        }

        /* 査定額の強調 */
        .result-container .price {
            font-size: 22px;
            font-weight: bold;
            color: #007bff;
        }

        /* 実査定申し込みボタン */
        .result-container button {
            width: 100%;
            padding: 12px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 15px;
        }

        .result-container button:hover {
            background-color: #0056b3;
        }
        /* 実査定申し込み完了ページのスタイル */
        .complete-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .complete-container h2 {
            margin-bottom: 15px;
            font-size: 24px;
            color: #28a745;
        }

        .complete-container p {
            font-size: 18px;
            margin-bottom: 15px;
        }

        /* トップページに戻るボタン */
        .complete-container .btn-back {
            display: inline-block;
            padding: 12px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
        }

        .complete-container .btn-back:hover {
            background-color: #0056b3;
        }