
/* areaCompany */
.areaCompany {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.areaCompany .companyPhoto {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: center;
    width: 50.35%;
}
.areaCompany .companyPhoto img {
    width: 100%;/*修正202507*/
    /*margin-left: 5.2%;*//*修正202507*/
}
.areaCompany .companyWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    width: 49.65%;
    background-color: #1b5b0f;
    padding: 90px 91px 91px;
}
.areaCompany .companyWrap .companyTitle {
    font-size: 74px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #fff;
    margin-bottom: 23px;
}
.areaCompany .companyWrap .companyBtn {
    width: 100%;
    max-width: 367px;
}
.areaCompany .companyWrap .companyBtn a {
    display: block;
    font-size: 19px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 22px 38px 26.5px;
    background: url(../images/index/icon-arrow.svg) no-repeat right 34px center / 20px;
    transition: all .3s;
    letter-spacing: 2px;
}

/* areaCompany */
@media(max-width: 1200px) and (min-width: 769px) {
    .areaCompany .companyWrap {
        padding: 50px;
    }
}
@media(max-width: 1025px) and (min-width: 769px) {
    .areaCompany .companyPhoto {
        width: 45%;
    }
    .areaCompany .companyWrap {
        width: 55%;
    }
    .areaCompany .companyWrap .companyTitle {
        font-size: 65px;
    }
}
@media(max-width: 840px) and (min-width: 769px) {
    .areaCompany .companyWrap .companyTitle {
        font-size: 60px;
    }
    .areaCompany .companyWrap {
        padding: 35px;
    }
}
@media(min-width: 769px) {
    #main .mainWrap {
        min-width: auto;
        padding: 25px 54px 22px 111px;
    }
    #main .mainWrap .mainTitle .titleEn {
        letter-spacing: 0;
        margin-bottom: 13px;
    }
    .breadcrumb {
        padding-bottom: 54px;
    }
    .areaCompany .companyBtn a:hover {
        background-position: right 19px top 50%;
        background-color: #FF6600
    }
}
@media(max-width: 768px) {
    .areaCompany .companyPhoto {
        width: 100%;
    }
    .areaCompany .companyWrap {
        width: 100%;
        padding: 15vw 6%;
    }
    .areaCompany .companyWrap .companyTitle {
        text-align: center;
        font-size: clamp(50px, 10vw, 70px);
        margin-bottom: 7vw;
    }
    .areaCompany .companyWrap .companyBtn {
        width: 81%;
        max-width: none;
        margin: 0 auto;
    }
    .areaCompany .companyWrap .companyBtn a {
        font-size: 4.3vw;
        text-align: center;
        padding: 3.2vw 0;
        background-size: 4.5vw;
        background-position: right 5vw center;
    }
    .areaCompany .companyPhoto img {
        width: 100%;
        margin: 0 auto;
    }
}