@charset "utf-8";

body {
    position: relative;
    font-family: YakuHanMP,'游明朝','Yu Mincho','游明朝体','YuMincho','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HiraMinProN-W3','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
    background-color: #FFF;
    margin: 0;
}
.cast-img.is-pc {
    display: block;
}
.cast-img.is-sp {
    display: none;
}

.cast-wrapper {
    position: relative;
}

.cast-img{
    height: 100%;
    width: 36%;
    overflow: hidden;
    position: relative;
    display: block;
    left: 0;
    position: fixed;
}
.cast-img img{
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    top: 0;
    left: 0%;
    right: auto;
    margin: auto;
}

.cast-details {
    height: 100%;
    width: 65.2%;
    overflow: hidden;
    position: relative;
    display: block;
    right: 0;
    position: fixed;
}
.cast-details img{
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    margin: auto;
}

.cast-details-ab {
    position: absolute;
    top: 0;
    right: 5%;
    width: 54%;
    padding: 5% 0;
}

.cast-name {
    display: flex;
    align-items: center;
    padding-bottom: 1%;
    font-size: 30px;
    font-weight: 600;
    color: #DFA260;
}
.cast-name-txt {
    margin-right: 2%;
    font-size: 16px;
}
.cast-actor-name {
    padding: 4% 0 2%;
    font-size: 23px;
    font-weight: 600;
    color: #FFF;
}
.cast-txt {
    font-size: 13px;
    font-weight: 600;
    text-align: justify;
    line-height: 2;
    color: #FFF;
}

@media screen and (max-width: 768px) {
    body {
        background-color: #800000;
    }
    .cast-img.is-pc {
        display: none;
    }
    .cast-img.is-sp {
        display: block;
    }
    .cast-img {
        width: 100%;
        position: static;
    }
    .cast-img img {
        width: 100%;
        position: static;
    }
    .cast-details {
        display: none;
    }
    .cast-details-ab {
        position: static;
        width: 100%;
        padding: 5%;
        box-sizing: border-box;
    }
    .cast-name {
        font-size: 22px;
    }
    .cast-name-txt {
        font-size: 15px;
    }
    .cast-actor-name {
        font-size: 18px;
    }
}











