/*--------------------------------------------------------------------------------*/
.bring-to-front-for-recaptcha {
    z-index: 10;   
}



/*--------------------------------------------------------------------------------*/
.loading-wrapper {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
}
    .loading-spinner {
        /* Spinner Animation */
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: loading-spin-frame 1s linear infinite;
        margin: auto;
    }

    @keyframes loading-spin-frame {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }



/*--------------------------------------------------------------------------------*/
.white-container {
    background-color: #fff;
    color: #333;
    
    padding: 0px 20px;
}

.background-container {
    background-color: #EBE4CE;
    color: #333;
    
    padding: 0px 20px 0px;
}



/*--------------------------------------------------------------------------------*/

.card-common-title {
    padding: 20px;

    border-radius: 5px;
}

    .card-common-title-top {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

        .card-common-title-icon {

        }
            .card-common-title-icon img {
                width: 100%;
                max-width: 50px;

                aspect-ratio: 1 / 1;

                margin-top: 4px;
            }
        .card-common-title-title {
            font-size: 24px;
            font-weight: 600;
        }




/*--------------------------------------------------------------------------------*/

#company-top-image {
    position: relative;

    padding: 0px 20px;
}
    #company-top-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;

        background-color: #ebe4ce;
        z-index: -1;
    }

    #company-top-image img {
        width: 100%;

        border-radius: 5px;
    }




    


/*--------------------------------------------------------------------------------*/
.company-information {

    background-color: #fff;
    
    border-radius: 5px;

    margin: 0px 0px 20px 0px;
    padding: 0px 10px 10px;
}

    .company-information table {
        border-collapse: collapse;
    }


    .company-information tr {
        vertical-align: top;
        text-align: left;

        border-bottom: 1px solid #ccc;
    }
    
        .company-information th {
            min-width: 70px;
            width: 70px;
        }

        .company-information td {
            width: 100%;
        }

        .padding-bottom {
            padding: 10px 0px;
        }





/*--------------------------------------------------------------------------------*/
.contact-item-container {
    
}

    .contact-item {
        margin: 5px 0px;
    }

        .contact-item-title {
            font-size: 20px;
            font-weight: 500;
            color: #333333;
            
            margin: 10px 0px 0px 0px;
        }
        
        .contact-item-value {
            margin: 10px 0px;
        }


            .contact-item-container input {
                width: 100%;
                height: 37px;
                background-color: #F1F1F1;
                border-width: 0;

                padding: 5px 10px;

                font-size: 18px;
                font-weight: 600;

                color: #A6A294;

                border-radius: 5px;
            }

                .contact-item-container input::placeholder {
                    opacity: 0.5;
                }


            .contact-item-container select {
                border-width: 0px;
                width: 100%;
                height: 37px;
                padding: 10px;

                color: #A6A294;
                background-color: #F1F1F1;

                font-size: 18px;
                font-weight: 400;

                border-radius: 5px;
            }


            .contact-item-container textarea {
                border-width: 0px;

                padding: 10px;

                width: 100%;
                height: 180px;

                font-size: 18px;
                font-weight: 600;

                color: #A6A294;
                background-color: #F1F1F1;

                border-radius: 5px;
            }
                .contact-item-container textarea::placeholder {
                    opacity: 0.5;
                }





/*--------------------------------------------------------------------------------*/
#line-contact-button {
    all: unset; /* 버튼의 기본 스타일 모두 제거 */

    background-color: #06c755;

    border-radius: 5px;

    width: 100%;
    height: 54px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin: 0px 0px;

    cursor: pointer;
}
 
    .line-contact-icon {
        width: 44px;
        aspect-ratio: 1 / 1;
    }

    .line-contact-text,
    .line-contact-text:hover {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }


/*--------------------------------------------------------------------------------*/
#contact-submit-button {
    all: unset; /* 버튼의 기본 스타일 모두 제거 */

    background-color: #5a9f4e;

    border-radius: 5px;

    width: 100%;
    height: 54px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin: 10px 0px;

    cursor: pointer;
}

    .contact-submit-text {
        color: #fff;
        font-size: 24px;
        font-weight: 600;
    }
