h1.inner {
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    color: #cc2023;
    margin: 70px auto;
}

.sell-shop {
    margin-top: 0;
    padding-top: 0;
}

.tbl-box {
    margin-top: 70px;
}

.btn-red {
    position: relative;
    display: inline-block;
    letter-spacing: 5px;
    padding-right: 20px;
    cursor: pointer;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: url(../../common/images/icn_path_y.svg) no-repeat left 75% top 50% / 23px;
    background-color: #cc2023;
    color: #fff;
    border-radius: 20px;
}

i.fa.fa-download {
    margin-right: 5px;
}

.btn-brown.download {
    width: 100%;
}

h2 {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

/* =========================================
   買取可能商品コンテンツ
========================================= */

.product {
    margin-top: 100px;
    padding: 60px 50px;
    background: #f8f6f2;
    max-width: unset;
}

/* 見出し */

.product h2 {
    position: relative;
    color: #333;
    margin-bottom: 35px;
    padding-bottom: 18px;
}

.product h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #cc2023;
}

/* =========================================
   買取可能商品一覧
========================================= */

.product_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 25px auto 0;
    max-width: 950px;
}

.product_list li {
    width: 18%;
    padding: 15px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    transition: 0.3s;
}

.product_list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product_list li img {
    display: block;
    width: 100%;
}

.product_list p {
    text-align: center;
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}

/* =========================================
   こんなものでもOK
========================================= */

.konnamonodemo_kaitori {
    margin: 70px auto 0;
    padding: 50px 30px 40px;
    background: #fff;
    border: 1px solid #e4ddd2;
    border-radius: 10px;
    max-width: 950px;
}

.konnamonodemo_ttl {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #cc2023;
    margin-bottom: 35px;
    padding-bottom: 15px;
}

.konnamonodemo_ttl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #b59a63;
}

.konnamonodemo_kaitori ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.konnamonodemo_kaitori li {
    width: 23%;
}

.konnamonodemo_kaitori li img {
    display: block;
    width: 70%;
    margin: auto;
}

.konnamonodemo_kaitori li p {
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
    color: #555;
}

.shop.inner {
    margin-top: 100px;
}

.faq {
    margin-top: 100px;
}

.faq h2 {
    position: relative;
    color: #333;
    margin-bottom: 45px;
    padding-bottom: 18px;
}

.faq h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #cc2023;
}

.faq_list {
    max-width: 900px;
    margin: 0 auto;
}

.faq_item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 10px 2px 10px rgba(0, 0, 0, 0.06); */
    border: 2px solid #000;
}

/* 質問 */

.faq_question {
    position: relative;
    display: flex;
    align-items: center;
    padding: 22px 60px 22px 25px;
    background: #fff;
    cursor: pointer;
}

.faq_question p {
    margin: 0;
    font-weight: bold;
    color: #333;
}

/* Q・Aアイコン */

.faq_q,
.faq_a {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-right: 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
}

.faq_q {
    background: #cc2023;
    color: #fff;
}

.faq_a {
    background: #b59a63;
    color: #fff;
}

/* ＋・－アイコン */

.faq_icon {
    position: absolute;
    top: 50%;
    right: 25px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

.faq_icon::before,
.faq_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #cc2023;
    transition: transform 0.3s;
}

.faq_icon::before {
    transform: translate(-50%, -50%);
}

.faq_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いているときは－ */

.faq_item.is-open .faq_icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* 回答 */

.faq_answer {
    display: none;
    align-items: flex-start;
    padding: 20px 25px;
    background: #f7f7f7;
    border-top: 1px solid #919191;
}

.faq_item.is-open .faq_answer {
    display: flex;
}

.faq_answer p {
    margin: 5px 0 0;
    line-height: 1.7;
    color: #000000;
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 480px) {
    h1.inner {
        font-size: 30px;
        margin: 50px auto;
    }

    .product {
        margin-top: 60px;
        padding: 40px 15px;
        border-radius: 0;
    }

    .product h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .product_list {
        justify-content: space-between;
    }

    .product_list li {
        width: 48%;
        margin-top: 15px;
        padding: 15px 8px;
    }

    .product_list li:first-child,
    .product_list li:nth-child(2) {
        margin-top: 0;
    }

    .product_list li img {
        width: 85%;
        margin: auto;
    }

    .product_list li p {
        font-size: 15px;
    }

    .konnamonodemo_kaitori {
        margin-top: 50px;
        padding: 35px 15px 30px;
    }

    .konnamonodemo_ttl {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .konnamonodemo_kaitori li {
        width: 48%;
        margin-top: 30px;
    }

    .konnamonodemo_kaitori li:nth-child(1),
    .konnamonodemo_kaitori li:nth-child(2) {
        margin-top: 0;
    }

    .konnamonodemo_kaitori li img {
        width: 75%;
    }

    .konnamonodemo_kaitori li p {
        font-size: 17px;
        margin-top: 8px;
        line-height: 1.4;
    }

    .faq {
        margin-top: 50px;
    }

    .faq h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .faq_item {
        width: 90%;
        margin: 0 auto 10px;
        border-radius: 6px;
    }

    .faq_question {
        padding: 18px 45px 18px 15px;
    }

    .faq_question p {
        font-size: 15px;
        line-height: 1.5;
    }

    .faq_q,
    .faq_a {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 16px;
    }

    .faq_icon {
        right: 15px;
    }

    .faq_answer {
        padding: 18px 15px;
    }

    .faq_answer p {
        font-size: 14px;
        line-height: 1.6;
    }
}