/**
 * リモートワークページ スタイル
 */

/* ==========================================================================
   共通スタイル
   ========================================================================== */

/* セクションタイトル */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* お悩みセクション */
.remote-intro {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.remote-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.remote-intro .intro-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    color: #1e293b;
}

.trouble-list {
    margin-bottom: 50px;
}

.trouble-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trouble-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.trouble-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
}

.solution-message {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.solution-message p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.solution-message p:last-child {
    margin-bottom: 0;
}

.solution-message strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ご相談の流れ */
.consultation-flow {
    padding: 100px 0;
    background-color: white;
}

.flow-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.flow-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% - 70px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}

.flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: #f0f9ff;
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.flow-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.flow-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.flow-item strong {
    color: var(--color-primary);
    font-weight: 700;
}

.flow-arrow {
    font-size: 30px;
    color: #cbd5e1;
    flex-shrink: 0;
}

.flow-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flow-note p {
    margin: 0;
    font-size: 16px;
    color: #0c4a6e;
}

/* 特徴セクション */
.remote-features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* section-titleは共通スタイルを使用 */

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    color: white;
}

.feature-card .feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* 導入事例 */
.remote-cases {
    padding: 100px 0;
    background-color: white;
}

/* section-titleは共通スタイルを使用 */

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

.case-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.case-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.case-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.cases-note {
    margin-top: 40px;
    text-align: center;
}

.cases-note p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ */
.remote-faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* section-titleは共通スタイルを使用 */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* CTA */
.remote-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary), #0284c7);
    color: white;
    text-align: center;
}

.remote-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.remote-cta .cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.remote-cta .cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.benefits-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.benefits-icon {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefits-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.remote-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.remote-cta .btn-primary {
    background-color: white;
    color: var(--color-primary);
}

.remote-cta .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.remote-cta .btn-outline {
    border-color: white;
    color: white;
}

.remote-cta .btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* お悩みセクション */
    .remote-intro {
        padding: 60px 0;
    }
    
    .remote-intro .intro-content {
        padding: 0 20px;
    }
    
    .remote-intro .intro-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    .trouble-item {
        padding: 16px 20px;
        margin-bottom: 16px;
    }
    
    .trouble-item svg {
        width: 20px;
        height: 20px;
    }
    
    .trouble-item p {
        font-size: 15px;
    }
    
    .solution-message {
        padding: 24px 20px;
    }
    
    .solution-message p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    /* ご相談の流れ */
    .consultation-flow {
        padding: 60px 0;
    }
    
    .flow-list {
        flex-direction: column;
        gap: 40px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: -20px 0;
    }
    
    .flow-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .flow-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    
    .flow-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .flow-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .flow-item p {
        font-size: 13px;
    }
    
    .flow-note {
        margin-top: 30px;
        padding: 16px 20px;
    }
    
    .flow-note p {
        font-size: 14px;
    }
    
    /* 特徴セクション */
    .remote-features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 40px;
        height: 3px;
        bottom: -15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* 導入事例 */
    .remote-cases {
        padding: 60px 0;
    }
    
    /* section-titleは共通スタイルを使用 */
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .case-item {
        padding: 24px 20px;
    }
    
    .case-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .case-item p {
        font-size: 14px;
    }
    
    /* FAQ */
    .remote-faq {
        padding: 60px 0;
    }
    
    /* section-titleは共通スタイルを使用 */
    
    .faq-list {
        padding: 0 20px;
    }
    
    .faq-item {
        padding: 24px 20px;
        margin-bottom: 16px;
    }
    
    .faq-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    /* CTA */
    .remote-cta {
        padding: 80px 0;
    }
    
    .remote-cta .cta-content {
        padding: 0 20px;
    }
    
    .remote-cta .cta-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .remote-cta .cta-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }
    
    .cta-benefits {
        padding: 20px;
        margin: 24px 0;
    }
    
    .benefits-header {
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .benefits-icon {
        width: 20px;
        height: 20px;
    }
    
    .benefits-title {
        font-size: 18px;
        margin: 0;
    }
    
    .benefits-list li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .benefits-list li::before {
        font-size: 16px;
    }
    
    .remote-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .remote-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
        padding: 14px 24px;
    }
}

/* より小さい画面用の追加調整 */
@media (max-width: 375px) {
    .remote-intro .intro-title {
        font-size: 22px;
    }
    
    .trouble-item p {
        font-size: 14px;
    }
    
    .solution-message p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .remote-cta .cta-title {
        font-size: 22px;
    }
}