/* キャスト個人ページ ---------------------------------------- */
.mainSection01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 80px 0;
    background-color: #efefef;
}

.mainSection01__container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 95%;
    max-width: 1000px;
    height: auto;
}

.mainSection01__castImageBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: auto;
}

.mainSection01__castImageBox img{
    display: block;
    width: 100%;
    height: auto;
}

.mainSection01__castInfoBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 370px);
    height: auto;
}

.mainSection01__statusBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 8px 21px;
    border-radius: 2rem;
    background-color: #dedede;
    margin-bottom: 10px;
    margin-left: -5px;
}

.mainSection01__statusBox img{
    display: inline-block;
    width: auto;
    height: 25px;
    margin-right: 5px;
}

.mainSection01__statusBox span{
    font-weight: 600;
    font-size: 15px;
    font-style: italic;
    color: #242424;
}

.mainSection01__nameBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.mainSection01__nameBox h1{
    font-weight: 700;
    font-size: 42px;
    color: #292929;
}

.mainSection01__nameBox span{
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #494949;
    margin-left: 7px;
    margin-top: 6px;
}

.mainSection01__infoBox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 18px 20px;
    border-bottom: solid #bababa .6px;
}

.mainSection01__infoTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80px;
    height: auto;
    font-weight: 600;
    font-size: 15.2px;
    color: #383838;
}

.mainSection01__infoTitleEN{
    font-weight: 400;
    font-size: 11px;
    color: #5c5c5c;
}

.mainSection01__infoContent{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 100px);
    height: auto;
    margin-left: 20px;
    font-weight: 400;
    font-size: 15.2px;
    color: #383838;
}

.mainSection01__commentBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 15px;
}

.mainSection01__commentTitleBox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    font-weight: 600;
    font-size: 14px;
    color: #494949;
    border-bottom: solid 1.5px #494949;
    padding: 0 2px 2px 2px;
    margin-bottom: 10px;
}

.mainSection01__commentTitleBox img{
    display: inline-block;
    width: auto;
    height: 16px;
    fill: #494949;
    margin-right: 8px;
}

.mainSection01__commentContentBox{
    display: block;
    width: 100%;
    height: auto;
    font-weight: 400;
    font-size: 12px;
    color: #6b6b6b;
    text-align: left;
    line-height: 1.6;
}

.mainSection01__attendanceInfoBox{
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

@media screen and (max-width: 850px) {
    .mainSection01__container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mainSection01__castImageBox{
        width: 95%;
        max-width: 300px;
        height: auto;
        margin-bottom: 40px;
    }

    .mainSection01__castInfoBox{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 95%;
        max-width: 600px;
        height: auto;
    }

    .mainSection01__nameBox h1{
        font-size: 26px;
    }

    .mainSection01__attendanceInfoBox{
        display: none;
    }
}