@charset "UTF-8";
/* CSS Document */

/* ----------cont_after–---------- */
.cont_after{
}
/* ----------main---------- */
.cont_after .main{
    display:flex;
    justify-content:space-between;
    margin-bottom:100px;
}
.cont_after .main .image{
    width:50%;
    overflow:hidden;
}
.cont_after .main .image img{
    object-fit:cover;
    height:100%;
    width:100%
}
.cont_after .main .detail{
    width:45%;
}
.cont_after .main .detail h2{
    font-size:1.5rem;
    margin:2em 0;
}

/* ----------959px–---------- */
@media screen and (max-width: 959px) {
    .cont_after .main{
        display:block;
        justify-content:unset;
    }
    .cont_after .main .image{
        width:100%;
        overflow:hidden;
        aspect-ratio:1 / 1;
    }
    .cont_after .main .detail{
        width:100%;
    }
}

.wrap_staff{
    margin:0 calc(50% - 50vw) 100px;
    width:100vw;
    background:url("../../../../../img/after/supportsystem/after_sup_staff_bg.webp")center / cover;
    position:relative;
    padding:15vh 0;
}
.wrap_staff:after{
    content:"";
    display:block;
    height:100%;
    width:100%;
    top:0;
    left:0;
    position:absolute;
    background:#000;
    opacity:0.4;
}
.wrap_staff .detail{
    width:90%;
    max-width:600px;
    margin:auto;
    color:#fff;
    z-index:1;
    position:relative;
}
.wrap_staff .detail h2{
    font-size:1.3rem;
    margin:1em 0;
}
/* ----------768px–---------- */
@media screen and (max-width: 768px) {
        .wrap_staff{
        padding:10vh 0;
    }
    .wrap_staff .detail h2 span{
        display:block;
    }
}

/* ----------wrap_relief–---------- */
.wrap_relief{
    width:100%;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #ccc;
	padding:50px 0;
}
.wrap_relief .image{
    width:400px;
    overflow:hidden;
}
.wrap_relief .image img{
    object-fit:cover;
    height:100%;
    width:100%;
}
.wrap_relief .detail{
    width:calc(100% - 430px);
}
.wrap_relief .detail h2{
    font-size:1.2rem;
    margin:1em 0;
}
/* ----------959px–---------- */
@media screen and (max-width: 959px) {
    .wrap_relief .image{
        width:300px;
        overflow:hidden;
    }
    .wrap_relief .detail{
        width:calc(100% - 330px);
    }
}
/* ----------768px–---------- */
@media screen and (max-width: 768px) {
    .wrap_relief{
        display:block;
        justify-content:unset;
    }
    .wrap_relief .image{
        width:100%;
    }
    .wrap_relief .detail{
        width:100%;
    }
}
