@charset "UTF-8";
/*======================================================= 
 採用サイト(グループ企業・事業内容)スタイル
=======================================================*/
/* ボタン */
.link-btn{
    max-width: 150px;
    width: 100%;
    position: relative;
    text-align: left;
    margin-top: 15px;
}
.link-btn.center{
    margin: auto;
}
.link-btn a{
    display: block;
    font-weight: bold;
    padding: 15px 0;
}
.link-btn a:hover{
    color: #333;
}
.link-btn a:before {
    display: block;
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #333;
}
.link-btn a:after {
    display: block;
    content: "";
    position: absolute;
    top: 18px;
    right: 3px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 15px solid #d32929;
}
.link-btn a:hover:before {
    background-color: #d32929;
}
.link-btn a:hover:after {
    border: 10px solid transparent;
    border-left: 15px solid #fff;
}

/* グループ企業 */
.group-block{
    padding-top: 50px;
}
.group-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.group-title{
    color: #EB2B2B;
    text-align: left;
    padding: 0 0 0.5em 0;
}

/* 事業内容 */
.business-block{
    margin-top: 100px;
}
.orange-ribbon{
    background-color: #EB2B2B;
    color: #fff;
    padding: 35px;
}
.business-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border-bottom: 1px solid #333;
    padding: 70px 0;
}
.business-block .business-item:last-child{
    border: none;
}
.logo{
    width: auto;
    height: 50px;
}
.business-item h3{
    padding: 15px 0 10px 0;
}
.business-title{
    font-weight: bold;
    padding-bottom: 10px;
}
.web-link.sp{
    display: none;
}
.web-link{
    display: inline-block;
    margin-top: 15px;
    border: 1px solid #333;
    border-radius: 50px;
}
.web-link a{
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 70px 15px 50px;
}
.web-link a::before{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f04b';
    font-weight: bold;
    right: 25px;
    color: #EB2B2B;
}

/*950px以下*/
@media screen and (max-width: 950px){
    /* グループ企業 */
    .group-item{
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .group-item1{
        order: 1;
    }
    .group-item2{
        order: 2;
    }
    .link-btn.sp{
        order: 3;
        margin-top: 0;
    }

    /* 事業内容 */
    .business-block{
        margin-top: 50px;
    }
    .orange-ribbon{
        padding: 20px;
    }
    .business-item{
        display: block;
        padding: 30px 0;
    }
    .business-tx{
        padding-bottom: 10px;
    }
    .web-link.pc{
        display: none;
    }
    .web-link.sp{
        display: block;
        width: 80%;
        text-align: center;
        margin: 15px auto 0 auto;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){

}