/* --------------------------------------------
   共通設定
   -------------------------------------------- */
.sv-section {
    padding: 80px 0;
}

/*.sv-section:nth-child(even) {
    background: var(--light-color);
}*/

/* 見出し内のアクセントカラー */
.section-title .text-accent {
    color: var(--accent-color);
}

/* --------------------------------------------
   サービス一覧ページ
   -------------------------------------------- */
.sv-hero-list {
    padding: 50px 0 60px;
}

.sv-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sv-list-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sv-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sv-list-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sv-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sv-list-card:hover .sv-list-image img {
    transform: scale(1.05);
}

.sv-list-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.sv-list-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sv-list-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sv-list-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.sv-list-recommend {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sv-list-recommend-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.sv-list-recommend ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-list-recommend li {
    font-size: 13px;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.sv-list-recommend li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.sv-list-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.sv-list-price-label {
    font-size: 13px;
    color: var(--text-color);
}

.sv-list-price-value {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.sv-list-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.sv-list-link i {
    transition: transform 0.3s ease;
}

.sv-list-card:hover .sv-list-link i {
    transform: translateX(5px);
}

/* 共通の強み */
.sv-common-features {
    background: var(--light-color);
}

.sv-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sv-feature-item {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.sv-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.sv-feature-icon i {
    font-size: 20px;
    color: #fff;
}

.sv-feature-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.sv-feature-item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* サービス一覧レスポンシブ */
@media (max-width: 1024px) {
    .sv-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sv-list-grid {
        grid-template-columns: 1fr;
    }

    .sv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sv-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------
   パンくずリスト
   -------------------------------------------- */
.sv-breadcrumb {
    background: var(--light-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.sv-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.sv-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.sv-breadcrumb-list li:not(:last-child)::after {
    content: '>';
    color: var(--border-color);
}

.sv-breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.sv-breadcrumb-list a:hover {
    text-decoration: underline;
}

/* --------------------------------------------
   ファーストビュー
   -------------------------------------------- */
.sv-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.sv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-dots.png') repeat;
    opacity: 0.1;
}

.sv-hero-content {
    position: relative;
    margin-top: 4em;
    z-index: 1;
    text-align: center;
}

.sv-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.sv-hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.sv-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.sv-hero-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-wrap: wrap;
}

.sv-hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.sv-hero-points i {
    color: var(--accent-color);
}

.sv-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --------------------------------------------
   ボタン
   -------------------------------------------- */
.sv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sv-btn-phone {
    background: var(--secondary-color);
    color: #fff;
}

.sv-btn-phone:hover {
    background: #059669;
    transform: translateY(-2px);
}

.sv-btn-contact {
    background: var(--accent-color);
    color: #fff;
}

.sv-btn-contact:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.sv-btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.sv-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.sv-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.sv-btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.sv-btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* --------------------------------------------
   サービス概要
   -------------------------------------------- */
.sv-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sv-intro-text {
    flex: 1;
}

.sv-intro-text p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-color);
}

.sv-intro-text p:last-child {
    margin-bottom: 0;
}

.sv-intro-image {
    flex: 0 0 450px;
}

.sv-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------
   回収タイプ
   -------------------------------------------- */
.sv-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sv-type-card {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sv-type-image {
    flex: 0 0 180px;
}

.sv-type-image img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 8px;
}

.sv-type-content {
    flex: 1;
}

.sv-type-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-type-title i {
    color: var(--primary-color);
}

.sv-type-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------
   特殊対応
   -------------------------------------------- */
.sv-special {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
}

.sv-special .section-title {
    color: #fff;
}

.sv-special .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.sv-special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sv-special-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.sv-special-card:hover {
    transform: translateY(-5px);
}

.sv-special-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sv-special-icon i {
    font-size: 32px;
    color: #fff;
}

.sv-special-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sv-special-card p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* --------------------------------------------
   料金表
   -------------------------------------------- */
.sv-pricing-table-wrap {
    overflow-x: auto;
    margin-bottom: 30px;
}

.sv-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sv-pricing-table th,
.sv-pricing-table td {
    padding: 20px 25px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.sv-pricing-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.sv-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.sv-pricing-table tbody tr:hover {
    background: var(--light-color);
}

.sv-plan-name {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.sv-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
}

.sv-pricing-notes {
    background: var(--light-color);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sv-pricing-notes p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.sv-pricing-notes p:last-child {
    margin-bottom: 0;
}

.sv-pricing-notes i {
    color: var(--primary-color);
}

.sv-pricing-cta {
    text-align: center;
}

/* --------------------------------------------
   選ばれる理由
   -------------------------------------------- */
.sv-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sv-reason-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.sv-reason-card:hover {
    transform: translateY(-5px);
}

.sv-reason-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.sv-reason-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    margin-top: 15px;
}

.sv-reason-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------
   ご利用の流れ
   -------------------------------------------- */
.sv-flow-steps {
    display: flex;
    gap: 20px;
    position: relative;
}

.sv-flow-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: var(--border-color);
    z-index: 0;
}

.sv-flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sv-flow-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow);
}

.sv-flow-icon i {
    font-size: 36px;
    color: #fff;
}

.sv-flow-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.sv-flow-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sv-flow-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    padding: 0 10px;
}

