/* ========================================
   TOPページ専用スタイルシート (top.css)
   ======================================== */

/* ========================================
   ページタイトルセクション - Page Title Section
   ======================================== */
.page-title-section {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}
.page-title-section .container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-title-section .page-title {
    font-size: 32px;
    font-weight: 900;
    color: #00AAFF;
    margin: 0;
    line-height: 1.4;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .page-title-section {
        padding: 36px 0;
    }
    .page-title-section .page-title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .page-title-section {
        padding: 32px 0;
    }
    .page-title-section .page-title {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .page-title-section {
        padding: 28px 0;
    }
    .page-title-section .page-title {
        font-size: 20px;
        line-height: 1.5;
    }
}

/* ========================================
   特徴セクションスタイル設定
   ======================================== */
.features {
    padding: 32px 0;
    background: #fff;
}
.features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.features .feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
.features .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.features .feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.features .feature-text {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    color: #00a3ec;
    white-space: nowrap;
}
.features .feature-text-primary {
    color: #00a3ec;
}
.features .feature-text-secondary {
    color: #333333;
}
.features .feature-text-asterisk {
    font-size: 12px;
    color: #00a3ec;
}
.features .feature-text-multiline {
    display: block;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .features .features-grid {
        gap: 15px;
    }
    .features .feature-text {
        font-size: 18px;
    }
    .features .feature-icon {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .features {
        padding: 24px 0;
    }
    .features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
        justify-items: start;
    }
    .features .feature-icon {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 600px) {
    .features .features-grid {
        gap: 20px;
        justify-items: center;
    }
    .features .feature-item {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .features {
        padding: 20px 0;
    }
    .features .features-grid {
        gap: 15px;
    }
    .features .feature-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .features .feature-text {
        font-size: 16px;
    }
    .features .feature-icon {
        width: 44px;
        height: 44px;
    }
}

.reasons-section {
    padding: 100px 0 128px;
    background: #fff;
}

.reasons-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 128px;
}
.reasons-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
}
.reasons-title-icon {
    flex-shrink: 0;
}
.reasons-title-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.reasons-title-text {
    display: inline-block;
    font-size: 48px;
    line-height: 1.2;
}
.reasons-title-part1 {
    color: #333333;
}
.reasons-title-part2 {
    color: #006AFF;
}
.reasons-subtitle {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0 80px;
}
.reasons-subtitle-line {
    display: block;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 8px;
}
.reasons-subtitle-line:last-child {
    margin-bottom: 0;
}
.reasons-subtitle-highlight {
    color: #E06C47;
}
.reasons-subtitle-decoration {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #333333;
    transform: translateY(-50%);
}
.reasons-subtitle-decoration-left {
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}
.reasons-subtitle-decoration-right {
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}

/* 選ばれる理由セクション - レスポンシブデザイン */
@media (max-width: 1200px) {
    .reasons-section {
        padding: 80px 0 100px;
    }
    .reasons-title-wrapper {
        margin-bottom: 60px;
    }
    .reasons-title {
        margin-bottom: 32px;
    }
    .reasons-title-icon-img {
        width: 56px;
        height: 56px;
    }
    .reasons-title-text {
        font-size: 40px;
    }
    .reasons-subtitle {
        padding: 0 60px;
    }
    .reasons-subtitle-line {
        font-size: 20px;
    }
    .reasons-subtitle-decoration {
        width: 32px;
    }
}

@media (max-width: 768px) {
    .reasons-section {
        padding: 60px 0 80px;
    }
    .reasons-title-wrapper {
        margin-bottom: 50px;
    }
    .reasons-title {
        gap: 15px;
        margin-bottom: 28px;
    }
    .reasons-title-icon-img {
        width: 48px;
        height: 48px;
    }
    .reasons-title-text {
        font-size: 32px;
    }
    .reasons-subtitle {
        padding: 0 50px;
    }
    .reasons-subtitle-line {
        font-size: 18px;
    }
    .reasons-subtitle-decoration {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .reasons-section {
        padding: 40px 0 60px;
    }
    .reasons-title-wrapper {
        margin-bottom: 40px;
    }
    .reasons-title {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 24px;
    }
    .reasons-title-icon-img {
        width: 40px;
        height: 40px;
    }
    .reasons-title-text {
        font-size: 24px;
    }
    .reasons-subtitle {
        padding: 0 25px;
    }
    .reasons-subtitle-line {
        font-size: 15px;
        margin: 0;
    }
    .reasons-subtitle-decoration {
        width: 16px;
    }
}

/* ========================================
   特徴カードセクション - Feature Cards Section
   ======================================== */
.reasons-features {
    margin-bottom: 128px;
}
.reasons-features .reasons-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.reasons-features .reasons-feature-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.reasons-features .reasons-feature-header {
    background: #E59C23;
    padding: 6px 0;
    text-align: center;
}
.reasons-features .reasons-feature-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    display: block;
}
.reasons-features .reasons-feature-image {
    width: 100%;
    aspect-ratio: 27 / 20;
    overflow: hidden;
    background: #f5f5f5;
}
.reasons-features .reasons-feature-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reasons-features .reasons-feature-description {
    padding: 20px;
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .reasons-features {
        margin-bottom: 100px;
    }
    .reasons-features .reasons-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    .reasons-features .reasons-feature-title {
        font-size: 16px;
    }
    .reasons-features .reasons-feature-description {
        font-size: 13px;
        padding: 18px;
    }
}
@media (max-width: 768px) {
    .reasons-features {
        margin-bottom: 80px;
    }
    .reasons-features .reasons-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .reasons-features .reasons-feature-title {
        font-size: 15px;
    }
    .reasons-features .reasons-feature-description {
        font-size: 12px;
        padding: 16px;
        line-height: 1.7;
    }
}
@media (max-width: 480px) {
    .reasons-features {
        margin-bottom: 60px;
    }
    .reasons-features .reasons-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reasons-features .reasons-feature-image {
        aspect-ratio: 16 / 9;
    }
    .reasons-features .reasons-feature-title {
        font-size: 14px;
    }
    .reasons-features .reasons-feature-description {
        font-size: 13px;
        padding: 16px;
    }
}

/* 理由アイテム ====================================== */
.reason-item {
    text-align: center;
    margin-bottom: 80px;
}

.reason-item:last-child {
    margin-bottom: 0;
}

.reason-badge {
    background: #00a3ec;
    border-radius: 20px;
    padding: 8px 20px;
    display: inline-block;
    margin: 0 auto 32px;
    text-align: center;
}

.reason-badge-text {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.reason-content {
    max-width: 1040px;
    margin: 0 auto;
}
.reason-service-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* 理由アイテム - レスポンシブデザイン */
@media (max-width: 1200px) {
    .reason-item {
        margin-bottom: 60px;
    }
    .reason-badge {
        padding: 8px 20px;
        font-size: 18px;
    }
    .reason-service-button-wrapper {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .reason-item {
        margin-bottom: 50px;
    }
    .reason-badge {
        padding: 6px 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reason-item {
        margin-bottom: 40px;
    }
    .reason-badge {
        padding: 6px 16px;
        font-size: 16px;
    }
    .reason-service-button-wrapper {
        margin-top: 24px;
    }
}

/* ハイライト部分 ====================================== */
.reason-highlight {
    position: relative;
    margin-bottom: 64px;
}

.reason-highlight-text {
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
}
.reason-highlight-text .reason-highlight-part1 {
    color: #333333;
}
.reason-highlight-text .reason-highlight-part2 {
    color: #006AFF;
}
.reason-highlight-text p {
    margin: 0;
    line-height: 1.4;
}
.reason-highlight-text .reason-highlight-small {
    font-size: 28px;
    color: #333333;
}
.reason-highlight-text .reason-highlight-large {
    font-size: 48px;
    color: #333333;
}

/* ハイライト部分 - レスポンシブデザイン */
@media (max-width: 1200px) {
    .reason-highlight-text {
        font-size: 36px;
    }
    .reason-highlight-text .reason-highlight-small {
        font-size: 24px;
    }
    .reason-highlight-text .reason-highlight-large {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .reason-highlight {
        margin-bottom: 30px;
    }
    .reason-highlight-text {
        font-size: 28px;
    }
    .reason-highlight-text .reason-highlight-small {
        font-size: 20px;
    }
    .reason-highlight-text .reason-highlight-large {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .reason-highlight {
        margin-bottom: 20px;
    }
    .reason-highlight-text {
        font-size: 22px;
    }
    .reason-highlight-text .reason-highlight-small {
        font-size: 18px;
    }
    .reason-highlight-text .reason-highlight-large {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

/* ライセンス表示 ====================================== */
.reason-licenses {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.license-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-img {
    max-width: 200px;
    max-height: 174px;
    object-fit: contain;
}

.license-text {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin: 0;
}

.reason-note {
    font-size: 13px;
    color: #828282;
    text-align: center;
    line-height: 1;
    margin: 0;
}

/* ライセンス表示 - レスポンシブデザイン */
@media (max-width: 768px) {
    .reason-licenses {
        flex-direction: column;
        align-items: center;
    }
    .license-item {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .reason-licenses {
        gap: 20px;
    }
    .license-item {
        max-width: 280px;
    }
}

/* 警告ボックス ====================================== */
.reason-warning {
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 48px;
    margin-top: 64px;
    position: relative;
}

.warning-icon {
    width: 40px;
    aspect-ratio: 1 / 1;
    margin-right: 12px;
    flex-shrink: 0;
}

.warning-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 40px 0;
    line-height: 1;
}

.warning-content {
    font-size: 16px;
    color: #333333;
    line-height: 2;
    text-align: center;
    margin: 0;
}

.warning-content p {
    margin: 0;
}

/* 警告ボックス - レスポンシブデザイン */
@media (max-width: 768px) {
    .reason-warning {
        padding: 30px;
        margin-top: 40px;
    }
    .warning-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reason-warning {
        padding: 10px;
        margin-top: 30px;
    }
    .warning-icon {
        width: 25px;
    }
    .warning-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .warning-content {
        font-size: 13px;
        text-align: left;
    }
}

/* 比較テーブル ====================================== */
.comparison-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 16px 12px;
    background: #00a3ec;
}

.comparison-service {
    background: #fff;
}

.comparison-company {
    background: #00a3ec;
    border-radius: 8px 0 0 0;
}

.comparison-other {
    background: #333333;
    border-radius: 0 8px 0 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row .right-corner {
    border-radius: 8px 0 0 0;
}

.comparison-label {
    background: #00a3ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 16px 12px;
}

.comparison-our {
    background: rgba(230, 244, 241, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
}

.comparison-their {
    background: rgba(230, 244, 241, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.comparison-check,
.comparison-x {
    width: 100%;
    height: 100%;
}

.comparison-text {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
}

.comparison-text p {
    margin: 0;
}

/* 比較テーブル - レスポンシブデザイン */
@media (max-width: 1200px) {
    .comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 25% 37.5% 37.5%;
        min-width: 0;
    }
    .comparison-cell,
    .comparison-label,
    .comparison-our,
    .comparison-their {
        padding: 8px 6px;
        font-size: 14px;
    }
    .comparison-company {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        margin-bottom: 30px;
    }
    .comparison-cell,
    .comparison-label {
        padding: 8px 6px;
        font-size: 12px;
    }
    .comparison-company {
        font-size: 11px;
    }
    .comparison-text {
        font-size: 12px;
    }
}

/* お客様の声 ====================================== */
.customer-voices {
    width: 100vw;
    margin-left: calc(-50vw + 50% - 8px);
    margin-top: 100px;
    overflow: hidden;
}

.voices-title {
    background: #f35b6c;
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title-text {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1;
}

.voices-slider {
    margin-bottom: 40px;
}

.voice-card {
    background: #ecf7f5;
    border-radius: 16px;
    padding: 24px;
    flex-shrink: 0;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.voice-avatar {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.voice-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.voice-info {
    flex: 1;
}

.voice-location-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voice-location {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

.voice-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.voice-rating-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.voice-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.voice-tag {
    background: #00b69c;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 16px;
    line-height: 1;
    white-space: nowrap;
}

.voice-content {
    font-size: 16px;
    color: #333333;
    line-height: 2;
}

.voice-content p {
    margin: 0;
    text-align: left;
}

.voice-info p {
    text-align: left;
}

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

.voices-pagination-img {
    width: 200px;
    height: 24px;
}

/* お客様の声 - レスポンシブデザイン */
@media (max-width: 1200px) {
    .section-title-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .customer-voices {
        margin-top: 60px;
    }
    .voices-title {
        padding: 12px 20px;
        margin-bottom: 30px;
    }
    .section-title-text {
        font-size: 18px;
    }
    .voice-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .voice-info {
        order: 2;
    }
    .voice-rating {
        order: 3;
    }
}

@media (max-width: 480px) {
    .voice-card {
        padding: 20px;
    }
    .voice-location {
        font-size: 14px;
    }
    .voice-title {
        font-size: 18px;
    }
    .voice-tag {
        font-size: 12px;
        padding: 3px 10px;
    }
    .voice-content {
        font-size: 14px;
    }
}

/* 買取セクション ====================================== */
.reason-buyback {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.buyback-image {
    width: 320px;
    max-width: 320px;
    aspect-ratio: 320 / 260;
    flex-shrink: 0;
}

.buyback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.buyback-content {
    flex: 1;
}

.buyback-title {
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin: 0 0 16px 0;
    line-height: 1;
}

.buyback-description {
    font-size: 16px;
    color: #333333;
    line-height: 2;
    margin: 0;
}

.buyback-results {
    max-width: 1040px;
    margin: 0 auto;
}

.results-title {
    background: #f35b6c;
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 40px;
}


.results-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.result-item {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.result-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    background: rgba(230, 244, 241, 0.75);
    padding: 20px 24px;
    text-align: center;
}

.result-name {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 12px 0;
    line-height: 1;
}

.result-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.result-amount {
    font-weight: 700;
    font-size: 40px;
    color: #f35b6c;
    line-height: 1;
}

.result-unit {
    font-weight: 700;
    font-size: 14px;
    color: #333333;
    line-height: 1;
}

.buyback-categories-wrapper {
    text-align: center;
}
.buyback-categories {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.buyback-category {
    flex: 1;
    max-width: 320px;
}
.buyback-category-title {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #333333;
}
.buyback-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.buyback-category-list li {
    font-size: 16px;
    color: #333333;
    line-height: 2;
}
.buyback-categories-wrapper {
    margin-top: 60px;
}
.buyback-categories-title {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin: 0 auto 40px auto;
    padding: 16px 32px;
    background: #4caf50;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .buyback-image {
        width: 25vw;
    }
    .results-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    .result-item {
        width: 280px;
    }
    .buyback-categories-wrapper {
        margin-top: 48px;
    }
    .buyback-categories-title {
        font-size: 17px;
        padding: 14px 28px;
        margin-bottom: 32px;
    }
    .buyback-categories {
        gap: 30px;
    }
    .buyback-category {
        max-width: 280px;
    }
    .buyback-category-title {
        font-size: 18px;
    }
    .buyback-category-list li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .buyback-description {
        font-size: 14px;
    }
    .results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
    }
    .result-item {
        width: 100%;
    }
    .result-info {
        padding: 12px 16px;
    }
    .reason-buyback {
        flex-direction: column;
        text-align: center;
    }
    .buyback-image {
        width: 50vw;
    }
    .buyback-categories-wrapper {
        margin-top: 40px;
    }
    .buyback-categories-title {
        font-size: 16px;
        padding: 12px 24px;
        margin-bottom: 32px;
    }
    .buyback-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        justify-items: center;
    }
    .buyback-category {
        max-width: 100%;
        width: 100%;
    }
    .buyback-category-title {
        font-size: 18px;
    }
    .buyback-category-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .buyback-title {
        font-size: 20px;
    }
    .result-name {
        font-size: 14px;
    }
    .result-amount {
        font-size: 24px;
    }
    .result-unit {
        font-size: 10px;
    }
    .buyback-categories-wrapper {
        margin-top: 32px;
    }
    .buyback-categories-title {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    .buyback-categories {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .buyback-category-title {
        font-size: 16px;
    }
    .buyback-category-list li {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ========================================
   よくあるご質問セクション - FAQ Section
   ======================================== */
.faq-section .faq-description {
    max-width: 800px;
    margin: 0 auto 48px auto;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-description-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 16px 0;
}
.faq-section .faq-description-note {
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .faq-section .faq-description {
        padding: 24px;
        margin-bottom: 40px;
    }
    .faq-section .faq-description-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section .faq-description {
        padding: 20px;
        margin-bottom: 32px;
    }
    .faq-section .faq-description-text {
        font-size: 14px;
    }
}

/* ========================================
   不用品回収実績セクション - Achievement Section
   ======================================== */
.achievement-section {
    background: url('/kataduke/assets/img/_top/cityscape_silhouette.webp') no-repeat center bottom;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}
.achievement-section .container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.achievement-section .achievement-header {
    text-align: center;
    margin-bottom: 40px;
}
.achievement-section .achievement-subtitle {
    font-size: 35px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
}
.achievement-section .achievement-number {
    color: #E06C47;
}
.achievement-section .achievement-title {
    font-size: 64px;
    font-weight: 900;
    color: #333333;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}
.achievement-section .achievement-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 12px;
    background: #FFD700;
    z-index: -1;
}
.achievement-section .achievement-image-wrapper {
    text-align: center;
    margin: 40px 0;
}
.achievement-section .achievement-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.achievement-section .achievement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.achievement-section .achievement-subheading {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.5;
}
.achievement-section .achievement-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}
.achievement-section .achievement-text p {
    margin-bottom: 20px;
}
.achievement-section .achievement-text p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .achievement-section {
        padding: 60px 0;
    }
    .achievement-section .achievement-subtitle {
        font-size: 30px;
    }
    .achievement-section .achievement-title {
        font-size: 52px;
    }
}
@media (max-width: 768px) {
    .achievement-section {
        padding: 40px 0;
    }
    .achievement-section .achievement-header {
        margin-bottom: 30px;
    }
    .achievement-section .achievement-subtitle {
        font-size: 25px;
    }
    .achievement-section .achievement-title {
        font-size: 40px;
    }
    .achievement-section .achievement-title::after {
        height: 8px;
        left: -5px;
        right: -5px;
    }
    .achievement-section .achievement-image-wrapper {
        margin: 30px 0;
    }
    .achievement-section .achievement-content {
        padding: 0 10px;
    }
    .achievement-section .achievement-subheading {
        font-size: 20px;
    }
    .achievement-section .achievement-text {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .achievement-section .achievement-subtitle {
        font-size: 23px;
    }
    .achievement-section .achievement-title {
        font-size: 32px;
    }
    .achievement-section .achievement-subheading {
        font-size: 18px;
    }
}

/* ========================================
   お悩み解決セクション - Problem Solution Section
   ======================================== */
.problem-solution-section {
    width: 100%;
}
.problem-solution-section .problem-part {
    width: 100%;
}
.problem-solution-section .problem-header {
    background: #006AFF;
    padding: 40px 20px;
    text-align: center;
}
.problem-solution-section .problem-header-text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}
.problem-solution-section .problem-header-text-highlight {
    color: #FFD700;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}
.problem-solution-section .problem-content {
    background: #F5F5F7;
    padding: 0 20px;
}
.problem-solution-section .problem-visual-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.problem-solution-section .problem-content-image {
    width: 900px;
    height: auto;
    margin: auto;
    max-width: 100%;
}
.problem-solution-section .solution-part {
    background: #ffffff;
    padding: 40px 0;
}
.problem-solution-section .solution-title {
    color: #00AAFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px 0;
    text-align: left;
}
.problem-solution-section .solution-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.problem-solution-section .solution-image-wrapper {
    flex: 0 0 350px;
}
.problem-solution-section .solution-staff-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.problem-solution-section .solution-text-wrapper {
    flex: 1;
}
.problem-solution-section .solution-text-paragraph {
    color: #333333;
    font-size: 16px;
    line-height: 2;
    margin: 0 0 24px 0;
}
.problem-solution-section .solution-text-paragraph:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .problem-solution-section .problem-header-text,
    .problem-solution-section .problem-header-text-highlight {
        font-size: 28px;
    }
    .problem-solution-section .solution-title {
        font-size: 36px;
    }
    .problem-solution-section .solution-content {
        gap: 40px;
    }
    .problem-solution-section .solution-image-wrapper {
        flex: 0 0 350px;
    }
}
@media (max-width: 768px) {
    .problem-solution-section .problem-header {
        padding: 40px 20px;
    }
    .problem-solution-section .problem-header-text,
    .problem-solution-section .problem-header-text-highlight {
        font-size: 24px;
    }
    .problem-solution-section .problem-content {
        padding: 0 20px;
    }
    .problem-solution-section .solution-part {
        padding: 30px 20px;
    }
    .problem-solution-section .solution-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .problem-solution-section .solution-content {
        flex-direction: column;
        gap: 40px;
    }
    .problem-solution-section .solution-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    .problem-solution-section .solution-staff-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .problem-solution-section .solution-text-wrapper {
        flex: 1;
    }
    .problem-solution-section .solution-text-paragraph {
        font-size: 15px;
        line-height: 1.8;
    }
}
@media (max-width: 480px) {
    .problem-solution-section .problem-header {
        padding: 30px 15px;
    }
    .problem-solution-section .problem-header-text,
    .problem-solution-section .problem-header-text-highlight {
        font-size: 20px;
    }
    .problem-solution-section .problem-content {
        padding: 0 15px;
    }
    .problem-solution-section .solution-part {
        padding: 30px 15px;
    }
    .problem-solution-section .solution-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .problem-solution-section .solution-content {
        gap: 30px;
    }
    .problem-solution-section .solution-staff-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .problem-solution-section .solution-text-paragraph {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ========================================
   料金・費用セクションスタイル設定
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}
.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-section .pricing-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.pricing-section .pricing-title-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-section .pricing-title-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pricing-section .pricing-title {
    font-size: 40px;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.2;
}
.pricing-section .pricing-title-highlight {
    color: #006AFF;
    font-weight: 900;
}
.pricing-section .pricing-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-section .pricing-items {
    max-width: 600px;
    margin: 0 auto;
}
.pricing-section .pricing-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.pricing-section .pricing-item {
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    width: 100%;
}
.pricing-section .pricing-item-name {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}
.pricing-section .pricing-item-dots {
    flex: 1;
    min-width: 20px;
    height: 1px;
    margin: 0 12px;
    align-self: center;
    background-image: repeating-linear-gradient(to right, #D9D9D9 0, #D9D9D9 2px, transparent 2px, transparent 4px);
    background-size: 4px 1px;
}
.pricing-section .pricing-item-price {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    white-space: nowrap;
}
.pricing-section .pricing-item-price-number {
    font-size: 18px;
    color: #FF006F;
    font-weight: 700;
}
.pricing-section .pricing-item-price-unit {
    font-size: 18px;
    color: #333;
    font-weight: 400;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .pricing-section .pricing-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    .pricing-section .pricing-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .pricing-section .pricing-title-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .pricing-section .pricing-title {
        font-size: 28px;
    }
    .pricing-section .pricing-description {
        font-size: 14px;
        line-height: 1.7;
    }
    .pricing-section .pricing-items {
        padding: 0 20px;
    }
    .pricing-section .pricing-items-grid {
        gap: 0;
    }
}
@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    .pricing-section .pricing-header {
        margin-bottom: 30px;
        padding: 0 5px;
    }
    .pricing-section .pricing-title {
        font-size: 24px;
    }
    .pricing-section .pricing-description {
        font-size: 13px;
    }
    .pricing-section .pricing-items {
        padding: 0 15px;
    }
    .pricing-section .pricing-items-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pricing-section .pricing-item {
        padding: 0;
    }
}


