@font-face{font-family:'SBagroB'; src:url('../fonts/SBagroB.woff')}

/*이미지 리사이징됐을때 화질개선 이미지랜더링*/
img[src$=".gif"], img[src$=".png"] {
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

div {
background: url(chessboard.gif) no-repeat 50% 50%;
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input:focus { outline: none; }
button{cursor: pointer;}
a{text-decoration: none;}

/*폰트*/


*{font-family: 'pretendard', sans-serif;box-sizing: border-box;}
html{
    scroll-behavior: smooth;
}
body{font-family: 'pretendard', sans-serif;line-height: 1.3;}

.wrap{}
.container{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.radio-group {
    display: flex;
    align-items: center;
}

.radio-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.radio-item:last-child {
    margin-right: 0;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    margin-top: 0;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

textarea#privacy_policy {
    width: 100%;
    height: 200px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    background-color: #f9f9f9;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

button[type="submit"] {
    width: 100%;
    background: #2447A1;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:hover {
    background: linear-gradient(to right, #0056b3, #004494);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section1{margin-bottom: -10px; position: relative;}
.form-wrap{
    background-color: #f7f7f7;
}
#form1 {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px;
    border-radius: 8px;
}

footer {
    background-color: #f8f8f8;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-info {
    margin-bottom: 20px;
    text-align: center;
}

.footer-info.business-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.footer-info.business-info p {
    font-size: 15px;
    line-height: 2;
    color: #555;
}

.footer-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.footer-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 2px 0;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.phone-group input,
.phone-group select {
    flex: 1;
    width: 100% !important;
    text-align: center;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
}

.phone-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.phone-group span {
    color: #666;
    flex: 0 0 auto;
}

.error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* 퀵버튼 스타일 */
.quick-buttons {
    position: fixed;
    right: 20%;
    top: 10%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #007bff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.quick-btn:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

.quick-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.quick-btn span {
    font-size: 12px;
    text-align: center;
}

.phone-btn {
    background-color: #28a745;
}

.phone-btn:hover {
    background-color: #218838;
}

.chat-btn {
    background-color: #17a2b8;
}

.chat-btn:hover {
    background-color: #138496;
}


/* 반응형 */
@media (max-width: 1600px) {
    .quick-buttons {
        right: 5px;
    }
}