/* --------------------------------------------
   よくある質問
   -------------------------------------------- */
.sv-faq-list {
    max-width: 900px;
    margin: 0 auto 40px;
}

.sv-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.sv-faq-question,
.sv-faq-answer {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
}

.sv-faq-question {
    background: var(--light-color);
    font-weight: 700;
    color: var(--dark-color);
}

.sv-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.sv-faq-icon-a {
    background: var(--accent-color);
}

.sv-faq-text {
    flex: 1;
    line-height: 1.7;
}

.sv-faq-answer {
    color: var(--text-color);
}

.sv-faq-more {
    text-align: center;
}

/* --------------------------------------------
   対応エリア
   -------------------------------------------- */
.sv-area-map {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sv-area-map iframe {
    display: block;
}

.sv-area-list {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sv-area-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.sv-area-text {
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 25px;
}

.sv-area-text:last-child {
    margin-bottom: 0;
}

.sv-area-cta {
    text-align: center;
}

/* --------------------------------------------
   CTA
   -------------------------------------------- */
.sv-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: #fff;
    text-align: center;
}

.sv-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.sv-cta-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sv-cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.sv-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.sv-cta-buttons .sv-btn-phone {
    flex-direction: column;
    padding: 15px 40px;
}

.sv-btn-label {
    font-size: 14px;
    opacity: 0.9;
}

.sv-btn-number {
    font-size: 24px;
    font-weight: 900;
}

.sv-cta-hours {
    font-size: 14px;
    opacity: 0.8;
}

.sv-cta-hours i {
    margin-right: 5px;
}

/* --------------------------------------------
   関連サービス
   -------------------------------------------- */
.sv-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sv-related-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sv-related-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sv-related-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.sv-related-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.sv-related-card p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------
   レスポンシブ
   -------------------------------------------- */
@media (max-width: 1024px) {
    .sv-intro-content {
        flex-direction: column;
    }

    .sv-intro-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .sv-types-grid {
        grid-template-columns: 1fr;
    }

    .sv-special-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .sv-flow-steps::before {
        display: none;
    }

    .sv-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv-section {
        padding: 60px 0;
    }

    .sv-hero {
        padding: 40px 0 60px;
    }

    .sv-hero-title {
        font-size: 32px;
    }

    .sv-hero-subtitle {
        font-size: 16px;
    }

    .sv-hero-points {
        flex-direction: column;
        gap: 15px;
    }

    .sv-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .sv-type-card {
        flex-direction: column;
    }

    .sv-type-image {
        flex: none;
        width: 100%;
    }

    .sv-type-image img {
        height: 180px;
    }

    .sv-special-grid {
        grid-template-columns: 1fr;
    }

    .sv-reasons-grid {
        grid-template-columns: 1fr;
    }

    .sv-pricing-table th,
    .sv-pricing-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .sv-price {
        font-size: 22px;
    }

    .sv-cta-title {
        font-size: 24px;
    }

    .sv-cta-text {
        font-size: 16px;
    }

    .sv-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sv-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sv-hero-title {
        font-size: 28px;
    }

    .sv-btn {
        width: 100%;
    }

    .sv-faq-question,
    .sv-faq-answer {
        padding: 15px;
    }
}

/* --------------------------------------------
   比較表（粗大ゴミページ用）
   -------------------------------------------- */
.sv-compare-table-wrap {
    overflow-x: auto;
}

.sv-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sv-compare-table th,
.sv-compare-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.sv-compare-table th {
    background: var(--light-color);
    font-weight: 700;
    font-size: 16px;
}

.sv-compare-table .sv-highlight-col {
    background: rgba(37, 99, 235, 0.05);
}

.sv-compare-table th.sv-highlight-col {
    background: var(--primary-color);
    color: #fff;
}

.sv-icon-good {
    color: var(--secondary-color);
    margin-right: 8px;
}

.sv-icon-bad {
    color: #ef4444;
    margin-right: 8px;
}

/* --------------------------------------------
   回収品目グリッド
   -------------------------------------------- */
.sv-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.sv-items-category {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sv-items-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-items-title i {
    color: var(--primary-color);
}

.sv-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-items-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}

.sv-items-list li:last-child {
    border-bottom: none;
}

.sv-items-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.sv-items-note p {
    margin: 0;
    color: var(--text-color);
}

.sv-items-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* --------------------------------------------
   料金カード
   -------------------------------------------- */
.sv-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sv-pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.sv-pricing-card-recommend {
    border: 3px solid var(--accent-color);
}

.sv-pricing-card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.sv-pricing-card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.sv-pricing-card-header h3 {
    margin: 0;
    font-size: 20px;
}

.sv-pricing-card-body {
    padding: 30px;
}

.sv-pricing-card-price {
    text-align: center;
    margin-bottom: 25px;
}

.sv-pricing-card-price span {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-color);
}

