@charset "utf-8";
/* CSS Document */
/* ページタイトル */
.page-title-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0;
}
.page-title-section h1 {
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 2rem;
}

/* 会社情報・沿革テーブル */
.info-table, .history-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #ddd;
}
.info-table th, .info-table td,
.history-table th, .history-table td {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    text-align: left;
}
.info-table th {
    background-color: #fff;
    width: 25%;
}
.history-table th {
    background-color: #fff;
    width: 20%;
    font-weight: bold;
}

/* マップ */
.map-container {
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
.access-info {
    text-align: center;
}
/* --- 2カラムレイアウト (ここから追記) --- */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 左(画像)と右(テキスト)の比率を調整できます */
    gap: 40px; /* カラム間の隙間 */
    align-items: center; /* 上下中央揃え */
}
