/* ========================================
   採用ページ専用スタイル
   ======================================== */

/* トグルボタンスタイル */
.toggle-section {
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.toggle-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.toggle-btn:hover {
    background: #f3f4f6;
}

.toggle-btn.active {
    background: #f0fdf4;
    border-bottom-color: #10b981;
}

.toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
    color: #10b981;
}

.toggle-title {
    flex: 1;
    font-weight: 600;
    color: #1f2937;
}

.toggle-icon {
    transition: transform 0.3s ease;
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 1rem;
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.toggle-content.active {
    max-height: 2000px;
    padding: 1.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .toggle-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .toggle-content.active {
        padding: 1rem;
    }
    
    .toggle-title {
        font-size: 0.9375rem;
    }
}

.recruit-page {
    background-color: #f9fafb;
}

/* MVVセクション リデザイン */
.mvv-section,
.parallax-page .mvv-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #fff 100%) !important;
}

.mvv-section .mvv-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mvv-section .mvv-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #047857;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.mvv-section .mvv-section-subtitle {
    font-size: 1.125rem;
    color: #059669;
    font-weight: 600;
}

.mvv-section .mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-section .mvv-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mvv-section .mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.mvv-section .mvv-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #047857 100%);
}

.mvv-section .mvv-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mvv-section .mvv-card-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #047857;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.mvv-section .mvv-card-text .mvv-value-line {
    display: inline;
}

.mvv-section .mvv-card-text .mvv-value-desc {
    font-weight: 400;
}

.mvv-section .mvv-card-text {
    font-size: 1.125rem;
    line-height: 2;
    color: #111827;
    font-weight: 600;
    min-height: 7.5em;
    letter-spacing: 0.03em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mvv-value-desc {
    font-size: 1rem;
}

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

    .mvv-section .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .mvv-value-desc {
        font-size: 0.8rem;
    }
}

/* 採用問い合わせタイトル - スマホ時のみ改行 */
#recruit-contact .line-cta-title .line-cta-br {
    display: none;
}

@media (max-width: 768px) {
    #recruit-contact .line-cta-title .line-cta-br {
        display: block;
    }
}

/* 採用問い合わせCTA */
#recruit-contact .recruit-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#recruit-contact a.line-cta-btn[href^="mailto:"] {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

#recruit-contact a.line-cta-btn[href^="mailto:"]:hover {
    background-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
    border-color: #fff !important;
}

@media (max-width: 768px) {
    #recruit-contact {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    #recruit-contact .container-medium {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #recruit-contact .recruit-contact-buttons {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    #recruit-contact .recruit-contact-buttons a {
        display: block;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* ヒーローセクション改善 */
.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 .recruit-hero-br {
    display: none;
}

.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;
    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-title .recruit-hero-br {
        display: block;
    }
    
    .recruit-hero-subtitle {
        font-size: 1.125rem;
    }
}