.sv-pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-pricing-card-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-pricing-card-list li:last-child {
    border-bottom: none;
}

.sv-pricing-card-list i {
    color: var(--secondary-color);
}

/* 料金例グリッド */
.sv-pricing-example {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sv-pricing-example-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
}

.sv-pricing-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sv-pricing-example-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sv-pricing-example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.sv-pricing-example-name {
    font-size: 14px;
    color: var(--text-color);
}

.sv-pricing-example-price {
    font-weight: 700;
    color: var(--accent-color);
}

/* 積み放題パック */
.sv-pricing-pack {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    color: #fff;
}

.sv-pricing-pack-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-pricing-pack-badge {
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.sv-pricing-pack-header h3 {
    margin: 0;
    font-size: 18px;
}

.sv-pricing-pack-body {
    padding: 30px;
}

.sv-pricing-pack-body>p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.sv-pricing-pack-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-pricing-pack-price {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.sv-pricing-pack-label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.sv-pricing-pack-amount span {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-color);
}

/* --------------------------------------------
   状況対応（ゴミ屋敷ページ用）
   -------------------------------------------- */
.sv-situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sv-situation-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.sv-situation-card:hover {
    transform: translateY(-5px);
}

.sv-situation-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sv-situation-icon i {
    font-size: 28px;
    color: #fff;
}

.sv-situation-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sv-situation-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* 強み（ゴミ屋敷ページ用） */
.sv-strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sv-strength-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.sv-strength-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.sv-strength-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    margin-top: 15px;
}

.sv-strength-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------
   家具グリッド（家具ページ用）
   -------------------------------------------- */
.sv-furniture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sv-furniture-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.sv-furniture-card:hover {
    transform: translateY(-5px);
}

.sv-furniture-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sv-furniture-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.sv-furniture-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.sv-furniture-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------
   買取セクション
   -------------------------------------------- */
.sv-kaitori-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sv-kaitori-text {
    flex: 1;
}

.sv-kaitori-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.sv-kaitori-brands {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.sv-kaitori-brands h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.sv-kaitori-brands p {
    margin: 0;
    font-size: 14px;
}

.sv-kaitori-points {
    flex: 0 0 280px;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
}

.sv-kaitori-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-kaitori-point:last-child {
    border-bottom: none;
}

.sv-kaitori-point i {
    color: var(--accent-color);
    font-size: 20px;
}

/* --------------------------------------------
   リサイクル家電（家電ページ用）
   -------------------------------------------- */
.sv-recycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.sv-recycle-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.sv-recycle-card:hover {
    transform: translateY(-5px);
}

.sv-recycle-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sv-recycle-icon i {
    font-size: 32px;
    color: #fff;
}

.sv-recycle-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sv-recycle-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.sv-recycle-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.sv-recycle-note p {
    margin: 0;
    color: var(--text-color);
}

.sv-recycle-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* その他家電リスト */
.sv-appliances-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.sv-appliances-category {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sv-appliances-category h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-appliances-category h3 i {
    color: var(--primary-color);
}

.sv-appliances-category p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------
   レスポンシブ追加
   -------------------------------------------- */
@media (max-width: 1024px) {
    .sv-items-grid {
        grid-template-columns: 1fr;
    }

    .sv-pricing-cards {
        grid-template-columns: 1fr;
    }

    .sv-pricing-example-grid,
    .sv-pricing-example-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-pricing-pack-prices {
        grid-template-columns: 1fr;
    }

    .sv-situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-furniture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-kaitori-content {
        flex-direction: column;
    }

    .sv-kaitori-points {
        flex: none;
        width: 100%;
    }

    .sv-recycle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-appliances-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sv-situations-grid {
        grid-template-columns: 1fr;
    }

    .sv-strengths-grid {
        grid-template-columns: 1fr;
    }

    .sv-furniture-grid {
        grid-template-columns: 1fr;
    }

    .sv-recycle-grid {
        grid-template-columns: 1fr;
    }

    .sv-pricing-example-grid,
    .sv-pricing-example-grid-4 {
        grid-template-columns: 1fr;
    }

    .sv-compare-table {
        font-size: 14px;
    }

    .sv-compare-table th,
    .sv-compare-table td {
        padding: 12px 10px;
    }
}

/* --------------------------------------------
   SPのみ表示
   -------------------------------------------- */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}


/* --------------------------------------------
   買取強化ブランド（買取ページ用）
   -------------------------------------------- */
.sv-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sv-brands-category {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sv-brands-category h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-brands-category h3 i {
    color: var(--primary-color);
}

.sv-brands-category p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 1024px) {
    .sv-brands-grid {
        grid-template-columns: 1fr;
    }
}