.section09 {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.location-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 240px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 70px;
}

.location-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/images/section/section09_1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.location-box,
.inquiry-box {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.location-box {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-text-box,
.inquiry-text-box {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: flex-start;
}

.location-text,
.inquiry-text {
    width: 100%;
    display: flex;
    align-items: center;
    color: #001E47;
    font-size: 40px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    word-break: keep-all;
}

.inquiry-box {
    /* flex: 1 1 0; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inquiry2-box {
    width: 100%;
    min-width: 440px;
    min-height: 400px;
    box-sizing: border-box;
    overflow: hidden;
    border-top: 1px black solid;
    border-bottom: 1px black solid;
    display: flex;
    flex-direction: column;
}

.inquiry2-text-box {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    /* padding: 5px; */
    /* gap: 20px; */
}

.nember-container {
    width: 100%;
    min-width: 0;
    height: 170px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.number-box {
    width: 100%;
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-number,
.ceo-number {
    width: 100%;
    display: flex;
    padding-left: 20px;
    justify-content: left;
    align-items: center;
    color: black;
    font-size: 30px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    word-break: keep-all;
    gap: 10px;
}

.company-number {
    letter-spacing: 2px;
}

.inquiry3-text-box {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-container {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.service-box {
    width: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
}

.service-time-in-box {
    width: 100%;
    display: flex;
    align-items: center;
}

.service-time-in {
    width: 100%;
    color: black;
    font-size: 15px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    word-break: keep-all;
}

.service-time-out-box {
    flex: 1 1 0;
    min-width: 0;
    color: #777777;
    font-size: 15px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    word-break: keep-all;
}


/* =========================================================
   태블릿
   ========================================================= */

@media (max-width: 1200px) {

    .location-container {
        padding: 60px;
        gap: 40px;
    }

    .location-box {
        width: 50%;
    }

    .inquiry-box {
        width: 50%;
    }

    .location-text,
    .inquiry-text {
        font-size: 52px;
    }

    .inquiry2-text-box {
        gap: 10px;
    }

    .nember-container {
        width: 250px;
    }

    .company-number,
    .ceo-number {
        font-size: 30px;
    }

    .service-box {
        width: 85px;
        min-width: 85px;
    }
}


/* =========================================================
   모바일
   ========================================================= */

@media (max-width: 767px) {

    .location-container {
        width: 100%;
        padding: 60px 20px;
        flex-direction: column;
        gap: 60px;
        align-items: stretch;
    }

    .location-box,
    .inquiry-box {
        width: 100%;
        max-width: none;
    }

    .location-text-box,
    .inquiry-text-box {
        height: auto;
        min-height: 70px;
        padding: 0;
    }

    .location-text,
    .inquiry-text {
        font-size: 40px;
        line-height: 1.25;
    }

    .location-box > div:last-child {
        width: 100%;
        height: auto !important;
        aspect-ratio: 16 / 9;
    }

    .location-box > div:last-child img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 16px !important;
        object-fit: cover;
    }

    .inquiry2-box {
        min-height: 0;
    }

    .inquiry2-text-box {
        min-height: 0;
        padding: 25px 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .inquiry2-text-box > div:first-child {
        width: 80px !important;
        height: 80px !important;
        flex: none !important;
    }

    .inquiry2-text-box > div:first-child svg {
        width: 60px;
        height: 60px;
    }

    .nember-container {
        width: 100%;
        height: auto;
        gap: 8px;
    }

    .number-box {
        min-height: 55px;
    }

    .company-number,
    .ceo-number {
        font-size: 28px;
        line-height: 1.3;
    }

    .inquiry3-text-box {
        padding: 25px 0;
        gap: 0;
    }

    .service-container {
        min-height: 45px;
        align-items: flex-start;
    }

    .service-box {
        width: 75px;
        min-width: 75px;
    }

    .service-time-in {
        font-size: 14px;
        line-height: 22px;
    }

    .service-time-out-box {
        font-size: 14px;
        line-height: 22px;
    }
}


/* =========================================================
   작은 모바일
   ========================================================= */

@media (max-width: 480px) {

    .location-container {
        padding: 50px 16px;
        gap: 50px;
    }

    .location-text,
    .inquiry-text {
        font-size: 34px;
    }

    .location-box > div:last-child {
        aspect-ratio: 4 / 3;
    }

    .company-number,
    .ceo-number {
        font-size: 24px;
    }

    .service-box {
        width: 70px;
        min-width: 70px;
    }

    .service-time-in,
    .service-time-out-box {
        font-size: 13px;
        line-height: 21px;
    }
}