.top_banner{
    background: url(/img01/sub/integrated/integrated_bg.jpg) no-repeat;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}
.top_banner:before{
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
/*  */
.cp{
    color: var(--main-color);
}

.con{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}
/*  */

.con1 .inner{
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.item{
    display: flex;
    gap: 50px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 100px;
    align-items: center;
}

.item:last-child{
    border-bottom: 0;
}

.item .con_img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.item .con_text{
    width: calc(100% - 250px);
}

.item .con_text h1{
    margin-bottom: 30px;
}

.item .con_text h1 span{
    font-size: 20px;
    font-weight: 400;
}

.item .con_text p{
    font-size: 20px;
    color: #999;
    margin-top: 10px;
    font-weight: 300;
}

@media all and (max-width: 1080px){
    .con1 .inner{
        width: calc(100% - 60px);
    }

    .item .con_text h1{
        display: flex;
        flex-direction: column;
    }

    .item .con_text h1 span{
        margin-top: 10px;
    }
}

@media all and (max-width: 840px){
    .item{
        flex-direction: column;
    }

    .item .con_text{
        width: 100%;
    }

    .item .con_text h1{
        align-items: center;
    }
}

@media all and (max-width: 500px){
    .item .con_img{
        width: 50vw;
        height: 50vw;
    }
}