.compnayPage{
    background: var(--color-beige);
    display: flex;
    justify-content: space-between;
    padding: calc(var(--space-50)*4) 0 calc(var(--space-50)*1) calc(var(--space-50)*4);
    line-height: 1.5;
    }
    .companyPage .headline{
        font-size: calc(var(--font-size-h4)*2);
    }
    .companyPage .headLineSub{
        font-size: var(--font-size-h4);
    }
    .headLineSub{
        line-height: 1.5;
    }
    .flexC{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .companyList,
    .mapContainer{
        width: 45%;
        margin-top: var(--space-50);
        margin-bottom: var(--space-50);
    }
    
    .companyList .list{
      border-bottom: 1px solid var(--color-000);
      padding-top: var(--space-20);
      padding-bottom: var(--space-20);
      line-height: 2;
    }
    .companyList .list span{
        font-weight: bold;
        display: inline-block;
        margin-right: var(--space-10);
    }
    .timeline {
        position: relative;
        padding: 20px 0;
        list-style: none;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 40px;
        width: 2px;
        background: #C5C5C5;
    }
    
    .timeline-item {
        margin-bottom: 20px;
        position: relative;
    }
    
    .timeline-year {
        position: absolute;
        left: 35px;
        width: 80px;
        font-weight: bold;
        text-align: right;
    }
    
    .timeline-content {
        margin-left: 120px;
        padding: 10px;
        background: #F7F7F7;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        line-height: 1.3;
    }
    .timeline-year::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0px; /* タイムラインの位置に合わせて調整 */
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: #3498db; /* マーカーの色 */
        border-radius: 50%;
        border: 2px solid #fff; /* マーカーの周りに白い枠 */
        box-shadow: 0 0 0 2px #3498db; /* マーカーの周りに色の枠 */
    }
    .phil_text{
        margin: 50px auto;
        text-align: center;
        font-size: 1.5rem;
    }

    .timeline_hl{
        font-size: 1.5rem;
        text-align: center;
        padding: 10px 0;
    }
    
   /* ========================================================== */
   /* ==============  2023スマホ     768px   ==================== */
   /* ========================================================== */
   @media screen and (max-width:1024px){
    .companyPage{
    flex-direction: column;
    }
    .companyList,
    .mapContainer{
        width: 80%;
    }
    }
     /* ========================================================== */
     /* ==============  2023スマホ     600px   ==================== */
     /* ========================================================== */
     @media screen and (max-width:600px){
        .companyList,
        .mapContainer{
            width: 100%;
        }
     }
     