@charset "utf-8";

body {
    font-family: 'Noto Serif JP', serif;
}

.comment-box {
    display: flex;
}
.comment-box-img {
    position: relative;
    width: 50%;
}
.comment-box-img:before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:60%;
    height:100vh;
    background:url(../images/full/comment/comment_bg.jpg) center no-repeat;
    background-size:cover;
}
.comment-box-txt {
    width: 50%;
    padding: 5% 2% 8% 5%;
    box-sizing: border-box;
    background-color: #96CD78;
}

.comment-box-txt-ttl {
    max-width: 85%;
    padding-bottom: 20%;
}

.comment-details {
    padding-bottom: 8%;
}

.comment-details-txt {
    padding-bottom: 1%;
    font-size: 15px;
    font-weight: bold;
    color: #000;
}
.comment-details-txt span {
    font-size: 20px;
    line-height: 1.7;
    color: #E6006E;
}

.comment-details-name {
    font-size: 20px;
    font-weight: bold;
}
.comment-details-name span {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .comment-box-img {
        width: 0;
    }
    .comment-box-img:before {
        width:100%;
    }
    .comment-box-txt {
        width: 100%;
        padding: 6%;
        background-color: rgba(0,0,0,.3);
    }
    .comment-box-txt-ttl {
        max-width: 100%;
    }
    
    .comment-details-txt {
        font-size: 13px;
        color: #fff;
    }
    .comment-details-txt span {
        font-size: 16px;
    }
    .comment-details-name {
        font-size: 16px;
        color: #fff;
    }
    .comment-details-name span {
        font-size: 13px;
    }
}





