@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
body {
    overflow-x: hidden;
}

.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 252px;
    min-height: 252px;
}

.text_img {
    position: absolute;
    top: 50px;
    right: 0;
    left: 11px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.symbol_wrap {
    position: relative;
}

.symbol {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    bottom: 0;
}

.symbol img {
    margin: 0 auto;
}




@media screen and (max-width: 768px) {

    .mainimg {
        margin-top: 72px;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .bgimg img {
        min-height: 200px;
    }

    .text_img img {
        max-height: 80px;
    }

    .symbol img {
        max-width: 80px;
        padding-right: 0;
    }

    .text_img {
        left: 0;
    }

}

/*-------------------------------------------*/
/*スタッフ紹介*/
/*-------------------------------------------*/

section.staff .maxWid {
    max-width: 1000px;
}

section.staff {
    margin-top: 194px;
    margin-bottom: 160px;
}

.intro_text {
    display: flex;
    justify-content: center;
    margin-bottom: 74px;
}

.intro_text p {
    font-size: 1.5rem;
    line-height: 1.7;
    width: 70%;
}

.staff_container.flex {
    justify-content: space-between;
}

.staff_item span {
    display: block;
}

.staff_item .name {
    margin-top: 30px;
    margin-bottom: 28px;
}

.staff_item .name .title {
    font-size: 1.6rem;
}

.staff_item .name .staff_name {
    font-size: 3.0em;
    color: #d01c97;
    font-weight: bold;
    line-height: 1.3;
}

.staff_item .name .staff_name_eng {
    font-size: 1.6em;
}

span.license_title, span.career_title {
    background-color: #000;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.1;
    max-width: 82px;
    margin-bottom: 10px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff_item ul li {
    font-size: 1.5rem;
    line-height: 1.7;
}

.license {
    margin-bottom: 25px;
    min-height: 91px;
}

@media screen and (max-width: 1000px) {
    .staff_container.flex {
        gap: 20px;
    }

}

@media screen and (max-width: 768px) {
    .staff_container.flex {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .staff_container:after {
        content: "";
        width: 50%;
        display: block;
        max-width: 260px;
    }

    .staff_item {
        margin-bottom: 40px;
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .intro_text p {
        font-size: 1.3rem;
        width: 100%;
    }

    .staff_container.flex {
        flex-direction: column;
        flex-wrap: initial;
        gap: inherit;
    }

    .staff .image_area img {
        width: 100%;
    }

    .staff_item {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .staff_item .name .title, .staff_item .name .staff_name_eng {
        font-size: 1.5rem;
    }

    .staff_item .name .staff_name {
        /*font-size: 2.4rem;*/
    }

    span.license_title, span.career_title {
        font-size: 1.4rem;
        max-width: 70px;
        min-height: 25px;
        margin-bottom: 5px;
    }

    .staff_item ul li {
        font-size: 1.3rem;
    }

    .license {
        min-height: auto;
    }

    .staff_item .name {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    section.staff {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .intro_text {
        margin-bottom: 100px;
    }
}