/* blockname */
.post-detail {
    padding: 65px 0 150px;
}
.post-detail__inner {
    margin: 0 auto;
    width: 85%;
    max-width: 1270px;
}
.post-detail__flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.post-detail__images,
.post-detail__info {
    width: 44%;
}
.post-image__thumb {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 10px 0 0;
}
.post-thumb__item {
    background: #F4F4F4;
    line-height: 0;
    transition-duration: .3s;
    width: 19%;
}
.post-thumb__item:not(.empty):hover {
    opacity: .6;
}

.post-detail__ttl {
    color: #808080;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
}
.post-detail__ttl.review {
    font-size: 23px;
    font-weight: normal;
    color: #6f613a;
    margin: 0 0 10px;
}
.post-detail__price .price {
    font-size: 18px;
}
.post-detail__content {
    margin: 15px 0 0;
}
.post-detail__content.review {
    background-color: #f1eee7;
    padding: 30px;
}
.post-detail__content p {
    color: #808080;
    font-size: 14px;
    line-height: 1.8em;
}
.post-detail__content.review p {
    color: #6f613a;
}
.post-detail__code p {
    color: #808080;
    font-size: 14px;
    line-height: 1.8em;
}
.post-detail__txt p {
    color: #808080;
    font-size: 14px;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {
    .post-detail__images,
    .post-detail__info {
        width: 49%;
    }
}
@media screen and (max-width: 768px) {
    .post-detail__images,
    .post-detail__info {
        width: 100%;
    }
    .post-detail__images {
        margin: 0 0 25px;
    }
}