.quick-wrap{
    max-width:900px;
    margin:0 auto;
    padding:40px 20px;
}

.quick-title{
    font-size:32px;
    font-weight:800;
    margin-bottom:24px;
}

.quick-photo{
    width:100%;
    height:auto;
    display:block;
    border-radius:18px;
    margin-bottom:24px;
    box-shadow:0 4px 14px rgba(0,0,0,.12);
}

.quick-card{
    background:white;
    border-radius:18px;
    padding:28px;
    margin-bottom:24px;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.quick-card h4{
    margin-top:0;
    margin-bottom:22px;
    font-size:22px;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px 24px;
}

.quick-grid .full{
    grid-column:1 / -1;
}

.form-row{
    margin-bottom:18px;
}

.form-row label{
    display:block;
    font-weight:bold;
    margin-bottom:8px;
}

.form-row input,
.form-row select,
.form-row textarea{
    width:100%;
    max-width:420px;
    height:44px;
    padding:9px 12px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:8px;
    box-sizing:border-box;
}

.form-row textarea{
    height:auto;
}

.radio-box ul{
    list-style:none;
    padding-left:0;
    margin:8px 0 0 0;
}

.radio-box li{
    margin-bottom:10px;
}

.radio-box label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:18px;
    font-weight:600;
}

.radio-box input[type="radio"]{
    width:18px;
    height:18px;
    margin-right:8px;
    transform:none;
}

.option-line{
    margin-bottom:14px;
}

.option-line label{
    font-weight:bold;
}

.quick-btn{
    width:100%;
    height:54px;
    border:0;
    border-radius:999px;
    background:#7a0d52;
    color:white;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
}

.quick-btn:hover{
    background:#5f0a40;
}

.result-price{
    font-size:42px;
    font-weight:900;
    color:#7a0d52;
    text-align:center;
    margin:30px 0;
}

.result-list{
    line-height:1.9;
    font-size:16px;
}

.notice{
    color:#777;
    font-size:14px;
    line-height:1.6;
}

.shape-image{
    display:block;
    width:100%;
    max-width:320px;
    height:auto;
    margin:15px auto;
    border:1px solid #eee;
    border-radius:12px;
    background:#fff;
    padding:8px;
    box-sizing:border-box;
}

@media (max-width:768px){

    .quick-wrap{
        padding:28px 14px;
    }

    .quick-title{
        font-size:28px;
    }

    .quick-card{
        padding:22px;
    }

    .quick-photo{
        width:100%;
        height:auto;
        max-height:none;
        object-fit:contain;
        object-position:center center;
    }

    .quick-grid{
        grid-template-columns:1fr;
    }

    .quick-grid .full{
        grid-column:auto;
    }

    .shape-image{
        max-width:260px;
    }

    .radio-box label{
        font-size:17px;
    }

    .radio-box input[type="radio"]{
        width:16px;
        height:16px;
    }

    .result-price{
        font-size:34px;
    }
}