@charset "utf-8";

/* staff */
.subPageSp {
    display: block;
    width: 100vw;
    margin: 0px auto;
}

.subPagePc {
    display: none;
}

.title--staff {
    color: #4D3F35;
    text-align: center;
    font-family: "Marcellus";
    font-size: clamp(25px, 8vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.45rem;
    margin-top: 45px;
}

.staff_content{
    margin-top: 45px;
}

.staff_person:first-of-type{
    margin-top: 0px;
}

.staff_person{
    margin: 100px auto 0px;
    padding: 0px 5.2%;
    max-width: 500px;
}

.staff_data{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.staff_imgSp{
    width: 47.7%;
    max-width: 100%;
    height: auto;
}

.staff_imgPc{
    display: none;
}

.staff_text{
    width: 52.3%;
    text-align: center;
}

.staff_position{
    color:#242424;
    font-family: "Marcellus";
    font-size: clamp(11px, 4.266666666666667vw,16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16rem;
    display: inline-block;
    border-bottom: 1px solid#242424;
}

.staff_name{
    color:#242424;
    font-family: "Noto Sans JP";
    font-size: clamp(15px, 5.333333333333333vw,20px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    letter-spacing: 0.2rem;
}

.staff_furigana{
    color:#6E6E6E;
    font-family: "Marcellus";
    font-size: clamp(11px, 4.266666666666667vw,16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16rem;
}

.staff_text img{
    width: 25px;
    height: 25px;
    margin-top: 15px;
}

.staff_comment{
    color:#242424;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 4.266666666666667vw,16px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    margin-top: 20px;
}

.staff_favorite{
    color:#242424;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: clamp(15px, 5.333333333333333vw,20px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(180, 160, 147, 0.80);
}

.staff_favoriteDetail{
    color:#242424;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 4.266666666666667vw,16px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    margin-top: 8px;
}

/* scroll */
.staff_person{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.staff_person.visible{
    opacity: 1;
    transform: translateY(0px);
}

/* tab 769px */
@media screen and (min-width:769px) {
    .subPageSp {
        display: none;
    }

    .subPagePc {
        display: block;
        width: 100vw;
        max-width: 100%;
        margin: 0px auto;
    }

    .title--staff {
        font-size: clamp(28px, 8.8vw, 33px);
        letter-spacing: 0.495rem;
    }

    .staff_content{
        display: grid;
        grid-template-rows:2fr;
        grid-template-columns: repeat(auto-fit, minmax(360px,1fr));
        column-gap: 7%;
        row-gap: 120px;
        margin-top: 50px;
        padding: 0px 3.6%;
        justify-content: center;
    }

    .staff_person{
        margin-top: 0px;
        padding: 0px;
    }

    .staff_imgSp{
        display: none;
    }

    .staff_imgPc{
        display: block;
        width: 14.0vw;
        min-width: 150px;
    }

    .staff_position{
        font-size: clamp(13px, 4.8vw, 18px);
        line-height: normal;
        letter-spacing: 0.18rem;
    }

    .staff_name{
        font-size:clamp(17px, 5.866666666666667vw,22px);
        letter-spacing: 0.22rem;
    }

    .staff_furigana{
        font-size: clamp(13px, 4.8vw, 18px);
        letter-spacing: 0.18rem;
    }

    .staff_comment{
        font-size:clamp(13px, 4.8vw, 18px);
    }

    .staff_favorite{
        font-size: clamp(17px, 5.866666666666667vw,22px);
    }

    .staff_favoriteDetail{
        font-size:clamp(13px, 4.8vw, 18px);
    }
}