/* Company Profile Styles */

/* 
 * SWEET SPOT CONFIGURATION 
 * Tune these variables to find the perfect layout.
 */
:root {
    --company-content-width: 1000px;
    --company-side-padding: 20px;
    --company-map-height: 400px;
    --company-map-margin-bottom: 60px;
    --company-row-padding-y: 18px;
    --company-title-margin-bottom: 60px;
    
    /* Mobile (SP) Sweet Spot */
    --sp-company-side-padding: 40px;   /* Increase this to make separator lines shorter on mobile */
    --sp-company-row-padding-y: 15px;
}

.company-page {
    position: relative;
    padding-bottom: 80px;
    background-color: #F8FAFC; /* Standard consistent premium background */
}

/* Old CSS bg-layer removed — now using global bpo-mask-bg.png */

.company-content-inner {
    max-width: var(--company-content-width);
    margin: 0 auto;
    padding: 60px var(--company-side-padding);
    position: relative;
    z-index: 1;
}

.company-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a233a;
    margin-bottom: var(--company-title-margin-bottom);
    letter-spacing: 0.05em;
}

/* MAP Area */
.company-map-placeholder {
    width: 100%;
    height: var(--company-map-height);
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--company-map-margin-bottom);
}

.company-map-placeholder span {
    font-size: 48px;
    font-weight: 700;
    color: #2b3d4f;
    letter-spacing: 0.05em;
}

/* Info Table */
.company-info-table {
    margin-bottom: 60px;
    border-top: 1px solid #7f8b99;
}

.company-dl {
    width: 100%;
}

.company-dl-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #7f8b99;
    padding: var(--company-row-padding-y) 0;
}

.company-dl-row:last-child {
    border-bottom: 1px solid #7f8b99;
}

.company-dl-row dt {
    width: 25%;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    padding-right: 20px;
}

.company-dl-row dd {
    width: 75%;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Branch Offices */
.office-block {
    margin-bottom: 30px;
}

.office-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #7f8b99;
    padding-bottom: 8px;
}

.office-address {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.office-address a {
    color: #555;
    text-decoration: underline;
    margin-left: 10px;
}



/* Helpers */
.sp-slash {
    display: none;
}

/* Responsiveness */
@media (max-width: 768px) {
    .company-content-inner {
        padding: 40px var(--sp-company-side-padding);
    }

    .company-dl-row {
        flex-direction: column;
        padding: var(--sp-company-row-padding-y) 0;
    }

    .company-dl-row dt {
        width: 100%;
        margin-bottom: 12px;
    }

    .company-dl-row dd {
        width: 100%;
        padding-left: 20px;
    }

    .office-address {
        padding-left: 20px;
        margin-top: 10px;
    }

    .sp-slash {
        display: inline;
    }
    
    .pc-br {
        display: none;
    }
}
