@charset "utf-8";
/*--京member.css--*/
/* ##########PC########## */
.staff_info_index{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.staff_info_box{
    box-sizing: border-box;
    width: calc((100% - 1.5rem) / 2);
    background-color: #f3f3f3;
    padding: 0.9rem;
}

.staff_info_inner{
    display: flex;
    gap: 0.8rem;
}

.staff_info_img{
    width: 8.75rem;
    height: auto;
}

.staff_info_img.no_image{
    /*写真くるまでの暫定*/
    aspect-ratio: 352 / 480;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}


.staff_info_img img{
    max-width: 100%;
    height: auto;
}

.staff_info_profile{
    flex: 1;
}

.name_sub {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.name {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

.link_list{}

.link_list ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.link_list ul:last-child{
    margin-bottom: 0;
}

.link_list ul li{}

.link_list ul li.x_link{
    margin-left: 0.3rem;
}

.link_list ul li a{
    display: block;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.3rem 0.3rem;
    background: #1e4195;
    text-decoration: none;
    border-radius: 0.3rem;
    color: #fff;
    position: relative;
    line-height: 1.3;
    transition: .3s all ease;
}

.link_list ul li.x_link a{
    width: 1.3rem;
    background: unset;
    padding: 0;
}

.link_list ul li a:hover{
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
    color: #fff;
    filter: brightness(1.2);
}

.link_list ul li.x_link a:hover{
    box-shadow: none;
    transform: scale(1.2);
}

.profile_info{
    margin-bottom: 1rem;
    line-height: 1.2;
}

.category {
    width: 7rem;
    background: #222;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.profile_info p{
    line-height: 1.4;
    margin: 0;
}

.staff_sub_index{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
}

.staff_sub_box{
    box-sizing: border-box;
    width: calc((100% - 4.5rem) / 4);
    background-color: #f3f3f3;
    padding: 0.8rem 1rem 1rem 1rem;
}

.staff_sub_box .name{
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

/*
    .staff_info_box table{
        width: calc(100% - 2em);
        border: none;
        line-height: 1.4;
        display: block;
    }

        .staff_info_box table tbody{
            display: block;
        }

        .staff_info_box table tbody tr{
            display: flex;
            align-items: flex-start;
            padding: 0.6em 0.5em;
            border-bottom: 1px dotted #ccc;
        }

        .staff_info_box table tbody tr:first-child{
            border-top: 1px dotted #ccc;
        }

            .staff_info_box table tbody tr th,
            .staff_info_box table tbody tr td{
                padding: 0;
            }

            .staff_info_box table tbody tr th{
                box-sizing: border-box;
                width: 6em;
                text-align: center;
                display: block;
                border: none;
                font-size: 0.82em;
                padding: 0.1em 0;
                background: #1e4195;
                color: #fff;
                font-weight: normal;
            }

            .staff_info_box table tbody tr td{
                box-sizing: border-box;
                flex: 1;
                display: block;
                border: none;
                padding-left: 1.5em;
            }
*/
@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){


}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    .staff_info_index{
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .staff_info_box{
        width: 100%;
    }

    .staff_sub_index{
        gap: 1rem;
    }

    .staff_sub_box{
        width: calc((100% - 1rem) / 2);
    }

}


/* ##########印刷用########## */
@media print{

}