        .company-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 0;
            padding: 3rem 2.5rem;
            margin: 2rem 0;
            border: 2px solid var(--color-border);
        }

        .company-section h2 {
            margin-top: 0;
            font-size: 1.8rem;
            color: #1a1a1a;
        }

        .info-grid {
            display: grid;
            gap: 1.2rem;
            margin: 1.5rem 0;
        }

        .info-row {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 1rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #1a1a1a;
            font-weight: 600;
        }

        .info-value {
            font-weight: 600;
            font-size: 1.05rem;
            color: #1a1a1a;
        }

        .info-value a {
            color: #1a1a1a;
            text-decoration: none;
        }

        .info-value a:hover {
            text-decoration: underline;
        }

        .business-items {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.8rem;
            margin: 1.5rem 0;
        }

        .business-items li {
            padding: 0.8rem 1.2rem;
            background: rgba(14, 165, 233, 0.08);
            border-radius: 0;
            font-weight: 600;
        }

        .business-items li::before {
            content: '▸';
            color: var(--color-accent-strong);
            margin-right: 0.6rem;
            font-weight: 700;
        }

        /* 組織図スタイル */
        .org-chart {
            margin: 2rem auto;
            max-width: 900px;
        }

        .org-level {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin: 1.5rem 0;
            position: relative;
        }

        .org-box {
            background: var(--color-accent);
            color: white;
            padding: 1.2rem 2rem;
            border-radius: 0;
            text-align: center;
            min-width: 200px;
            border: 2px solid var(--color-border);
            position: relative;
        }

        .org-box.president {
            background: var(--color-accent);
            border: 2px solid var(--color-border);
        }

        .org-box .title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .org-box .name {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .org-departments {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .org-department {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }

        .org-box.dept {
            background: var(--color-highlight);
            min-width: 180px;
        }

        .org-connector {
            width: 2px;
            height: 30px;
            background: var(--color-accent);
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .info-row {
                grid-template-columns: 1fr;
                gap: 0.3rem;
            }

            .org-departments {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .business-items {
                grid-template-columns: 1fr;
            }
        }
