/* =========================================================
   Company Page
========================================================= */

.company-page {
    background: #ffffff;
    color: #17324d;
}


/* =========================================================
   Hero
========================================================= */

.company-hero-inner {
    display: flex;
    align-items: center;
    gap: 70px;

}

.company-hero-copy {
    flex: 1;
}




/* 本文 */
.company-intro {
    max-width: 600px;
    margin: 0;

    color: #526477;

    font-size: 1.15rem;
    line-height: 2;
}


.company-hero-image {
    flex: 1;
}

.company-hero-image img {
    display: block;

    width: 100%;
    height: 360px;

    object-fit: cover;

    border-radius: 4px;
}



/* =========================================================
   Common Section
========================================================= */

.company-profile,
.company-offices,
.company-business {
    width: min(1080px, calc(100% - 80px));
    margin: 0 auto;
}

.company-profile {
    padding: 100px 0;
}

.company-offices {
    padding: 100px 0;
}

.company-business {
    padding: 100px 0;
}




/* =========================================================
   Profile
========================================================= */

.company-profile-list {
    border-top: 1px solid #cbd7e3;
}

.profile-row {
    display: grid;
    grid-template-columns: 240px 1fr;

    border-bottom: 1px solid #dbe4ee;
}

/* 会社概要 */
.profile-label {
    padding: 24px 30px 24px 0;

    color: #64748b;

    font-size: 1.08rem;
    font-weight: 700;

    line-height: 1.8;
}

.profile-value {
    padding: 24px 0;

    color: #243b53;

    font-size: 1.15rem;
    line-height: 1.9;
}


.company-external-link {
    color: #2563eb;
    text-decoration: none;

    transition: 0.25s ease;
}

.company-external-link:hover {
    color: #17324d;
}

.external-arrow {
    margin-left: 8px;
    font-size: 0.75em;
}


/* =========================================================
   Offices
========================================================= */

.company-offices {
    border-top: 1px solid #e0e7ef;
}

.office-list {
    border-top: 1px solid #cbd7e3;
}

.office-item {
    display: grid;
    grid-template-columns: 70px 250px 1fr;
    gap: 30px;

    padding: 32px 0;

    border-bottom: 1px solid #dbe4ee;
}

.office-number {
    color: #2563eb;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* 事業所 */
.office-name h3 {
    margin: 0;

    color: #17324d;

    font-size: 1.5rem;
    line-height: 1.6;
}

.office-detail {
    color: #526477;

    font-size: 1.12rem;
    line-height: 1.9;
}


.office-detail p {
    margin: 12px 0 0;

    color: #17324d;

    font-size: 0.85rem;
}


/* =========================================================
   Business
========================================================= */

.company-business {
    border-top: 1px solid #e0e7ef;
}

.business-content {
    max-width: 850px;

    margin-left: 95px;
}

/* 業務内容 */
.business-content p {
    margin: 0;

    color: #526477;

    font-size: 1.15rem;
    line-height: 2;
}




/* =========================================================
   Responsive
========================================================= */

@media (max-width: 768px) {

    .company-hero {
        padding: 70px 0;
    }

    .company-hero-inner {
        width: min(100% - 40px, 600px);

        flex-direction: column;
        gap: 40px;

        align-items: stretch;
    }

    .company-hero-image img {
        height: 260px;
    }

    .company-language-inner {
        width: min(100% - 40px, 600px);
    }

    .company-profile,
    .company-offices,
    .company-business {
        width: min(100% - 40px, 600px);
        padding: 70px 0;
    }

    .profile-row {
        grid-template-columns: 1fr;
    }

    .company-intro {
        font-size: 1.05rem;
        line-height: 1.9;
    }


    .profile-label {
        padding: 20px 0 5px;
        font-size: 1rem;
    }

    .profile-value {
        padding: 5px 0 20px;
        font-size: 1.08rem;
        line-height: 1.9;
    }

    .office-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .office-name h3 {
        font-size: 1.35rem;
    }

    .office-detail {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .business-content {
        margin-left: 0;
    }

    .business-content p {
        font-size: 1.08rem;
        line-height: 1.9;
    }

}