@charset "UTF-8";
.company-hero {
    width: 100%;
    height: 50rem;
    border-radius: 3rem;
    overflow: hidden;
    background-image: url("../img/company/img-company-main.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767.98px) {
    .company-hero {
        height: 15rem;
        border-radius: 1rem;
    }
}

.company-line {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 4rem;
    padding: 8rem 0;
    border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 1024px) {
    .company-line {
        grid-template-columns: 16rem 1fr;
        gap: 3rem;
        padding: 6rem 0;
    }
}
@media screen and (max-width: 767.98px) {
    .company-line {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 3rem 0;
    }
}

.company-line-ttl {
    font-weight: 700;
    color: #448EC3;
}

.company-line-desc p {
    margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
    .company-line-desc p {
        margin-bottom: 1rem;
    }
}

.company-line-desc p:last-of-type {
    margin-bottom: 0;
}

.company-line-desc .text-name {
    margin-top: 6rem;
    text-align: right;
}
@media screen and (max-width: 767.98px) {
    .company-line-desc .text-name {
        margin-top: 3rem;
    }
}

.company-line-desc .text-copy {
    color: #448EC3;
    font-size: 2.4rem;
}
@media screen and (max-width: 767.98px) {
    .company-line-desc .text-copy {
        font-size: 1.7rem;
    }
}
.company-values--2col {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 4rem;
    row-gap: 1.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-values--2col li {
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .company-values--2col {
        column-gap: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
    .company-values--2col {
        grid-template-columns: 1fr;
        row-gap: 1.2rem;
      }
}


.overview-line {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #CCCCCC;
}
.overview-line:first-of-type {
    border-top: 1px solid #CCCCCC;
}

@media screen and (max-width: 1024px) {
    .overview-line {
        grid-template-columns: 16rem 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
}
@media screen and (max-width: 767.98px) {
    .overview-line {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }
}

.overview-line-ttl {
    font-weight: 700;
    color: #448EC3;
}

.overview-line-desc p {
    margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
    .overview-line-desc p {
        margin-bottom: 1rem;
    }
}

.overview-line-desc p:last-of-type {
    margin-bottom: 0;
}

.overview-line-desc p a {
    display: inline-block;
    color: #78B1DB;
    text-decoration: underline;
}


