body {
    background-image: url(../images/full/comment/bg_top_pc.png), url(../images/full/comment/bg_btm.png);
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    background-color: #000;
}

.comment-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 10% 2% 6%;
}
.comment-ttl {
    width: 58%;
    padding-bottom: 6%;
}
.comment-list-ttl {
    padding-bottom: 1%;
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: #FFF;
    letter-spacing: .08em;
}
.comment-list-ttl span {
    display: inline-block;
    padding-left: 2%;
    font-size: 15px;
    letter-spacing: normal;
}

.comment-list {
    display: flex;
    flex-wrap: wrap;
}
.comment-list-item {
    width: 48%;
    margin-right: 3%;
    margin-bottom: 3%;
    color: #FFF;
    border: 2px solid #D7001D;
    box-sizing: border-box;
    box-shadow: 0 0 6px 4px rgba(250,0,29,.7);
}
.comment-list-item:nth-child(2n) {
    margin-right: 0;
}
.comment-list-item-inside {
    height: 100%;
    padding: 8%;
    box-sizing: border-box;
    box-shadow: 0 0 6px 4px rgba(250,0,29,.7) inset;
}
.comment-list-item-txt {
    padding-bottom: 4%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.comment-list-item-txt span {
    font-size: 22px;
    font-weight: 900;
    color: #D7001D;
}
.comment-list-item-name {
    font-size: 22px;
    font-weight: 900;
}
.comment-list-item-pro {
    font-size: 16px;
    font-weight: 500;
}

.top-btn {
    display: block;
    font-family: 'Anton', sans-serif;
    width: 100%;
    max-width: 220px;
    margin: auto;
    padding: 5px 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: .1em;
    color: #E50012;
    transition: .3s;
}
.top-btn:hover {
    color: #000;
    background-color: #E50012;
}

.mb-10 {
    margin-bottom: 10%;
}

footer {
    padding: 1% 0 2%;
    border-top: 1px solid #E50012;
}
.footer-img {
    width: 32%;
    margin: auto;
    padding-bottom: 2%;
}


@media screen and (max-width:768px) {
    .comment-wrapper {
        padding: 10% 5% 6%;
    }
    
    .footer-img {
        width: 85%;
    }
}

@media screen and (max-width:520px) {
    body {
        background-image: url(../images/full/comment/bg_top_sp.png), url(../images/full/comment/bg_btm.png);
        background-position: top, bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: contain;
    }
    
    .comment-wrapper {
        padding: 80% 5% 6%;
    }
    .comment-ttl {
        width: 100%;
        padding-bottom: 10%;
    }
    .comment-list-ttl {
        font-size: 30px;
    }
    .comment-list-ttl span {
        font-size: 12px;
    }
    .comment-list-item-inside {
        padding: 6%;
    }
    .comment-list-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 6%;
    }
    .comment-list-item-txt {
        font-size: 16px;
        text-align: justify;
    }
    .comment-list-item-txt span {
        font-size: 20px;
    }
    .comment-list-item-name {
        font-size: 20px;
    }
    .comment-list-item-pro {
        font-size: 14px;
    }
}




















