@charset "utf-8";


/*-----------------------------------
会社概要
-----------------------------------*/
#about_company {
    height: 100%;
    aspect-ratio: 940 / 615;
    display: flex;
    align-items: center;
    margin: 0 150px 0 125px;
}
#about_company .about_company_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#about_company dl.data_list {
    margin-left: 2dvh;
}
#about_company .data_list dt {
    font-size: 1.9dvh;
    line-height: 1.8em;
    position: relative;
}
#about_company .data_list dt::before {
    content: "\025cf";
    position: absolute;
    top: 0;
    left: -1em;
    color: #5d8351;
}
#about_company .data_list dt:not(:first-child) {
    margin-top: 1.5em;
}
#about_company .data_list dd {
    font-size: 1.7dvh;
    line-height: 1.9em;
}

@media screen and (max-width:768px){
    #about_company {
        aspect-ratio: 960 / 535;
        margin: 0;
    }
    #about_company .about_company_inner {
        justify-content: space-around;
    }
    #about_company .data_list dt {
        font-size: 2.1dvh;
    }
    #about_company .data_list dd {
        font-size: 1.9dvh;
    }
}

/*-----------------------------------
グループ企業
-----------------------------------*/
#company_group {
    height: 100%;
    aspect-ratio: 410 / 615;
    position: relative;
    display: flex;
    align-items: center;
}
#company_group .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#company_group .bg_img::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #8d9292;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
#company_group .bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#company_group .txt_area {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#company_group .txt_area .ttl {
    width: 73%;
    margin: 19% 0 10%;
}
#company_group .txt_area .ttl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#company_group .txt_area .txt {
    font-size: 1.8dvh;
    line-height: 2em;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

@media screen and (max-width:768px){
    #company_group {
        width: calc(100vw - 15px);
    }
    #company_group .txt_area .ttl {
        margin: 0 0 8%;
    }
    #company_group .txt_area .txt {
        font-size: 2dvh;
    }
}

/*-----------------------------------
グループ企業リンク
-----------------------------------*/
#group_link {
    height: 100%;
    aspect-ratio: 515 / 615;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#group_link ul {
    width: 54%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5dvh 0;
}
#group_link ul li {
    width: 40%;
}
#group_link ul li:first-child {
    margin: 0 30%;
}
@media screen and (max-width:768px){
    #group_link {
        aspect-ratio: 360 / 535;
    }
    #group_link ul {
        width: 72%;
        gap: 2dvh 0;
    }
    #group_link ul li {
        width: 40%;
    }
}