/* ========================================
   事業内容ページ ヒーローセクション
   ======================================== */
.recruit-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.recruit-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.6), rgba(5, 150, 105, 0.6));
    z-index: 10;
}

.recruit-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1024px;
    padding: 0 1rem;
}

.recruit-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruit-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 12.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .recruit-hero {
        height: 450px;
    }

    .recruit-hero-title {
        font-size: 2.25rem;
    }

    .recruit-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ========================================
   買取カテゴリーグリッド（画像付き）
   ======================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
}

.category-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.category-card:hover .category-overlay {
    opacity: 0.8;
}

.category-content {
    padding: 1.5rem;
}

.category-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.category-description {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-image-wrapper {
        height: 200px;
    }
}

/* ========================================
   キャッチコピーセクション
   ======================================== */
.catch-copy-section {
    margin-top: 3rem;
}

.catch-main {
    position: relative;
    background-image: url('../images/service1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.catch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.85) 0%, rgba(16, 185, 129, 0.75) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.catch-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 4rem 2rem;
    max-width: 640px;
    width: 100%;
}

.catch-area {
    font-size: 1.85rem;
    letter-spacing: 0.2em;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.catch-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.catch-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.catch-lead strong {
    font-size: 1.5rem;
}

.catch-points {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.catch-point {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 1.4375rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.campaign-banner {
    display: inline-block;
    background-color: #fff;
    color: #059669;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .catch-main {
        min-height: 360px;
    }

    .catch-content {
        padding: 2rem 1.25rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .catch-area {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .catch-title {
        font-size: 1.75rem;
    }

    .catch-lead {
        font-size: 0.9375rem;
    }

    .catch-lead strong {
        font-size: 1.125rem;
    }

    .catch-points {
        gap: 0.75rem;
    }

    .catch-point {
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }

    .campaign-banner {
        font-size: 1rem;
    }
}

/* ========================================
   選ばれる理由メインセクション
   ======================================== */
.reasons-main-section {
    text-align: center;
}

.section-heading-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-heading-large::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.reasons-main-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-main-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.reason-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.reason-main-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reason-main-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-main-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.reason-main-desc {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .reasons-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reasons-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reason-main-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ========================================
   壊れていても査定可能バナー
   ======================================== */
.damage-ok-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 3px solid #fbbf24;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
}

.damage-ok-content {
    max-width: 800px;
    margin: 0 auto;
}

.damage-ok-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.damage-ok-title {
    font-size: 2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
}

.damage-ok-text {
    font-size: 1.125rem;
    color: #78350f;
    font-weight: 500;
}

@media (max-width: 768px) {
    .damage-ok-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   ゴミの回収・掃除サービスセクション
   ======================================== */


.cleaning-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cleaning-service-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.cleaning-service-image:hover .service-img {
    transform: scale(1.05);
}


.cleaning-service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cleaning-service-text {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cleaning-service-list {
    list-style: none;
    padding: 0;
}

.cleaning-service-list li {
    color: #1f2937;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cleaning-service-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cleaning-service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cleaning-service-title {
        font-size: 1.625rem;
    }
}

/* ========================================
   高額査定理由セクション
   ======================================== */

.high-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.high-price-card {
    background-color: #f0fdf4;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #d1fae5;
}

.high-price-card:hover {
    background-color: #dcfce7;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
}

.high-price-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.high-price-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.high-price-text {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .high-price-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   不用品現金化までの流れセクション
   ======================================== */

.process-steps-new {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-new {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.process-step-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.process-step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.process-step-icon-new {
    width: 80px;
    height: 80px;
    background-color: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #10b981;
}

.process-step-title-new {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-step-desc-new {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.process-btn-line,
.process-btn-tel {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.process-btn-line {
    background-color: #06c755;
    color: #fff;
}

.process-btn-line:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.process-btn-tel {
    background-color: #3b82f6;
    color: #fff;
}

.process-btn-tel:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.process-note {
    display: inline-block;
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.process-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.process-arrow-new {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .process-steps-new {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow-new {
        transform: rotate(90deg);
    }
}

/* ========================================
   利用者様の声セクション
   ======================================== */
.customer-voice-section {
    text-align: center;
}

/* Before/After付きの声 */
.voice-with-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.voice-with-photo-card {
    background: linear-gradient(135deg, #a7f3d0 0%, #86efac 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.voice-photos-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.voice-photo-item {
    position: relative;
    flex: 1;
}

.voice-photo-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #fff;
    color: #10b981;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.voice-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.voice-photo-arrow {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.voice-bubble-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.voice-user-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voice-bubble {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.voice-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

/* テキストのみの声 */
.voice-text-only-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.voice-text-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.voice-user-icon-small {
    width: 40px;
    height: 40px;
    background-color: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.voice-bubble-small {
    background-color: #fff;
    border: 2px solid #10b981;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    position: relative;
    flex: 1;
}

.voice-bubble-small::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 12px 10px 0;
    border-color: transparent #10b981 transparent transparent;
}

.voice-bubble-small::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 17px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
}

@media (max-width: 768px) {
    .voice-with-photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .voice-photos-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .voice-photo-arrow {
        transform: rotate(90deg);
    }
    
    .voice-photo {
        height: 200px;
    }
}

/* ========================================
   パルスアニメーション（LINE CTAアイコン）
   ======================================== */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}