/** 後継モデル表示用 **/
@media screen and (min-width: 768px), print {
    .p-successor-model__box {
        border: 1px solid #484848;
        margin-bottom: 40px;
        padding: 30px;
    }
    .p-product-show-detail__h2 {
        font-size: 28px;
        letter-spacing: 1.68px;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    .p-product-show-detail__column-sub {
        margin-right: 30px;
        width: 330px;
    }
    .p-product-show-detail__column-sub img {
        height: auto;
        width: 100%;
    }
    /** base.css と競合して、下線が消えるためimportant付与 **/
    .p-product-show-detail__spec-list li:nth-last-child(3) {
        border-bottom: 1px solid #004da1 !important;
    }
    .p-product-show-detail__spec-list li:last-child {
        border-bottom: 1px solid #004da1 !important;
        padding: 5px 0 !important;
    }
    .p-product-show-detail-button {
        border-radius: 4px;
        height: 60px;
        max-width: 350px;
        width: 100%;
    }
}
@media screen and (max-width: 1000px) {
    .p-product-show-detail-button {
        max-width: 100%;
    }
    /** タブレット表示で下線が消えていたため追加 **/
    .p-product-show-detail__spec-list li:nth-last-child(2) {
        border-bottom: 1px solid #004da1 !important;
    }
}
@media screen and (max-width: 767px) {
    .p-successor-model__box {
        margin-bottom: 40px;
    }
    .p-product-show-detail__column-sub {
        padding: 0 15px;
    }
    .p-product-show-detail__column-sub img {
        display: block;
        margin: 0 auto;
        width: 80%;
    }
    .p-product-show-detail__h2 {
        font-size: 18px;
        letter-spacing: 1.68px;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .p-product-show-detail__h3 {
        padding: 0 15px;
    }
    /** base.css と競合して、下線が消えるためimportant付与 **/
    .p-product-show-detail__spec-list li:nth-last-child(2) {
        border-bottom: 1px solid #004da1 !important;
    }
    .p-product-show-detail__spec-list li:last-child {
        padding: 4px 0 !important;
    }
    .p-product-show-detail-button {
        margin: 10px auto;
        width: 96%;
    }
}
/** 後継モデル表示用 **/