@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: #D5BD94;
    margin: 0;
}
body:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 594px;
    height: 710px;
    background-image: url(../images/full/interview/interview_ornament.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    z-index: -1;
}
.interview-img.is-pc {
    display: block;
}
.interview-img.is-sp {
    display: none;
}
.interview-img{
    height: 100%;
    width: 100%;
    max-width: 360px;
    overflow: hidden;
    position: relative;
    display: block;
    left: 0;
    position: fixed;
}
.interview-img img{
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    margin: auto;
}
.interview-details {
    display: inline-block;
    width: 57%;
    margin-left: 40%;
    padding: 5%;
    box-sizing: border-box;
    vertical-align: top;
}
.interview-charge {
    margin: 0;
    padding-bottom: 4%;
    font-size: 28px;
    font-weight: 600;
    color: #CE0515;
}
.interview-name {
    margin: 0;
    padding-bottom: 4%;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
}
.interview-txt {
    font-size: 14px;
    font-weight: 600;
    text-align: justify;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    body:before {
        content: none;
    }
    .interview-img.is-pc {
        display: none;
    }
    .interview-img.is-sp {
        display: block;
    }
    .interview-details {
        width: 100%;
        margin-left: 0;
    }
    .interview-img{
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .interview-img img{
        width: 100%;
        position: static;
    }
    .interview-charge {
        font-size: 22px;
    }
    .interview-name {
        font-size: 20px;
    }
    .interview-txt {
        font-size: 13px;
    }
}