/* 会社概要ページ専用スタイル */

.company-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.company-table__list {
    display: grid;
}

.company-table__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border-color);
}

.company-table__item:last-child {
    border-bottom: none;
}

.company-table__item dt {
    background-color: var(--bg-cream);
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.company-table__item dd {
    padding: 1.5rem 2rem;
    line-height: 1.8;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.company-table__item dd a {
    color: var(--primary-color);
    font-weight: 500;
}

.company-table__item dd a:hover {
    text-decoration: underline;
}

/* アクセス */
.access-content {
    max-width: 1000px;
    margin: 0 auto;
}

.access-map {
    width: 100%;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
    display: block;
}

.access-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.access-info__item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.access-info__item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.access-info__item h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.access-info__item p {
    line-height: 1.8;
    color: var(--text-medium);
}

.access-info__note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .company-table__item {
        grid-template-columns: 1fr;
    }

    .company-table__item dt {
        padding: 1rem 1.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .company-table__item dd {
        padding: 0.5rem 1.5rem 1rem;
    }

    .access-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .access-info__item {
        padding: 1.5rem;
    }
}
