#wrap {
    display: block;
    overflow: inherit;
    padding-top: 76px;
}

#contentBodyWrap .intro {
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 80px;
    max-width: var(--subpage-content-max-width);
    color: var(--text200);
}
#contentBodyWrap .intro h1 {
    font-size: 3.4375rem;
    font-weight: 700;
    line-height: 5rem;
}
#contentBodyWrap .intro p {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.875rem;
}

#contentBodyWrap .intro-visual-wrapper {
    overflow: hidden;
    margin-top: 90px;
    width: 100%;
    height: 490px;
}
#contentBodyWrap .intro-visual {
    width: 100%;
    height: 490px;
    animation: scale-up 2s ease-out forwards;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/static/global/images/companies/intro.jpg');
}
@keyframes scale-up {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

#contentBodyWrap .company-list {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 150px 0 175px;
    width: var(--subpage-content-max-width);
    background-color: #FFF;
}

#contentBodyWrap .company-list .company {
    box-sizing: border-box;
    padding: 0;
    background-color: #FFF;
    border: 1px solid #EEEEEF;
}

#contentBodyWrap .company-list .company .contents {
    padding: 0;
}
#contentBodyWrap .company-list .company .ci-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 174px;
    background-color: #F6F6F6;
}
#contentBodyWrap .company-list .company .ci-wrap img {
    width: 140px;
}

#contentBodyWrap .company-list .company-info {
    display: flex;
    flex-direction: column;
    padding: 20px 24px 24px;
    min-height: 205px;
}

#contentBodyWrap .company-list .company-info .title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.125rem;
    font-weight: 600;
}
#contentBodyWrap .company-list .company-info .title > strong {
    font-weight: 600;
}
#contentBodyWrap .company-list .company-info .title .icon-home {
    width: 24px;
    height: 24px;
}
#contentBodyWrap .company-list .company-info .title .icon-home img {
    width: 100%;
}

#contentBodyWrap .company-list .company-info .desc {
    margin-top: 8px;
    color: #777;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

#contentBodyWrap .company-list .company-info .link-recruit {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    color: var(--text200, #222);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
}

#contentBodyWrap .company-list .company-info .link-recruit strong {
    font-weight: 400;
}
#contentBodyWrap .company-list .company-info .link-recruit strong .count {
    color: var(--nc-blue1, #0541B4);
    font-weight: 700;
}
#contentBodyWrap .company-list .company-info .link-recruit .icon-arrow {
    width: 16px;
    height: 16px;
}
