.company-page {
    background: #f6f8fb;
}


/******** HERO ********/

.company-hero {
    height: 380px;
    position: relative;
   /* background: linear-gradient( rgba(255,255,255,.35), rgba(255,255,255,.35) ), url(assets/yokohama.png); */
    background-size: cover;
    background-position: center;
}


.breadcrumb {
    max-width: 1200px;
    margin: auto;
    padding: 24px 40px;
    font-size: 12px;
}


    .breadcrumb a {
        text-decoration: none;
        color: #3f74c9;
    }


.hero-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}


    .hero-title h1 {
        font-size: 72px;
        color: #004ca5;
        margin-bottom: 10px;
    }


    .hero-title h2 {
        font-size: 22px;
        color: #004ca5;
    }


/******** CARD ********/

.company-wrapper {
    max-width: 1280px;
    margin: -60px auto 80px;
    padding: 0 30px;
}


.company-card {
    background: #fff;
    border-radius: 20px;
    padding: 70px 80px;
    box-shadow: 0 8px 35px rgba(0,0,0,.08);
}


.company-heading {
    text-align: center;
    margin-bottom: 60px;
}


    .company-heading p {
        font-size: 24px;
        font-weight: 700;
        color: #004ca5;
    }


    .company-heading h2 {
        font-size: 52px;
        color: #004ca5;
        margin-top: 20px;
    }


/******** TABLE ********/

.company-table {
    width: 100%;
    border-collapse: collapse;
}


    .company-table tr {
        border-bottom: 1px solid #e6e6e6;
    }


    .company-table th {
        width: 220px;
        padding: 28px;
        text-align: left;
        color: #004ca5;
        font-size: 18px;
    }


    .company-table td {
        padding: 28px;
        font-size: 17px;
        line-height: 2;
    }


/******** ACCESS ********/

.access {
    margin-top: 80px;
    text-align: center;
}


    .access h2 {
        font-size: 54px;
        color: #004ca5;
    }


    .access p {
        margin-bottom: 40px;
        color: #004ca5;
    }


    .access iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 12px;
    }


.access-list {
    width: 600px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 18px;
    column-gap: 60px;
    font-weight: 700;
    color: #004ca5;
}


/******** CTA ********/

.company-cta {
    margin-top: 60px;
    height: 110px;
    background: #f5f8fd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 40px;
}


.cta-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}


.cta-text {
    flex: 1;
    padding-left: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #004ca5;
}


.cta-button {
    background: linear-gradient( 90deg, #004197, #0063be );
    color: #fff;
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}


/******** MOBILE ********/

@media(max-width:768px) {

    .company-card {
        padding: 30px;
    }


    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }


    .access-list {
        width: 100%;
        grid-template-columns: 1fr;
    }


    .company-cta {
        flex-direction: column;
        height: auto;
        padding: 30px;
        gap: 20px;
    }
}

@media(max-width:640px){

  /* HERO */
  .company-hero {
    height: 240px;
  }

  .hero-title h1 {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .hero-title h2 {
    font-size: 16px;
  }

  .breadcrumb {
    padding: 16px 20px;
    font-size: 10px;
  }

  /* CARD */
  .company-wrapper {
    margin: -40px auto 40px;
    padding: 0 16px;
  }

  .company-card {
    padding: 24px 18px;
  }

  .company-heading p {
    font-size: 16px;
  }

  .company-heading h2 {
    font-size: 28px;
    margin-top: 10px;
  }

  /* TABLE */
  .company-table th,
  .company-table td {
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .company-table th {
    width: auto;
  }

  /* ACCESS */
  .access h2 {
    font-size: 28px;
  }

  .access p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .access iframe {
    height: 260px;
  }

  .access-list {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 12px;
    font-size: 14px;
  }

  /* CTA */
  .company-cta {
    flex-direction: column;
    height: auto;
    padding: 24px;
    gap: 16px;
  }

  .cta-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .cta-text {
    font-size: 20px;
    padding-left: 0;
    text-align: center;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 26px;
  }
}

