/* 中央寄せ＋最大幅800px */
.price-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* テーブル全体 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

.price-table:last-child {
    margin-bottom: 30px;

}

/* 共通スタイル */
.price-table th,
.price-table td {
    border: 3px solid #ffffff;
    padding: 12px 16px;
    font-size: 14px;
    vertical-align: middle;
}

.price-table th {
    background: #e66410;
    text-align: left;
    color: #ffffff;
    width: 160px;
    text-align: center;
    font-weight: normal;
}

.price-table td {
    background-color: #EEEEEE;

}

.price-table td.price {
    color: #e66410;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
    background-color: #e7650f25;
}


/* タイトル */
.table-title {
    font-size: 28px;
    color: #e66410;
    margin: 40px 0 10px;
    text-align: center;
    font-weight: bold;
}

/* ✅ スマホ対応：テーブルを縦並びカード形式に変換 */
@media screen and (max-width: 768px) {
    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        margin-bottom: 20px;
        /* border: 1px solid #ddd; */
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);

    }

    .price-table td {
        padding: 12px 16px;
        border: none;
        /* border-bottom: 1px solid #eee; */
    }

    .price-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        color: #555;
        margin-bottom: 4px;
    }

    .price-table td.price {
        text-align: left;
        font-size: 16px;
        color: #e66410;
        font-weight: bold;
    }
}

.category-buttons {
    display: flex;
    justify-content: center;
}



.btn-category {
    display: inline-block;
    padding: 12px 32px;
    margin: 10px 10px 50px;
    border: 2px solid #e06000;
    border-radius: 40px;
    color: #e06000;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
}

.btn-category::after {
    content: \"▼\";
    font-size: 12px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-category:hover {
    background-color: #fff4ec;
}

@media screen and (max-width: 768px) {
    .btn-category {
        padding: 12px 0;
    }

    .price-table th,
    .price-table td {
        border: none;
        display: block;
        width: 100%;
    }
}


.notice-box {
    padding: 0 24px;
}

.notice-box__inner {
    align-items: center;
    border: 2px solid red;
    border-radius: 40px;
    padding: 20px 30px;
    margin: 0px auto 100px;
    max-width: 750px;
}

.notice-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    line-height: 60px;
    flex-shrink: 0;
}

.notice-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}


/* 全体行 */
.price-examples__row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

/* 各列 */
.price-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1 1 300px;
    /* max-width: 550px; */
}

.price-col.right {
    gap: 400px;
}

.price-card.modern {
    background: #fff;
    border: 2px solid #e06000;
    border-radius: 4px;
    /* padding: 24px; */
    max-width: 500px;
    margin: 0 auto;
}

.card-header.orange {
    background: #e06000;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
}

.card-image-wrap {
    position: relative;
    /* margin: 20px 0 10px; */
}

.card-image-wrap img {
    width: 100%;
    /* border: 1px solid #ccc; */
    padding: 20px;
}

.card-image-wrap .caption {
    font-size: 12px;
    text-align: right;
    /* margin-top: 4px; */
}

.center-text {
    text-align: center;
}

hr.dashed {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 12px 0;
}

.price-breakdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-top: 12px;
    font-size: 16px;
}

.break-item {
    text-align: center;
}

.label.orange {
    background: #e06000;
    color: #fff;
    padding: 6px 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 4px;
}

.minus {
    font-size: 24px;
    margin-top: 28px;
}

.price-arrow {
    text-align: center;
    font-size: 32px;
    margin: 12px 0;
    color: #e06000;
}

.card-total {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-total .total-price {
    font-size: 28px;
    color: red;
}


.buyback-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px 50px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .card-header.orange {
        font-size: 18px;
    }
}

.buyback-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-item {
    max-width: 300px;
    width: 100%;
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.feature-item p {
    margin-top: 12px;
    font-weight: bold;
    font-size: 16px;
}

.buyback-cta .btn-orange {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #f06c00;
    border-radius: 30px;
    font-size: 16px;
    color: #f06c00;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.buyback-cta .btn-orange:hover {
    background: #f06c00;
    color: white;
}

.buyback-note {
    margin: 40px 0 100px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}