/* Company Section - Google-inspired */
.company {
    padding: 64px 0;
    background: #f8f9fa !important;
}

.company .section-title {
    color: #202124;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.company-info {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    overflow: hidden;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f1f3f4;
    font-size: 14px;
}

.company-table th {
    font-weight: 500;
    color: #5f6368;
    width: 30%;
    vertical-align: top;
    background: none;
}

.company-table td {
    color: #202124;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dadce0;
}

#map {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    background: #f1f3f4;
}

@media (max-width: 768px) {
    .company {
        padding: 40px 0;
    }

    .company-content {
        grid-template-columns: 1fr;
    }

    .company-table th {
        width: 35%;
    }

    #map {
        aspect-ratio: 16 / 9;
        min-height: 240px;
    }
}

/* 会社概要の詳細ページへの導線（カードの外側・右下に控えめに置く） */
.company-col {
    display: flex;
    flex-direction: column;
}

.company-more {
    margin-top: 10px;
    text-align: right;
}

.company-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #5f6368;
    text-decoration: none;
    transition: color 0.2s ease;
}

.company-more-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.company-more-link:hover {
    color: #127C71;
}

.company-more-link:hover span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.company-more-link:hover svg {
    transform: translateX(3px);
}

.company-more-link:focus-visible {
    outline: 2px solid #127C71;
    outline-offset: 3px;
    border-radius: 4px;
}

/* 会社概要ページ（/company/） */
.company-page {
    background: #fff !important;
    min-height: 60vh;
}

.company-back {
    margin-top: 32px;
    text-align: center;
}

.company-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f6368;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #dadce0;
    border-radius: 9999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.company-back-link svg {
    width: 16px;
    height: 16px;
}

.company-back-link:hover {
    background: #f8f9fa;
    color: #127C71;
    border-color: #127C71;
}

@media (prefers-reduced-motion: reduce) {
    .company-more-link,
    .company-more-link svg,
    .company-back-link {
        transition: none;
    }
    .company-more-link:hover svg {
        transform: none;
    }
}