/* 募集要項セクションの視覚的改善 */
.section-green-light .recruitment-card {
    background-color: #fff !important;
    border-radius: 1.5rem !important;
    padding: 3rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    opacity: 1 !important; /* fade-inクラスによる非表示を防ぐ */
    transform: none !important; /* fade-inクラスによるtransformをリセット */
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.section-green-light .recruitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.section-green-light .recruitment-card .recruitment-section-title {
    font-size: 2rem !important;
    color: #10b981 !important;
    margin-bottom: 2.5rem !important;
    font-weight: 700 !important;
    padding-bottom: 1rem !important;
    border-bottom: 3px solid #10b981 !important;
    position: relative !important;
}

.section-green-light .recruitment-card .recruitment-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.section-green-light .recruitment-card .recruitment-item {
    margin-bottom: 2.5rem !important;
    padding: 1.5rem !important;
    background-color: #f9fafb !important;
    border-radius: 1rem !important;
    border-left: 4px solid #10b981 !important;
    transition: all 0.3s;
    width: 100% !important;
    box-sizing: border-box !important;
}

.section-green-light .recruitment-card .recruitment-item:hover {
    background-color: #f0fdf4 !important;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.section-green-light .recruitment-card .recruitment-label {
    font-size: 1.25rem !important;
    color: #1f2937 !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.section-green-light .recruitment-card .recruitment-label::before {
    content: '📋';
    font-size: 1.5rem;
}

.section-green-light .recruitment-card .recruitment-value {
    color: #4b5563 !important;
    line-height: 1.9 !important;
    margin-bottom: 0.75rem !important;
    font-size: 1rem !important;
}

.section-green-light .recruitment-card .recruitment-list {
    color: #4b5563 !important;
    line-height: 2 !important;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
}

.section-green-light .recruitment-card .recruitment-list li {
    list-style: disc !important;
    margin-bottom: 0.75rem !important;
    position: relative !important;
    padding-left: 0.5rem !important;
}

.section-green-light .recruitment-card .recruitment-list li::marker {
    color: #10b981;
}

.section-green-light .recruitment-card .recruitment-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border-left: 4px solid #10b981 !important;
    padding: 1.75rem !important;
    margin: 1.5rem 0 !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1) !important;
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
    .section-green-light .recruitment-card {
        padding: 1.25rem !important;
        border-radius: 1rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-section-title {
        font-size: 1.375rem !important;
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-item {
        margin-bottom: 1.25rem !important;
        padding: 1rem !important;
        border-radius: 0.75rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-label {
        font-size: 1.0625rem !important;
        margin-bottom: 0.625rem !important;
        flex-wrap: wrap;
    }
    
    .section-green-light .recruitment-card .recruitment-label::before {
        font-size: 1.125rem;
    }
    
    .section-green-light .recruitment-card .recruitment-value {
        font-size: 0.9375rem !important;
        line-height: 1.75 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-highlight {
        padding: 1rem !important;
        margin: 0.875rem 0 !important;
        border-radius: 0.5rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-list {
        padding-left: 1.25rem !important;
        margin-top: 0.625rem !important;
    }
    
    .section-green-light .recruitment-card .recruitment-list li {
        margin-bottom: 0.5rem !important;
        font-size: 0.9375rem !important;
        padding-left: 0.25rem !important;
    }
}

/* 採用フォームへのスクロールボタン */
.recruitment-form-cta {
    margin-top: 3rem;
    text-align: center;
}

.recruitment-form-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.recruitment-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.recruitment-form-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.recruitment-form-btn svg {
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s;
}

.recruitment-form-btn:hover svg {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .recruitment-form-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }
}

/* 仕事の魅力をまとめたカードセクション */
.job-attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.job-attraction-card {
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 2px solid #d1fae5;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0; /* グリッドアイテムのオーバーフローを防ぐ */
    box-sizing: border-box;
}

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

.job-attraction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.job-attraction-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.job-attraction-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.9375rem;
    text-align: left;
    flex: 1;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .job-attraction-grid {
        gap: 1.25rem;
    }
    
    .job-attraction-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .job-attraction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .job-attraction-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .job-attraction-card {
        padding: 1.25rem;
    }
    
    .job-attraction-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .job-attraction-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .job-attraction-text {
        font-size: 0.9375rem;
        line-height: 1.75;
    }
}

/* チーム組織構成の説明カード */
.team-description-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #d1fae5;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.team-description-text {
    color: #1f2937;
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* 仕事内容セクションの視覚的改善 */
.job-content-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.job-feature-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    min-width: 0; /* グリッドアイテムのオーバーフローを防ぐ */
    box-sizing: border-box;
}

.job-feature-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.job-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.job-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.job-feature-desc {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .job-content-text {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-content-text {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* 給与体系の視覚的改善 */
.salary-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.salary-card {
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #d1fae5;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.salary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

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

.salary-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.salary-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.salary-note {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.salary-model-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
    border: 2px solid #fbbf24;
}

.salary-model-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.salary-model-list {
    display: grid;
    gap: 1rem;
}

.salary-model-item {
    background-color: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.salary-model-age {
    font-size: 1rem;
    color: #6b7280;
}

.salary-model-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

@media (max-width: 768px) {
    .salary-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .salary-card {
        padding: 1.5rem;
    }
    
    .salary-type {
        font-size: 1.125rem;
    }
    
    .salary-amount {
        font-size: 1.75rem;
    }
    
    .salary-note {
        font-size: 0.8125rem;
    }
    
    .salary-model-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .salary-model-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .salary-model-item {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .salary-model-age {
        font-size: 0.9375rem;
    }
    
    .salary-model-amount {
        font-size: 1.25rem;
    }
}

/* 福利厚生の視覚的改善 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-text {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

/* 応募資格セクションの改善 */
.qualification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.qualification-card:hover {
    border-color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.qualification-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qualification-title::before {
    content: '✓';
    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: 1.125rem;
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.qualification-list li::before {
    content: '◎';
    color: #10b981;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .qualification-card {
        padding: 1.5rem;
    }
    
    .qualification-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .qualification-title::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .qualification-list li {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
}

/* 勤務条件セクションの改善（テーブル形式） */
.work-condition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.work-condition-table th {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.5rem;
    text-align: left;
    width: 180px;
    vertical-align: top;
    border-bottom: 2px solid #d1fae5;
}

.work-condition-table td {
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
    border-bottom: 2px solid #f0fdf4;
    vertical-align: top;
}

.work-condition-table tr:last-child th,
.work-condition-table tr:last-child td {
    border-bottom: none;
}

.work-condition-table tr:hover td {
    background-color: #f0fdf4;
}

@media (max-width: 768px) {
    .work-condition-table {
        display: block;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 0.75rem;
    }
    
    .work-condition-table thead {
        display: none;
    }
    
    .work-condition-table tbody,
    .work-condition-table tr,
    .work-condition-table td {
        display: block;
        width: 100%;
    }
    
    /* thを完全に非表示 */
    .work-condition-table th {
        display: none !important;
    }
    
    .work-condition-table tr {
        margin-bottom: 0.875rem;
        border: 2px solid #d1fae5;
        border-radius: 0.75rem;
        overflow: hidden;
        background-color: #fff;
    }
    
    .work-condition-table tr:last-child {
        margin-bottom: 0;
    }
    
    .work-condition-table td {
        padding: 0.875rem 1rem;
        border-bottom: none;
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .work-condition-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        color: #10b981;
        margin-bottom: 0.5rem;
        font-size: 0.9375rem;
        padding-bottom: 0.375rem;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* スケジュール例の視覚的改善 */
.schedule-example {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 2px solid #e5e7eb;
    position: relative;
}

.schedule-example::before {
    content: '📅';
    position: absolute;
    top: -20px;
    left: 2rem;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .schedule-example {
        padding: 0;
        margin-top: 1rem;
        border-radius: 0;
        border: none;
        background-color: transparent;
    }
    
    .schedule-example::before {
        display: none;
    }
    
    /* recruitment-item内のschedule-exampleは背景色を削除 */
    .recruitment-item .schedule-example {
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-top: 1rem !important;
    }
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.schedule-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.schedule-list li:hover {
    background-color: #f0fdf4;
    transform: translateX(4px);
}

.schedule-time {
    font-weight: 700;
    color: #10b981;
    min-width: 80px;
}

.schedule-content {
    color: #4b5563;
    flex: 1;
}

@media (max-width: 768px) {
    .schedule-list li {
        padding: 0.875rem;
        margin-bottom: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .schedule-time {
        min-width: auto;
        font-size: 0.9375rem;
    }
    
    .schedule-content {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* チーム組織構成の視覚的改善 */
.team-structure {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 2px solid #d1fae5;
    position: relative;
}

.team-structure::before {
    content: '👥';
    position: absolute;
    top: -20px;
    left: 2rem;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-feature {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.team-feature:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.team-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.team-feature-text {
    font-size: 0.9375rem;
    color: #4b5563;
    font-weight: 500;
}

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

/* ========================================
   リユース事業の市場性セクション
   ======================================== */

/* 市場成長セクション */
.market-growth-section {
    margin-top: 4rem;
}

.market-growth-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.market-growth-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.market-growth-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.market-growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.market-growth-stat-item {
    text-align: center;
}

.market-growth-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.market-growth-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.market-growth-stat-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.market-growth-text-card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.market-growth-text-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.market-growth-text-content {
    color: #4b5563;
    line-height: 2;
    font-size: 1.0625rem;
}

/* 3つの追い風セクション */
.tailwind-section {
    margin-top: 4rem;
}

.tailwind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tailwind-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid;
}

.tailwind-card-red {
    border-left-color: #ef4444;
}

.tailwind-card-blue {
    border-left-color: #3b82f6;
}

.tailwind-card-orange {
    border-left-color: #f59e0b;
}

.tailwind-card-number {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.tailwind-card-text {
    color: #6b7280;
    line-height: 1.8;
}

/* 隠れ資産セクション */
.hidden-assets-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1.5rem;
    padding: 3rem;
}

.hidden-assets-title {
    font-size: 2rem;
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.hidden-assets-amount-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.hidden-assets-amount-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.hidden-assets-amount-medium {
    font-size: 2.5rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.hidden-assets-label {
    font-size: 1.125rem;
    color: #92400e;
}

.hidden-assets-note {
    font-size: 0.875rem;
    color: #92400e;
    margin-top: 0.5rem;
}

.hidden-assets-text {
    color: #78350f;
    text-align: center;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.hidden-assets-source {
    font-size: 0.875rem;
    color: #92400e;
    text-align: center;
    margin-top: 2rem;
}

/* 事業の永続性セクション */
.permanence-section {
    margin-top: 4rem;
}

.permanence-card {
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.permanence-title {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.permanence-subtitle {
    font-size: 1.5rem;
    color: #10b981;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.permanence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.permanence-item-title {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.permanence-item-text {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .market-growth-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tailwind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .permanence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .market-growth-card {
        padding: 2rem 1.5rem;
    }
    
    .market-growth-title {
        font-size: 1.75rem;
    }
    
    .market-growth-subtitle {
        font-size: 1.125rem;
    }
    
    .market-growth-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-growth-stat-number {
        font-size: 2.5rem;
    }
    
    .market-growth-text-card {
        padding: 1.5rem;
    }
    
    .market-growth-text-title {
        font-size: 1.25rem;
    }
    
    .tailwind-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tailwind-card {
        padding: 1.5rem;
    }
    
    .hidden-assets-section {
        padding: 2rem 1.5rem;
    }
    
    .hidden-assets-title {
        font-size: 1.75rem;
    }
    
    .hidden-assets-amount-large {
        font-size: 2.5rem;
    }
    
    .hidden-assets-amount-medium {
        font-size: 2rem;
    }
    
    .permanence-card {
        padding: 2rem 1.5rem;
    }
    
    .permanence-title {
        font-size: 1.75rem;
    }
    
    .permanence-subtitle {
        font-size: 1.25rem;
    }
    
    .permanence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}