/* MEO */
   /* BEM形式でのCSS設定 */
   .meo-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.meo-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダーセクション */
.meo-service__header {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e6f2ff;
}

.meo-service__header-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.meo-service__header-icon {
    color: #0066cc;
    margin-right: 8px;
}

.meo-service__header-description {
    margin-bottom: 12px;
    line-height: 1.7;
}

.meo-service__divider {
    height: 8px;
    width: 100%;
    background-color: #0066cc;
    border-radius: 4px;
    margin-top: 16px;
}

/* セクション共通 */
.meo-service__section {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.07);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid #dddddd;
}

.meo-service__section-header {
    padding: 24px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0066cc;
}

.meo-service__section-title {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.meo-service__section-icon {
    color: #ffffff;
    margin-right: 12px;
    font-size: 24px;
}

.meo-service__section-content {
    padding: 24px;
    background-color: #ffffff;
}

/* 問題・解決セクション */
.meo-service__problems-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333333;
}

.meo-service__problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.meo-service__problem-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #ff6600;
}

.meo-service__problem-content {
    display: flex;
    align-items: flex-start;
}

.meo-service__problem-icon {
    color: #ff6600;
    margin-top: 4px;
    margin-right: 8px;
}

.meo-service__solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.meo-service__solution-card {
    background-color: #e6f2ff;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #0066cc;
}

.meo-service__solution-content {
    display: flex;
    align-items: flex-start;
}

.meo-service__solution-icon {
    color: #0066cc;
    margin-top: 4px;
    margin-right: 8px;
}

/* 強みセクション */
.meo-service__advantage-card {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.07);
    border: 1px solid #dddddd;
}

.meo-service__advantage-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.meo-service__advantage-number {
    font-size: 18px;
    font-weight: bold;
    margin-right: 16px;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 4px 0;
}

.meo-service__advantage-body {
    padding: 20px;
    background-color: #ffffff;
}

.meo-service__advantage-list {
    list-style: disc;
    margin-left: 24px;
}

.meo-service__advantage-list li {
    margin-bottom: 8px;
}

/* 料金プラン */
.meo-service__plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.meo-service__plan-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.07);
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
}

.meo-service__plan-header {
    padding: 20px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.meo-service__plan-header--light {
    background-color: #0066cc;
}

.meo-service__plan-header--standard {
    background-color: #004d99;
}

.meo-service__plan-header--premium {
    background-color: #003366;
}

.meo-service__plan-title {
    font-size: 20px;
}

.meo-service__plan-body {
    padding: 24px;
    background-color: #ffffff;
    flex-grow: 1;
}

.meo-service__plan-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    text-align: center;
}

.meo-service__plan-price-unit {
    font-size: 14px;
    color: #666666;
}

.meo-service__plan-features {
    margin-bottom: 24px;
}

.meo-service__plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.meo-service__plan-feature-icon {
    color: #0066cc;
    margin-right: 8px;
    margin-top: 4px;
}

.meo-service__plan-note {
    font-size: 12px;
    color: #666666;
    font-style: italic;
}

.meo-service__plan-info {
    margin-top: 32px;
    background-color: #e6f2ff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #0066cc;
}

.meo-service__plan-info-title {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 8px;
}

.meo-service__plan-info-list {
    list-style: disc;
    margin-left: 20px;
    color: #0066cc;
}

.meo-service__plan-info-list li {
    margin-bottom: 4px;
}

/* フローセクション */
.meo-service__step-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.05);
    padding: 20px;
    margin-bottom: 16px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.meo-service__step-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.meo-service__step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    margin-right: 12px;
    background-color: #0066cc;
}

.meo-service__step-title {
    font-weight: bold;
    font-size: 18px;
}

.meo-service__step-description {
    margin-top: 8px;
    margin-bottom: 8px;
}

.meo-service__step-list {
    margin-left: 24px;
    margin-top: 8px;
}

.meo-service__step-list li {
    margin-bottom: 4px;
}

/* FAQ */
.meo-service__faq-item {
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.07);
    border: 1px solid #dddddd;
    background-color: #ffffff;
    overflow: hidden;
}

.meo-service__faq-question {
    background-color: #f0f0f0;
    font-weight: bold;
    padding: 16px;
    display: flex;
    align-items: center;
    border-left: 4px solid #0066cc;
}

.meo-service__faq-question-icon {
    color: #0066cc;
    margin-right: 12px;
    font-size: 20px;
}

.meo-service__faq-answer {
    padding: 16px;
    border-top: 1px solid #dddddd;
}

/* まとめセクション */
.meo-service__summary {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 48px;
    border: 1px solid #e6f2ff;
}

.meo-service__summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.meo-service__summary-icon {
    color: #0066cc;
    margin-right: 8px;
}

.meo-service__summary-description {
    margin-bottom: 12px;
    line-height: 1.7;
}

.meo-service__highlight {
    font-weight: bold;
    color: #0066cc;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .meo-service__container {
        padding: 16px;
    }

    .meo-service__header {
        padding: 20px;
    }

    .meo-service__header-title {
        font-size: 18px;
    }

    .meo-service__section-header {
        padding: 20px;
    }

    .meo-service__section-title {
        font-size: 18px;
    }

    .meo-service__section-content {
        padding: 20px;
    }

    .meo-service__problems-grid,
    .meo-service__solution-grid {
        grid-template-columns: 1fr;
    }

    .meo-service__plans-grid {
        grid-template-columns: 1fr;
    }

    .meo-service__plan-price {
        font-size: 24px;
    }

    .meo-service__step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .meo-service__step-number {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .meo-service__container {
        padding: 12px;
    }

    .meo-service__header {
        padding: 16px;
    }

    .meo-service__section-header {
        padding: 16px;
    }

    .meo-service__section-content {
        padding: 16px;
    }

    .meo-service__plan-body {
        padding: 20px;
    }
}

/* 印刷用 */
@media print {
    .meo-service__section {
        break-inside: avoid;
    }
}
















/* 広告事業 */
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>医療機関向けInstagram広告運用代行サービス</title>
    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
            line-height: 1.6;
            color: #333333;
            background-color: #ffffff;
        }

        /* Container */
        .fmi-ads-2024__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Wrapper */
        .fmi-ads-2024 {
            padding: 40px 0;
        }

        /* About Section */
        .fmi-ads-2024__about {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
            background-color: #e6f2ff;
            border-radius: 12px;
            border: 2px solid #0066cc;
        }

        .fmi-ads-2024__section-title {
            font-size: 2.2rem;
            color: #0066cc;
            margin-bottom: 20px;
            font-weight: bold;
            letter-spacing: 0.02em;
        }

        .fmi-ads-2024__about-text {
            font-size: 1.1rem;
            color: #333333;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .fmi-ads-2024__accent-bar {
            width: 80px;
            height: 4px;
            background-color: #0066cc;
            margin: 30px auto 0;
            border-radius: 2px;
        }

        /* Card Base Styles */
        .fmi-ads-2024__card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
            margin-bottom: 40px;
            border: 1px solid #dddddd;
            overflow: hidden;
        }

        .fmi-ads-2024__card-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 20px 30px;
            display: flex;
            align-items: center;
        }

        .fmi-ads-2024__card-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #ffffff;
        }

        .fmi-ads-2024__card-header h3 {
            font-size: 1.4rem;
            font-weight: bold;
            letter-spacing: 0.02em;
        }

        .fmi-ads-2024__card-content {
            padding: 30px;
        }

        /* Problems Grid */
        .fmi-ads-2024__problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .fmi-ads-2024__problem-item,
        .fmi-ads-2024__solution-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
        }

        .fmi-ads-2024__problem-item {
            background-color: #f5f5f5;
            border-left: 4px solid #ff6600;
        }

        .fmi-ads-2024__solution-item {
            background-color: #e6f2ff;
            border-left: 4px solid #0066cc;
        }

        .fmi-ads-2024__problem-icon {
            font-size: 1.2rem;
            color: #ff6600;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .fmi-ads-2024__solution-icon {
            font-size: 1.2rem;
            color: #0066cc;
            margin-right: 12px;
            flex-shrink: 0;
        }

        /* Solution Banner */
        .fmi-ads-2024__solution-banner {
            background-color: #0066cc;
            color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin: 30px 0;
        }

        .fmi-ads-2024__solution-text {
            font-size: 1.3rem;
            font-weight: bold;
            letter-spacing: 0.02em;
        }

        /* Advantage Section */
        .fmi-ads-2024__advantage-item {
            background-color: #ffffff;
            border: 2px solid #dddddd;
            border-radius: 12px;
            margin-bottom: 25px;
            overflow: hidden;
        }

        .fmi-ads-2024__advantage-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 20px 25px;
            display: flex;
            align-items: center;
        }

        .fmi-ads-2024__advantage-number {
            font-size: 2rem;
            font-weight: bold;
            margin-right: 20px;
            width: 50px;
            text-align: center;
            background-color: #ffffff;
            color: #0066cc;
            border-radius: 50%;
            line-height: 50px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fmi-ads-2024__advantage-title {
            font-size: 1.2rem;
            font-weight: bold;
            letter-spacing: 0.02em;
        }

        .fmi-ads-2024__advantage-description {
            padding: 25px;
            font-size: 1rem;
            line-height: 1.7;
            color: #333333;
        }

        /* Plans Section */
        .fmi-ads-2024__plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .fmi-ads-2024__plan-card {
            background-color: #ffffff;
            border: 2px solid #dddddd;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fmi-ads-2024__plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
        }

        .fmi-ads-2024__plan-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 20px;
            text-align: center;
        }

        .fmi-ads-2024__plan-header--premium {
            background-color: #ff6600;
        }

        .fmi-ads-2024__plan-title {
            font-size: 1.3rem;
            font-weight: bold;
            letter-spacing: 0.02em;
        }

        .fmi-ads-2024__plan-body {
            padding: 30px 25px;
        }

        .fmi-ads-2024__plan-price {
            font-size: 2rem;
            font-weight: bold;
            color: #0066cc;
            text-align: center;
            margin-bottom: 20px;
        }

        .fmi-ads-2024__plan-price-unit {
            font-size: 1rem;
            font-weight: normal;
            color: #666666;
        }

        .fmi-ads-2024__plan-features {
            list-style: none;
        }

        .fmi-ads-2024__plan-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .fmi-ads-2024__plan-feature-icon {
            color: #0066cc;
            margin-right: 10px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Plan Note */
        .fmi-ads-2024__plan-note {
            background-color: #f5f5f5;
            border-radius: 8px;
            padding: 25px;
            border-left: 5px solid #0066cc;
        }

        .fmi-ads-2024__plan-note-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 15px;
        }

        .fmi-ads-2024__plan-note-list {
            list-style: none;
        }

        .fmi-ads-2024__plan-note-item {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            color: #333333;
        }

        .fmi-ads-2024__plan-note-item::before {
            content: '・';
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

        /* Flow Section */
        .fmi-ads-2024__flow-step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
            align-items: flex-start;
        }

        .fmi-ads-2024__flow-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 25px;
            top: 60px;
            width: 2px;
            height: calc(100% - 30px);
            background-color: #dddddd;
        }

        .fmi-ads-2024__flow-number {
            width: 50px;
            height: 50px;
            background-color: #0066cc;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .fmi-ads-2024__flow-content {
            flex: 1;
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #0066cc;
        }

        .fmi-ads-2024__flow-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 10px;
        }

        .fmi-ads-2024__flow-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #333333;
        }

        /* FAQ Section */
        .fmi-ads-2024__faq-item {
            border: 1px solid #dddddd;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .fmi-ads-2024__faq-question {
            background-color: #f0f0f0;
            padding: 20px;
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1rem;
            color: #333333;
            border-left: 5px solid #0066cc;
        }

        .fmi-ads-2024__faq-icon {
            color: #0066cc;
            margin-right: 12px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fmi-ads-2024__faq-answer {
            background-color: #ffffff;
            padding: 20px;
            font-size: 1rem;
            line-height: 1.6;
            color: #333333;
            border-top: 1px solid #dddddd;
        }

        /* Summary Section */
        .fmi-ads-2024__summary {
            background-color: #e6f2ff;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid #0066cc;
        }

        .fmi-ads-2024__summary-title {
            font-size: 1.8rem;
            color: #0066cc;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }

        .fmi-ads-2024__summary-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333333;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .fmi-ads-2024__container {
                padding: 0 15px;
            }

            .fmi-ads-2024__section-title {
                font-size: 1.8rem;
            }

            .fmi-ads-2024__problems-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .fmi-ads-2024__plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .fmi-ads-2024__card-content {
                padding: 20px;
            }

            .fmi-ads-2024__card-header {
                padding: 15px 20px;
            }

            .fmi-ads-2024__card-header h3 {
                font-size: 1.2rem;
            }

            .fmi-ads-2024__flow-step {
                flex-direction: column;
                text-align: center;
            }

            .fmi-ads-2024__flow-number {
                margin: 0 auto 15px;
            }

            .fmi-ads-2024__flow-step:not(:last-child)::after {
                display: none;
            }

            .fmi-ads-2024__advantage-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .fmi-ads-2024__advantage-number {
                margin-right: 0;
            }

            .fmi-ads-2024__summary-title {
                font-size: 1.5rem;
            }

            .fmi-ads-2024__plan-price {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .fmi-ads-2024__section-title {
                font-size: 1.5rem;
            }

            .fmi-ads-2024__about {
                padding: 25px 15px;
            }

            .fmi-ads-2024__summary {
                padding: 25px 20px;
            }

            .fmi-ads-2024__plan-body {
                padding: 20px 15px;
            }

            .fmi-ads-2024__flow-content {
                padding: 15px;
            }
        }


























 
 
 
 
 
 
 /* DXコンサルティング事業 */
 .visiting-medical {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* サービス紹介セクション */
.visiting-medical__intro {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #dddddd;
}

.visiting-medical__intro-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0066cc;
    border-left: 4px solid #0066cc;
    padding-left: 15px;
}

.visiting-medical__intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
}

.visiting-medical__intro-accent {
    height: 4px;
    background-color: #0066cc;
    border-radius: 2px;
    margin-top: 20px;
}

/* セクション共通スタイル */
.visiting-medical__section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #dddddd;
}

.visiting-medical__section-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.visiting-medical__section-icon {
    font-size: 24px;
    margin-right: 15px;
}

.visiting-medical__section-title {
    font-size: 20px;
    font-weight: bold;
}

.visiting-medical__section-content {
    padding: 30px;
    background-color: #ffffff;
}

/* 課題解決セクション */
.visiting-medical__problems-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
}

.visiting-medical__problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.visiting-medical__problem-card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #ff6600;
}

.visiting-medical__problem-icon {
    color: #ff6600;
    margin-top: 2px;
    margin-right: 12px;
    font-size: 16px;
}

.visiting-medical__problem-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.visiting-medical__solutions-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333333;
}

.visiting-medical__solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.visiting-medical__solution-card {
    background-color: #e6f2ff;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #0066cc;
}

.visiting-medical__solution-icon {
    color: #0066cc;
    margin-top: 2px;
    margin-right: 12px;
    font-size: 16px;
}

.visiting-medical__solution-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

/* メリットセクション */
.visiting-medical__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.visiting-medical__advantage-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
}

.visiting-medical__advantage-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.visiting-medical__advantage-number {
    font-size: 32px;
    font-weight: bold;
    margin-right: 15px;
    color: #ffffff;
    min-width: 50px;
}

.visiting-medical__advantage-body {
    padding: 25px;
    flex: 1;
}

.visiting-medical__advantage-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066cc;
}

.visiting-medical__advantage-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* 料金プランセクション */
.visiting-medical__plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.visiting-medical__plan-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.visiting-medical__plan-card:hover {
    transform: translateY(-3px);
}

.visiting-medical__plan-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.visiting-medical__plan-title {
    font-size: 18px;
}

.visiting-medical__plan-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.visiting-medical__plan-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0066cc;
    text-align: center;
}

.visiting-medical__plan-price-unit {
    font-size: 14px;
    color: #666666;
}

.visiting-medical__plan-subtitle {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #0066cc;
    font-weight: 500;
    text-align: center;
}

.visiting-medical__plan-features {
    margin-bottom: 20px;
    flex: 1;
}

.visiting-medical__plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.visiting-medical__plan-feature-icon {
    color: #0066cc;
    margin-right: 8px;
    margin-top: 2px;
    font-size: 14px;
}

.visiting-medical__plan-feature-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.visiting-medical__plan-details {
    font-size: 13px;
    color: #666666;
    margin-top: 15px;
    line-height: 1.5;
}

.visiting-medical__plan-details-label {
    font-weight: bold;
}

.visiting-medical__plan-tips {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #dddddd;
    margin-top: 30px;
}

.visiting-medical__plan-tips-title {
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.visiting-medical__plan-tips-list {
    list-style: disc;
    margin-left: 20px;
}

.visiting-medical__plan-tips-item {
    color: #333333;
    margin-bottom: 5px;
    font-size: 14px;
}

/* 導入フローセクション */
.visiting-medical__flow-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.visiting-medical__flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background-color: #0066cc;
}

.visiting-medical__flow-circle {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.visiting-medical__flow-content {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #dddddd;
    flex: 1;
}

.visiting-medical__flow-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0066cc;
}

.visiting-medical__flow-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* FAQセクション */
.visiting-medical__faq-item {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #dddddd;
    margin-bottom: 20px;
    overflow: hidden;
}

.visiting-medical__faq-question {
    background-color: #f5f5f5;
    padding: 20px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #0066cc;
}

.visiting-medical__faq-question-icon {
    color: #0066cc;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 18px;
}

.visiting-medical__faq-question-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
}

.visiting-medical__faq-answer {
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
}

.visiting-medical__faq-answer-strong {
    font-weight: bold;
    color: #0066cc;
    display: block;
    margin-bottom: 8px;
}

.visiting-medical__faq-answer-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

.visiting-medical__faq-answer-list {
    list-style: disc;
    margin-left: 25px;
    margin-top: 10px;
}

.visiting-medical__faq-answer-list-item {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333333;
}

.visiting-medical__faq-answer-note {
    color: #666666;
    display: block;
    margin-top: 10px;
    font-size: 13px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .visiting-medical {
        padding: 15px;
    }

    .visiting-medical__intro {
        padding: 20px;
    }

    .visiting-medical__intro-title {
        font-size: 20px;
    }

    .visiting-medical__section-content {
        padding: 20px;
    }

    .visiting-medical__section-header {
        padding: 15px;
    }

    .visiting-medical__section-title {
        font-size: 18px;
    }

    .visiting-medical__problems-grid,
    .visiting-medical__solutions-grid {
        grid-template-columns: 1fr;
    }

    .visiting-medical__advantages-grid {
        grid-template-columns: 1fr;
    }

    .visiting-medical__plans-grid {
        grid-template-columns: 1fr;
    }

    .visiting-medical__flow-step {
        flex-direction: column;
        text-align: center;
    }

    .visiting-medical__flow-circle {
        margin: 0 auto 15px;
    }

    .visiting-medical__flow-step:not(:last-child)::after {
        display: none;
    }

    .visiting-medical__advantage-header {
        flex-direction: column;
        text-align: center;
    }

    .visiting-medical__advantage-number {
        margin: 0 0 10px 0;
    }
}









/* インスタグラム事業 */
 /* BEM命名規則に基づくコンテナ */
 .instagram-service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダーセクション */
.instagram-service__header {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.instagram-service__header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.instagram-service__header-text {
    color: #333333;
    line-height: 1.8;
}

.instagram-service__accent-bar {
    height: 4px;
    background-color: #0066cc;
    border-radius: 2px;
    margin-top: 1rem;
}

/* フェーズカード */
.instagram-service__phase-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #dddddd;
    overflow: hidden;
}

.instagram-service__phase-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 1.5rem;
    font-weight: 700;
}

.instagram-service__phase-header-content {
    display: flex;
    align-items: center;
}

.instagram-service__phase-icon {
    color: #ffffff;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.instagram-service__phase-title {
    font-size: 1.25rem;
}

.instagram-service__phase-body {
    padding: 2rem;
    background-color: #ffffff;
}

/* 問題・解決カード */
.instagram-service__problem-grid,
.instagram-service__solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-service__problem-card {
    background-color: #f5f5f5;
    border-left: 4px solid #ff6600;
    padding: 1rem;
    border-radius: 4px;
}

.instagram-service__solution-card {
    background-color: #e6f2ff;
    border-left: 4px solid #0066cc;
    padding: 1rem;
    border-radius: 4px;
}

.instagram-service__card-content {
    display: flex;
    align-items: flex-start;
}

.instagram-service__card-icon {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.instagram-service__card-icon--problem {
    color: #ff6600;
}

.instagram-service__card-icon--solution {
    color: #0066cc;
}

/* セクションタイトル */
.instagram-service__section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dddddd;
}

/* 強みカード */
.instagram-service__advantage-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #dddddd;
    overflow: hidden;
}

.instagram-service__advantage-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.instagram-service__advantage-number {
    background-color: #ffffff;
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.instagram-service__advantage-body {
    padding: 1.5rem;
    background-color: #ffffff;
}

.instagram-service__advantage-body-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.instagram-service__advantage-body-text {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.instagram-service__advantage-details {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
}

.instagram-service__advantage-list {
    list-style: none;
    margin-left: 1rem;
}

.instagram-service__advantage-list li {
    color: #333333;
    margin-bottom: 0.5rem;
    position: relative;
}

.instagram-service__advantage-list li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* プランカード */
.instagram-service__plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.instagram-service__plan-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.instagram-service__plan-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.instagram-service__plan-header--premium {
    background-color: #004d99;
}

.instagram-service__plan-header--ultimate {
    background-color: #ff6600;
}

.instagram-service__plan-title {
    font-size: 1.25rem;
}

.instagram-service__plan-body {
    padding: 1.5rem;
    background-color: #ffffff;
    flex-grow: 1;
}

.instagram-service__plan-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin-bottom: 1rem;
}

.instagram-service__plan-price-unit {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 400;
}

.instagram-service__plan-features {
    margin-bottom: 1.5rem;
}

.instagram-service__plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.instagram-service__plan-feature-icon {
    color: #0066cc;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ポイント説明 */
.instagram-service__plan-note {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #dddddd;
    margin-top: 2rem;
}

.instagram-service__plan-note-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.instagram-service__plan-note-list {
    list-style: none;
    margin-left: 1rem;
}

.instagram-service__plan-note-list li {
    color: #333333;
    margin-bottom: 0.25rem;
    position: relative;
}

.instagram-service__plan-note-list li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* フローステップ */
.instagram-service__flow-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.instagram-service__flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background-color: #dddddd;
}

.instagram-service__flow-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.instagram-service__flow-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
}

.instagram-service__flow-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.instagram-service__flow-text {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.instagram-service__flow-details {
    background-color: #f5f5f5;
    padding: 0.75rem;
    border-radius: 4px;
}

.instagram-service__flow-details-text {
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.instagram-service__flow-details-icon {
    color: #0066cc;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* FAQ */
.instagram-service__faq-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.instagram-service__faq-question {
    background-color: #f5f5f5;
    padding: 1rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-left: 4px solid #0066cc;
}

.instagram-service__faq-question-icon {
    color: #0066cc;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.instagram-service__faq-answer {
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
}

.instagram-service__faq-answer-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.instagram-service__faq-answer-text {
    color: #333333;
    line-height: 1.7;
}

/* ステップカード */
.instagram-service__step-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #dddddd;
}

.instagram-service__step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.instagram-service__step-number {
    background-color: #0066cc;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.instagram-service__step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
}

.instagram-service__step-text {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.instagram-service__step-details {
    margin-top: 1rem;
}

.instagram-service__step-details-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.instagram-service__step-additional {
    background-color: #f5f5f5;
    border-left: 3px solid #ff6600;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0 4px 4px 0;
}

.instagram-service__step-additional-text {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.instagram-service__step-additional-label {
    font-weight: 600;
}

.instagram-service__step-list {
    list-style: none;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.instagram-service__step-list li {
    color: #333333;
    margin-bottom: 0.5rem;
    position: relative;
}

.instagram-service__step-list li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* まとめセクション */
.instagram-service__summary {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    border-left: 4px solid #0066cc;
}

.instagram-service__summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.instagram-service__summary-text {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .instagram-service {
        padding: 1rem;
    }

    .instagram-service__header {
        padding: 1.5rem;
    }

    .instagram-service__header-title {
        font-size: 1.25rem;
    }

    .instagram-service__phase-header {
        padding: 1rem;
    }

    .instagram-service__phase-title {
        font-size: 1.1rem;
    }

    .instagram-service__phase-body {
        padding: 1.5rem;
    }

    .instagram-service__advantage-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .instagram-service__advantage-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .instagram-service__plan-grid {
        grid-template-columns: 1fr;
    }

    .instagram-service__flow-step {
        padding-left: 0;
        text-align: center;
    }

    .instagram-service__flow-number {
        position: static;
        margin: 0 auto 1rem;
    }

    .instagram-service__flow-step:not(:last-child)::after {
        display: none;
    }

    .instagram-service__step-card {
        padding: 1rem;
    }

    .instagram-service__faq-question {
        padding: 0.75rem 1rem;
    }

    .instagram-service__faq-answer {
        padding: 0.75rem 1rem;
    }
}





























/* HP作成事業 */
/* ベーススタイル - BEM命名規則 */
.medical-site {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.medical-site__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* サービス紹介セクション */
.medical-site__intro {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e6f2ff;
}

.medical-site__intro-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.medical-site__intro-icon {
    color: #0066cc;
    margin-right: 8px;
}

.medical-site__intro-text {
    margin-bottom: 12px;
    line-height: 1.7;
}

.medical-site__intro-highlight {
    color: #0066cc;
    font-weight: bold;
}

.medical-site__intro-bar {
    background-color: #0066cc;
    height: 8px;
    width: 100%;
    border-radius: 4px;
    margin-top: 16px;
}

/* フェーズカード */
.medical-site__phase-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.medical-site__phase-header {
    padding: 24px;
    color: #ffffff;
    font-weight: bold;
    background-color: #0066cc;
    display: flex;
    align-items: center;
}

.medical-site__phase-icon {
    margin-right: 12px;
}

.medical-site__phase-title {
    font-size: 20px;
    margin: 0;
}

.medical-site__phase-content {
    padding: 24px;
    background-color: #ffffff;
}

/* 問題・解決カード */
.medical-site__problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.medical-site__problem-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #ff6600;
}

.medical-site__problem-item {
    display: flex;
    align-items: flex-start;
}

.medical-site__problem-icon {
    color: #0066cc;
    margin-top: 4px;
    margin-right: 8px;
    flex-shrink: 0;
}

.medical-site__solutions-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
}

.medical-site__solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.medical-site__solution-card {
    background-color: #e6f2ff;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #0066cc;
}

.medical-site__solution-item {
    display: flex;
    align-items: flex-start;
}

.medical-site__solution-icon {
    color: #0066cc;
    margin-top: 4px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* 強みセクション */
.medical-site__advantage-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.medical-site__advantage-number {
    font-size: 28px;
    font-weight: bold;
    margin-right: 16px;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
}

.medical-site__advantage-content {
    padding: 20px;
    background-color: #ffffff;
}

.medical-site__advantage-list {
    list-style: disc;
    margin-left: 24px;
    color: #333333;
}

.medical-site__advantage-item {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* プランセクション */
.medical-site__plan-subtitle {
    font-weight: bold;
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.medical-site__plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

.medical-site__plan-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.medical-site__plan-header {
    padding: 20px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.medical-site__plan-header--blue {
    background-color: #0066cc;
}

.medical-site__plan-header--gray {
    background-color: #666666;
}

.medical-site__plan-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.medical-site__plan-body {
    padding: 24px;
    background-color: #ffffff;
    flex-grow: 1;
}

.medical-site__plan-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    text-align: center;
}

.medical-site__plan-price-unit {
    font-size: 16px;
    color: #666666;
}

.medical-site__plan-features {
    margin-bottom: 24px;
    list-style: disc;
    margin-left: 16px;
}

.medical-site__plan-feature {
    margin-bottom: 8px;
}

.medical-site__plan-note {
    margin-top: 32px;
    background-color: #e6f2ff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #0066cc;
}

.medical-site__plan-note-title {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 8px;
}

.medical-site__plan-note-list {
    list-style: disc;
    margin-left: 20px;
    color: #333333;
}

.medical-site__plan-note-item {
    margin-bottom: 4px;
}

/* フローセクション */
.medical-site__step-card {
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 16px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.medical-site__step-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.medical-site__step-number {
    background-color: #0066cc;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    margin-right: 12px;
    font-weight: bold;
}

.medical-site__step-title {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
}

.medical-site__step-text {
    margin-top: 8px;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FAQセクション */
.medical-site__faq-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.medical-site__faq-question {
    padding: 20px;
    background-color: #f5f5f5;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-left: 4px solid #0066cc;
}

.medical-site__faq-icon {
    color: #0066cc;
    margin-right: 12px;
    font-size: 20px;
}

.medical-site__faq-answer {
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
    line-height: 1.6;
}

.medical-site__faq-link {
    color: #0066cc;
    text-decoration: underline;
}

/* CTAセクション */
.medical-site__cta {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 48px;
    border: 1px solid #e6f2ff;
}

.medical-site__cta-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.medical-site__cta-icon {
    color: #0066cc;
    margin-right: 8px;
}

.medical-site__cta-text {
    margin-bottom: 12px;
    line-height: 1.7;
}

.medical-site__cta-highlight {
    font-weight: bold;
    color: #0066cc;
}

.medical-site__cta-bar {
    background-color: #0066cc;
    height: 8px;
    width: 100%;
    border-radius: 4px;
    margin-top: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .medical-site__container {
        padding: 0 12px;
    }

    .medical-site__intro {
        padding: 20px;
        margin-bottom: 32px;
    }

    .medical-site__intro-title {
        font-size: 18px;
    }

    .medical-site__phase-header {
        padding: 20px;
    }

    .medical-site__phase-title {
        font-size: 18px;
    }

    .medical-site__phase-content {
        padding: 20px;
    }

    .medical-site__problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .medical-site__solutions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .medical-site__plan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .medical-site__advantage-header {
        padding: 12px 16px;
        font-size: 16px;
    }

    .medical-site__advantage-number {
        font-size: 24px;
        margin-right: 12px;
    }

    .medical-site__step-card {
        padding: 16px;
    }

    .medical-site__faq-question {
        padding: 16px;
    }

    .medical-site__faq-answer {
        padding: 16px;
    }

    .medical-site__cta {
        padding: 20px;
    }

    .medical-site__cta-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .medical-site__container {
        padding: 0 8px;
    }

    .medical-site__intro-title {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .medical-site__intro-icon {
        margin-bottom: 4px;
    }

    .medical-site__phase-title {
        font-size: 16px;
    }

    .medical-site__plan-price {
        font-size: 24px;
    }

    .medical-site__step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .medical-site__step-number {
        margin-bottom: 8px;
        margin-right: 0;
    }
}








/* LINE事業 */
   /* BEM Classes for LINE Service */
   .line-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.line-service__hero {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
    margin-bottom: 2.5rem;
    border: 1px solid #e6f2ff;
}

.line-service__hero-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.line-service__hero-icon {
    color: #0066cc;
    margin-right: 0.5rem;
}

.line-service__hero-description {
    margin-bottom: 0.75rem;
    color: #333333;
    line-height: 1.6;
}

.line-service__accent-bar {
    background-color: #0066cc;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    margin-top: 1rem;
}

/* Section Cards */
.line-service__section-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.line-service__section-header {
    padding: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    background-color: #0066cc;
}

.line-service__section-header-icon {
    margin-right: 0.75rem;
}

.line-service__section-content {
    padding: 1.5rem;
    background-color: #ffffff;
}

/* Problem & Solution Cards */
.line-service__problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.line-service__problem-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #dddddd;
    border-left: 4px solid #ff6600;
}

.line-service__solution-card {
    background-color: #e6f2ff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #0066cc;
    border-left: 4px solid #0066cc;
}

.line-service__card-content {
    display: flex;
    align-items: flex-start;
}

.line-service__card-icon {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.line-service__card-icon--problem {
    color: #ff6600;
}

.line-service__card-icon--solution {
    color: #0066cc;
}

/* Advantage Section */
.line-service__advantage-item {
    margin-bottom: 0;
}

.line-service__advantage-header {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.line-service__advantage-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 1rem;
    color: #ffffff;
    opacity: 0.9;
    min-width: 2.5rem;
    text-align: center;
}

.line-service__advantage-content {
    background-color: #ffffff;
    padding: 1.25rem;
}

.line-service__advantage-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.line-service__advantage-list li {
    margin-bottom: 0.5rem;
    color: #333333;
}

/* Plan Section */
.line-service__plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.line-service__plan-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.line-service__plan-header {
    padding: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    background-color: #0066cc;
}

.line-service__plan-header--secondary {
    background-color: #666666;
}

.line-service__plan-header--accent {
    background-color: #004d99;
}

.line-service__plan-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line-service__plan-title-text {
    display: block;
    font-size: 1.1rem;
}

.line-service__plan-body {
    padding: 1.5rem;
    background-color: #ffffff;
    flex-grow: 1;
}

.line-service__plan-price {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0066cc;
    text-align: center;
}

.line-service__plan-price-unit {
    font-size: 0.875rem;
    color: #666666;
}

.line-service__plan-features {
    margin-bottom: 1.5rem;
}

.line-service__plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.line-service__plan-feature-icon {
    color: #0066cc;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Step Cards */
.line-service__step-card {
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.1);
    padding: 1.25rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.line-service__step-header {
    margin-bottom: 0.5rem;
}

.line-service__step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    margin-right: 0.75rem;
    background-color: #0066cc;
}

.line-service__step-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333333;
}

.line-service__step-description {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.line-service__step-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.line-service__step-list li {
    margin-bottom: 0.25rem;
    color: #333333;
}

/* FAQ Section */
.line-service__faq-item {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.08);
    border: 1px solid #dddddd;
    background-color: #ffffff;
    overflow: hidden;
}

.line-service__faq-question {
    background-color: #f5f5f5;
    font-weight: bold;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    border-left: 4px solid #0066cc;
}

.line-service__faq-question-icon {
    color: #0066cc;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.line-service__faq-answer {
    padding: 1.1rem;
    border-top: 1px solid #dddddd;
    color: #333333;
}

/* Info Box */
.line-service__info-box {
    margin-top: 2rem;
    background-color: #e6f2ff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #0066cc;
}

.line-service__info-box-title {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.line-service__info-box-list {
    list-style: disc;
    margin-left: 1.25rem;
}

.line-service__info-box-list li {
    margin-bottom: 0.25rem;
    color: #0066cc;
}

/* CTA Section */
.line-service__cta {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
    margin-top: 3rem;
    border: 1px solid #e6f2ff;
}

.line-service__cta-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0066cc;
    display: flex;
    align-items: center;
}

.line-service__cta-icon {
    color: #0066cc;
    margin-right: 0.5rem;
}

.line-service__cta-description {
    margin-bottom: 0.75rem;
    color: #333333;
}

.line-service__cta-highlight {
    font-weight: 600;
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .line-service__container {
        padding: 1rem;
    }

    .line-service__hero-title {
        font-size: 1.1rem;
    }

    .line-service__section-header {
        padding: 1rem;
    }

    .line-service__section-content {
        padding: 1rem;
    }

    .line-service__problems-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .line-service__plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .line-service__advantage-header {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .line-service__advantage-number {
        font-size: 1.5rem;
        min-width: 2rem;
    }

    .line-service__plan-title-text {
        font-size: 1rem;
    }

    .line-service__step-card {
        padding: 1rem;
    }

    .line-service__faq-question {
        padding: 0.875rem;
    }

    .line-service__faq-answer {
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .line-service__hero-title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .line-service__hero-icon {
        margin-bottom: 0.25rem;
    }

    .line-service__advantage-content {
        padding: 1rem;
    }

    .line-service__plan-body {
        padding: 1rem;
    }
}














/* SNSマーケティング */
  /* 医療機関向けInstagram運用サービス（詳細版）専用CSS */
        
        /* Base styles */
        .medical-ig-detailed {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333333;
            background-color: #ffffff;
            margin-top: 3rem;
        }
        
        .medical-ig-detailed * {
            box-sizing: border-box;
        }
        
        /* Container */
        .medical-ig-detailed__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header section */
        .medical-ig-detailed__header {
            background-color: #ffffff;
            padding: 1.5rem 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            margin-bottom: 2.5rem;
            border-left: 4px solid #0066cc;
        }
        
        .medical-ig-detailed__header-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__header-text {
            color: #333333;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__header-accent {
            width: 100%;
            height: 4px;
            background-color: #0066cc;
            border-radius: 2px;
            margin-top: 1rem;
        }
        
        /* Phase card components */
        .medical-ig-detailed__phase-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            margin-bottom: 2rem;
            border: 1px solid #dddddd;
            overflow: hidden;
        }
        
        .medical-ig-detailed__phase-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .medical-ig-detailed__phase-icon {
            margin-right: 0.75rem;
            font-size: 1.5rem;
        }
        
        .medical-ig-detailed__phase-title {
            font-size: 1.25rem;
            margin: 0;
        }
        
        .medical-ig-detailed__phase-content {
            padding: 2rem;
            background-color: #ffffff;
        }
        
        /* Problem and solution cards */
        .medical-ig-detailed__cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .medical-ig-detailed__problem-card {
            background-color: #ffffff;
            border: 1px solid #dddddd;
            border-left: 4px solid #ff6600;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: flex-start;
        }
        
        .medical-ig-detailed__solution-card {
            background-color: #e6f2ff;
            border: 1px solid #0066cc;
            border-left: 4px solid #0066cc;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: flex-start;
        }
        
        .medical-ig-detailed__card-icon {
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        .medical-ig-detailed__card-icon--problem {
            color: #ff6600;
        }
        
        .medical-ig-detailed__card-icon--solution {
            color: #0066cc;
        }
        
        /* Advantage cards */
        .medical-ig-detailed__advantage-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            margin-bottom: 1.5rem;
            border: 1px solid #dddddd;
            overflow: hidden;
        }
        
        .medical-ig-detailed__advantage-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .medical-ig-detailed__advantage-number {
            font-size: 2rem;
            font-weight: bold;
            margin-right: 1rem;
            color: #ffffff;
            min-width: 3rem;
            text-align: center;
        }
        
        .medical-ig-detailed__advantage-body {
            padding: 1.5rem;
            background-color: #ffffff;
        }
        
        .medical-ig-detailed__advantage-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.75rem;
        }
        
        .medical-ig-detailed__advantage-text {
            color: #666666;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__advantage-details {
            background-color: #f5f5f5;
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid #0066cc;
        }
        
        .medical-ig-detailed__advantage-list {
            list-style: disc;
            margin-left: 1.25rem;
            margin-top: 0.5rem;
        }
        
        .medical-ig-detailed__advantage-list li {
            margin-bottom: 0.5rem;
            color: #666666;
        }
        
        /* Plan cards */
        .medical-ig-detailed__plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .medical-ig-detailed__plan-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            border: 1px solid #dddddd;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .medical-ig-detailed__plan-header {
            background-color: #0066cc;
            color: #ffffff;
            padding: 1.5rem;
            text-align: center;
            font-weight: bold;
        }
        
        .medical-ig-detailed__plan-header--secondary {
            background-color: #666666;
        }
        
        .medical-ig-detailed__plan-header--accent {
            background-color: #ff6600;
        }
        
        .medical-ig-detailed__plan-title {
            font-size: 1.25rem;
            margin: 0;
        }
        
        .medical-ig-detailed__plan-body {
            padding: 1.5rem;
            background-color: #ffffff;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .medical-ig-detailed__plan-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #0066cc;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__plan-price-unit {
            font-size: 0.9rem;
            color: #666666;
            font-weight: normal;
        }
        
        .medical-ig-detailed__plan-features {
            flex-grow: 1;
        }
        
        .medical-ig-detailed__plan-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }
        
        .medical-ig-detailed__plan-feature-icon {
            color: #0066cc;
            margin-right: 0.5rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .medical-ig-detailed__plan-note {
            background-color: #f5f5f5;
            padding: 1rem;
            border-radius: 4px;
            border: 1px solid #dddddd;
            margin-top: 2rem;
        }
        
        .medical-ig-detailed__plan-note-title {
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        
        .medical-ig-detailed__plan-note-list {
            list-style: disc;
            margin-left: 1.25rem;
            color: #666666;
        }
        
        .medical-ig-detailed__plan-note-list li {
            margin-bottom: 0.25rem;
        }
        
        /* Flow steps */
        .medical-ig-detailed__flow-step {
            position: relative;
            display: flex;
            margin-bottom: 2.5rem;
            align-items: flex-start;
        }
        
        .medical-ig-detailed__flow-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 1.25rem;
            top: 3rem;
            bottom: -1.5rem;
            width: 2px;
            background-color: #0066cc;
        }
        
        .medical-ig-detailed__flow-number {
            width: 2.5rem;
            height: 2.5rem;
            background-color: #0066cc;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .medical-ig-detailed__flow-content {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            border: 1px solid #dddddd;
            flex: 1;
        }
        
        .medical-ig-detailed__flow-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        
        .medical-ig-detailed__flow-text {
            color: #666666;
            margin-bottom: 0.75rem;
        }
        
        .medical-ig-detailed__flow-note {
            background-color: #f5f5f5;
            padding: 0.75rem;
            border-radius: 4px;
            border-left: 3px solid #0066cc;
        }
        
        .medical-ig-detailed__flow-note-text {
            font-size: 0.9rem;
            color: #666666;
        }
        
        /* FAQ */
        .medical-ig-detailed__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            border: 1px solid #dddddd;
            overflow: hidden;
        }
        
        .medical-ig-detailed__faq-question {
            background-color: #f5f5f5;
            padding: 1rem 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            border-left: 4px solid #0066cc;
            color: #333333;
        }
        
        .medical-ig-detailed__faq-icon {
            color: #0066cc;
            margin-right: 0.75rem;
            font-size: 1.1rem;
        }
        
        .medical-ig-detailed__faq-answer {
            padding: 1rem 1.5rem;
            background-color: #ffffff;
            border-top: 1px solid #dddddd;
        }
        
        .medical-ig-detailed__faq-answer-title {
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        
        .medical-ig-detailed__faq-answer-text {
            color: #666666;
        }
        
        /* Step cards for process */
        .medical-ig-detailed__step-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 102, 204, 0.08);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid #dddddd;
        }
        
        .medical-ig-detailed__step-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .medical-ig-detailed__step-number {
            display: inline-block;
            width: 2rem;
            height: 2rem;
            line-height: 2rem;
            text-align: center;
            border-radius: 50%;
            background-color: #0066cc;
            color: #ffffff;
            font-weight: bold;
            margin-right: 0.75rem;
            font-size: 0.9rem;
        }
        
        .medical-ig-detailed__step-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333333;
        }
        
        .medical-ig-detailed__step-text {
            color: #666666;
            margin-bottom: 0.75rem;
        }
        
        .medical-ig-detailed__step-details {
            margin-top: 0.75rem;
        }
        
        .medical-ig-detailed__step-details-title {
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
        }
        
        .medical-ig-detailed__step-detail-item {
            background-color: #e6f2ff;
            border-left: 3px solid #0066cc;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            border-radius: 0 4px 4px 0;
        }
        
        .medical-ig-detailed__step-detail-item strong {
            color: #0066cc;
            font-weight: 600;
        }
        
        .medical-ig-detailed__step-list {
            list-style: disc;
            margin-left: 1.5rem;
            margin-top: 0.5rem;
            color: #666666;
        }
        
        .medical-ig-detailed__step-list li {
            margin-bottom: 0.5rem;
        }
        
        /* Summary section */
        .medical-ig-detailed__summary {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
            margin-top: 3rem;
            border-left: 4px solid #0066cc;
        }
        
        .medical-ig-detailed__summary-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #0066cc;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__summary-text {
            color: #333333;
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__summary-accent {
            width: 100%;
            height: 4px;
            background-color: #0066cc;
            border-radius: 2px;
            margin-top: 1rem;
        }
        
        /* Utility classes */
        .medical-ig-detailed__text--primary {
            color: #333333;
        }
        
        .medical-ig-detailed__text--secondary {
            color: #666666;
        }
        
        .medical-ig-detailed__text--accent {
            color: #0066cc;
        }
        
        .medical-ig-detailed__text--bold {
            font-weight: 600;
        }
        
        .medical-ig-detailed__mb-1 {
            margin-bottom: 0.5rem;
        }
        
        .medical-ig-detailed__mb-2 {
            margin-bottom: 1rem;
        }
        
        .medical-ig-detailed__mb-3 {
            margin-bottom: 1.5rem;
        }
        
        .medical-ig-detailed__mb-4 {
            margin-bottom: 2rem;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .medical-ig-detailed__container {
                padding: 0 0.75rem;
            }
            
            .medical-ig-detailed__header {
                padding: 1rem 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .medical-ig-detailed__header-title {
                font-size: 1.25rem;
            }
            
            .medical-ig-detailed__phase-content {
                padding: 1.5rem;
            }
            
            .medical-ig-detailed__cards-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .medical-ig-detailed__plans-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .medical-ig-detailed__advantage-header {
                padding: 0.75rem 1rem;
                font-size: 1rem;
            }
            
            .medical-ig-detailed__advantage-number {
                font-size: 1.5rem;
                min-width: 2.5rem;
            }
            
            .medical-ig-detailed__advantage-body {
                padding: 1rem;
            }
            
            .medical-ig-detailed__flow-step {
                flex-direction: column;
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .medical-ig-detailed__flow-number {
                margin: 0 auto 1rem;
            }
            
            .medical-ig-detailed__flow-step:not(:last-child)::after {
                display: none;
            }
            
            .medical-ig-detailed__step-card {
                padding: 1rem;
            }
            
            .medical-ig-detailed__step-number {
                width: 1.75rem;
                height: 1.75rem;
                line-height: 1.75rem;
                font-size: 0.8rem;
            }
            
            .medical-ig-detailed__step-title {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .medical-ig-detailed__header-title {
                font-size: 1.1rem;
            }
            
            .medical-ig-detailed__phase-title {
                font-size: 1.1rem;
            }
            
            .medical-ig-detailed__plan-price {
                font-size: 1.5rem;
            }
            
            .medical-ig-detailed__advantage-number {
                font-size: 1.25rem;
            }
        }












/* SEO */
  /* SEOページ専用コンテナ */
  .seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通 */
.seo-section {
    padding: 4rem 0;
}

.seo-section--gray {
    background-color: #f5f5f5;
}

.seo-section--blue {
    background-color: #e6f2ff;
}

.seo-section__title {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-section__heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.seo-section__subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About SEO セクション */
.seo-about {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    padding: 2.5rem;
    border: 1px solid #dddddd;
}

.seo-about__heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0066cc;
    padding-left: 1rem;
}

.seo-about__content {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.8;
}

.seo-about__content strong {
    color: #0066cc;
    font-weight: bold;
}

/* 課題セクション */
.seo-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.seo-problems__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid #dddddd;
    transition: all 0.3s ease;
}

.seo-problems__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.seo-problems__icon {
    width: 60px;
    height: 60px;
    background-color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.seo-problems__title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.seo-problems__text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.seo-problems__banner {
    background-color: #e6f2ff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid #0066cc;
}

.seo-problems__banner-text {
    font-size: 1.3rem;
    color: #0066cc;
    font-weight: bold;
}

.seo-problems__banner-icon {
    color: #0066cc;
    margin-right: 0.5rem;
}

/* 特徴セクション */
.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.seo-features__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid #dddddd;
    transition: all 0.3s ease;
}

.seo-features__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.seo-features__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.seo-features__title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 1rem;
}

.seo-features__text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-features__list {
    list-style: none;
}

.seo-features__list-item {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.seo-features__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1rem;
}

/* サービス内容セクション */
.seo-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.seo-services__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #dddddd;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
}

.seo-services__icon {
    width: 60px;
    height: 60px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.seo-services__title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.seo-services__text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

/* 料金セクション */
.seo-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seo-pricing__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #dddddd;
    transition: all 0.3s ease;
    position: relative;
}

.seo-pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.seo-pricing__card--recommended {
    border: 3px solid #0066cc;
    transform: scale(1.05);
}

.seo-pricing__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.seo-pricing__plan-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 1rem;
}

.seo-pricing__price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
}

.seo-pricing__period {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.seo-pricing__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.seo-pricing__feature {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.seo-pricing__feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.seo-pricing__note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.seo-pricing__note-text {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* フローセクション */
.seo-flow {
    max-width: 900px;
    margin: 0 auto;
}

.seo-flow__step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.seo-flow__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -30px;
    width: 3px;
    background-color: #0066cc;
    border-radius: 2px;
}

.seo-flow__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 2rem;
}

.seo-flow__content {
    flex: 1;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #dddddd;
}

.seo-flow__title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 1rem;
}

.seo-flow__text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
}

/* ボタン */
.seo-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.seo-btn--primary {
    background-color: #0066cc;
    color: #ffffff;
}

.seo-btn--primary:hover {
    background-color: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.seo-btn--secondary {
    background-color: #666666;
    color: #ffffff;
}

.seo-btn--secondary:hover {
    background-color: #555555;
}

.seo-btn--accent {
    background-color: #ff6600;
    color: #ffffff;
}

.seo-btn--accent:hover {
    background-color: #e55a00;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .seo-container {
        padding: 0 16px;
    }

    .seo-section {
        padding: 3rem 0;
    }

    .seo-section__heading {
        font-size: 1.8rem;
    }

    .seo-section__subtitle {
        font-size: 1rem;
    }

    .seo-problems {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-pricing {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-pricing__card--recommended {
        transform: scale(1);
    }

    .seo-flow__step {
        flex-direction: column;
        text-align: center;
    }

    .seo-flow__number {
        margin: 0 auto 1rem;
    }

    .seo-flow__step:not(:last-child)::after {
        display: none;
    }

    .seo-about {
        padding: 2rem;
    }

    .seo-about__heading {
        font-size: 1.3rem;
    }

    .seo-features__card,
    .seo-services__card,
    .seo-problems__card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .seo-section__heading {
        font-size: 1.6rem;
    }

    .seo-pricing__card {
        padding: 2rem 1.5rem;
    }

    .seo-flow__content {
        padding: 1.2rem;
    }
}

/* アニメーション */
@keyframes seo-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-animate {
    animation: seo-fadeInUp 0.6s ease-out forwards;
}












  /* 医療機関向けInstagram広告運用代行サービス */


.instagram-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* セクションタイトル */
.instagram-service__section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #0066cc;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* 基本セクション */
.instagram-service__about {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #dddddd;
}

.instagram-service__about-text {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.instagram-service__accent-bar {
    background-color: #0066cc;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    margin-top: 1rem;
}

/* カードコンポーネント */
.instagram-service__card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.instagram-service__card-header {
    padding: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    background-color: #0066cc;
    display: flex;
    align-items: center;
}

.instagram-service__card-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.instagram-service__card-content {
    padding: 2rem;
    background-color: #ffffff;
}

/* 問題・解決グリッド */
.instagram-service__problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-service__problem-item {
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 1rem;
    border-left: 4px solid #ff6600;
    display: flex;
    align-items: flex-start;
}

.instagram-service__problem-icon {
    color: #ff6600;
    margin-top: 0.2rem;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.instagram-service__solution-item {
    background-color: #e6f2ff;
    border-radius: 6px;
    padding: 1rem;
    border-left: 4px solid #0066cc;
    display: flex;
    align-items: flex-start;
}

.instagram-service__solution-icon {
    color: #0066cc;
    margin-top: 0.2rem;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.instagram-service__solution-banner {
    background-color: #e6f2ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #0066cc;
}

.instagram-service__solution-text {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 0;
}

/* 強み・特徴セクション */
.instagram-service__advantage-item {
    margin-bottom: 2rem;
}

.instagram-service__advantage-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.instagram-service__advantage-number {
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1rem;
}

.instagram-service__advantage-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333333;
}

.instagram-service__advantage-description {
    margin-left: 3.5rem;
    color: #666666;
    line-height: 1.6;
}

/* 料金プランセクション */
.instagram-service__plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instagram-service__plan-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    border: 1px solid #dddddd;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.instagram-service__plan-card:hover {
    transform: translateY(-3px);
}

.instagram-service__plan-header {
    padding: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    background-color: #0066cc;
}

.instagram-service__plan-header--premium {
    background-color: #ff6600;
}

.instagram-service__plan-title {
    font-size: 1.2rem;
    margin: 0;
}

.instagram-service__plan-body {
    padding: 2rem;
}

.instagram-service__plan-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0066cc;
    text-align: center;
}

.instagram-service__plan-price-unit {
    font-size: 1rem;
    color: #666666;
    font-weight: normal;
}

.instagram-service__plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instagram-service__plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.instagram-service__plan-feature-icon {
    color: #0066cc;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    font-size: 1rem;
}

.instagram-service__plan-note {
    margin-top: 2rem;
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dddddd;
}

.instagram-service__plan-note-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.instagram-service__plan-note-list {
    list-style: disc;
    margin-left: 1.2rem;
    color: #666666;
}

.instagram-service__plan-note-item {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* フローセクション */
.instagram-service__flow-step {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.instagram-service__flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -1rem;
    width: 2px;
    background-color: #0066cc;
}

.instagram-service__flow-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.instagram-service__flow-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
    border: 1px solid #dddddd;
}

.instagram-service__flow-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

.instagram-service__flow-description {
    color: #666666;
    line-height: 1.6;
}

/* FAQセクション */
.instagram-service__faq-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

.instagram-service__faq-question {
    padding: 1.25rem;
    background-color: #f5f5f5;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #0066cc;
}

.instagram-service__faq-icon {
    color: #0066cc;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 1.1rem;
}

.instagram-service__faq-answer {
    padding: 1.25rem;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
    color: #666666;
    line-height: 1.6;
}

/* まとめセクション */
.instagram-service__summary {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    margin-top: 3rem;
    border: 1px solid #dddddd;
}

.instagram-service__summary-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333333;
}

.instagram-service__summary-text {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .instagram-service__container {
        padding: 15px;
    }

    .instagram-service__section-title {
        font-size: 1.5rem;
    }

    .instagram-service__about,
    .instagram-service__card-content {
        padding: 1.5rem;
    }

    .instagram-service__problems-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .instagram-service__plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instagram-service__advantage-description {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .instagram-service__advantage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .instagram-service__advantage-number {
        margin-right: 0;
    }

    .instagram-service__flow-step {
        padding-left: 0;
        text-align: center;
    }

    .instagram-service__flow-number {
        position: static;
        margin: 0 auto 1rem auto;
    }

    .instagram-service__flow-step:not(:last-child)::after {
        display: none;
    }

    .instagram-service__card-header {
        padding: 1rem;
    }

    .instagram-service__card-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-service__section-title {
        font-size: 1.3rem;
    }

    .instagram-service__about,
    .instagram-service__card-content {
        padding: 1rem;
    }

    .instagram-service__plan-price {
        font-size: 1.5rem;
    }

    .instagram-service__problem-item,
    .instagram-service__solution-item {
        padding: 0.75rem;
    }
}

























/* BPO事業*/
.bpo-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通スタイル */
.bpo-section {
    padding: 4rem 0;
}

.bpo-section--even {
    background-color: #fff;
}

.bpo-section__title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.bpo-section__title-heading {
    font-size: 2.2rem;
    color: #2c3e50;
    display: inline-block;
    font-weight: 600;
}

.bpo-section__title-heading::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #34495e;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* 課題セクション */
.bpo-problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bpo-problems__card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e74c3c;
}

.bpo-problems__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.bpo-problems__card-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    display: block;
}

.bpo-problems__card-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bpo-problems__card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.bpo-problems__solution-banner {
    background-color: #e8f5e8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    border-left: 5px solid #27ae60;
}

.bpo-problems__solution-text {
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 600;
}

/* 特徴セクション */
.bpo-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.bpo-features__card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 2.5rem;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #3498db;
}

.bpo-features__card:hover {
    transform: translateY(-5px);
}

.bpo-features__card-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    display: block;
}

.bpo-features__card-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bpo-features__card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bpo-features__card ul {
    list-style: none;
    margin-top: 1rem;
}

.bpo-features__card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.bpo-features__card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* サービス内容セクション */
.bpo-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bpo-services__card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.bpo-services__card:hover {
    background-color: #e3f2fd;
    transform: translateY(-5px);
    border-color: #3498db;
}

.bpo-services__card-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bpo-services__card-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bpo-services__card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

/* メリットセクション */
.bpo-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bpo-benefits__card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-bottom: 3px solid #3498db;
}

.bpo-benefits__card:hover {
    transform: scale(1.05);
}

.bpo-benefits__card-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: block;
}

.bpo-benefits__card-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bpo-benefits__card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.5;
}

/* 比較表セクション */
.bpo-comparison__table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.bpo-comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.bpo-comparison__table-header {
    background-color: #34495e;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.bpo-comparison__table-cell {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.bpo-comparison__table-row:nth-child(even) {
    background-color: #f8f9fa;
}

.bpo-comparison__table-cell--highlight {
    background-color: #e3f2fd !important;
    color: #2c3e50;
    font-weight: 600;
}

.bpo-comparison__summary {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* 導入フローセクション */
.bpo-flow__container {
    max-width: 800px;
    margin: 0 auto;
}

.bpo-flow__step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.bpo-flow__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background-color: #3498db;
}

.bpo-flow__step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
}

.bpo-flow__step-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bpo-flow__step-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bpo-flow__step-content p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* 効果セクション */
.bpo-effects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bpo-effects__card {
    background-color: #e8f5e8;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid #27ae60;
}

.bpo-effects__card-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bpo-effects__card-data {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: bold;
}

/* FAQ セクション */
.bpo-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.bpo-faq__item {
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bpo-faq__question {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid #3498db;
}

.bpo-faq__question::before {
    content: 'Q.';
    font-weight: bold;
    color: #3498db;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.bpo-faq__answer {
    padding: 1rem 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
    border-top: 1px solid #e9ecef;
}

.bpo-faq__answer::before {
    content: 'A.';
    font-weight: bold;
    color: #27ae60;
    margin-right: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .bpo-container {
        padding: 0 16px;
    }
    
    .bpo-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .bpo-section__title-heading {
        font-size: 1.8rem;
    }

    .bpo-problems__grid,
    .bpo-features__grid,
    .bpo-services__grid,
    .bpo-benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bpo-problems__card,
    .bpo-features__card,
    .bpo-services__card {
        padding: 1.5rem;
    }

    .bpo-flow__step {
        flex-direction: column;
        text-align: center;
    }

    .bpo-flow__step-number {
        margin: 0 auto 1rem;
    }

    .bpo-flow__step:not(:last-child)::after {
        display: none;
    }

    .bpo-comparison__table-wrapper {
        font-size: 0.9rem;
    }

    .bpo-comparison__table-header,
    .bpo-comparison__table-cell {
        padding: 0.8rem;
    }

    .bpo-effects__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .bpo-section {
        padding: 2rem 0;
    }

    .bpo-section__title-heading {
        font-size: 1.5rem;
    }

    .bpo-problems__card,
    .bpo-features__card,
    .bpo-services__card {
        padding: 1rem;
    }

    .bpo-comparison__table-wrapper {
        font-size: 0.8rem;
    }

    .bpo-comparison__table-header,
    .bpo-comparison__table-cell {
        padding: 0.6rem;
    }
}

/* 印刷用スタイル */
@media print {
    .bpo-section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
    
    .bpo-problems__card,
    .bpo-features__card,
    .bpo-services__card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}




/*  */


.consulting-support__content {
    text-align: left !important;
    margin-left: 30px;
  }

@media (max-width: 768px) {
  .consulting-support__content {
    text-align: left !important;
    margin-left: 0px;
  }
}

  .consulting-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .consulting-support__content {
    margin-bottom: 20px;
  }

  .consulting-support__title {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.8em;
  }

  .consulting-support__subtitle {
    font-size: 1.5em;
    color: #910bb8;
    margin-bottom: 1em;
  }

  .consulting-support__description {
    font-size: 1em;
    color: #7f8c8d;
    line-height: 1.5;
    color: #2c3e50;
  }

  .consulting-support__image {
    width: 100%;
    max-width: 600px;
  }

  .consulting-support__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (min-width: 1008px) {
    .consulting-support {
      flex-direction: row;
      justify-content: space-between;
    }

    .consulting-support__content {
      flex: 1;
      margin-right: 20px;
    }

    .consulting-support__image {
      flex: 1;
      margin-left: 20px;
    }
  }


  @media screen and (max-width: 768px) {
    .consulting-support__content {
        margin-top: 1.5em;
    }

    .consulting-support__title {
        font-size: 1.7em !important;
        margin-bottom: 0.5em !important;
    }

    .consulting-support__subtitle {
        font-size: 1.3em !important;
        margin-bottom: 0.5em !important;
    }

    .details-button {
        margin-top: 1em !important;
        width: 100% !important;
        max-width: 280px !important;
    }
}

.details-button {
    display: inline-block;
    background-color: #910bb8;
    color: white;
    text-align: center;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #910bb8;
    width: 200px;
}

.details-button:hover {
    background-color: white;
    color: #910bb8;
}




/* SEO */
.nav-menu {
    display: flex;
}

.nav-menu a {
    color: #5F6368; /* Google Gray */
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border-radius: 4px;
    transition: all 0.15s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-menu a:hover {
    background-color: #E8F0FE; /* Light Google Blue */
    color: #1A73E8; /* Darker Google Blue */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F0FE 0%, #D2E3FC 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #1A73E8; /* Dark Google Blue */
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #3C4043;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #5F6368;
    line-height: 1.5;
}

/* Section Common Styles */

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

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5F6368;
    max-width: 700px;
    margin: 0 auto;
}

/* About SEO Section */
.about-seo {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    padding: 2rem;
    transition: all 0.2s ease;
    border: 1px solid #E8EAED;
}

.about-seo h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1A73E8;
    margin-bottom: 1rem;
}

.about-seo p {
    color: #5F6368;
    font-size: 1rem;
    line-height: 1.6;
}

/* Problem Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    padding: 2rem;
    transition: all 0.2s ease;
    border: 1px solid #E8EAED;
}

.problem-card:hover {
    box-shadow: 0 4px 12px rgba(60,64,67,.15);
    transform: translateY(-2px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background-color: #FCE8E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #EA4335; /* Google Red */
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.8rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: #5F6368;
    line-height: 1.5;
}

.solution-banner {
    background-color: #E8F0FE;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid #D2E3FC;
}

.solution-banner p {
    font-size: 1.2rem;
    color: #1A73E8;
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    padding: 2rem;
    transition: all 0.2s ease;
    border: 1px solid #E8EAED;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(60,64,67,.15);
    transform: translateY(-2px);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4285F4;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #5F6368;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 0.9rem;
    color: #5F6368;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34A853; /* Google Green */
    font-weight: bold;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    padding: 2rem;
    transition: all 0.2s ease;
    border: 1px solid #E8EAED;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(60,64,67,.15);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #E8F0FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4285F4; /* Google Blue */
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #5F6368;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #E8EAED;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 4px 12px rgba(60,64,67,.15);
    transform: translateY(-2px);
}

.pricing-card.recommended {
    border: 2px solid #4285F4;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4285F4;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 400;
    color: #4285F4;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    color: #5F6368;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #5F6368;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34A853; /* Google Green */
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4285F4;
    color: white;
}

.btn-primary:hover {
    background-color: #3367D6;
    box-shadow: 0 2px 8px rgba(66,133,244,.3);
}

.btn-outline {
    background-color: transparent;
    color: #4285F4;
    border: 1px solid #4285F4;
}

.btn-outline:hover {
    background-color: #E8F0FE;
}

/* Flow Section */
.flow-container {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background-color: #D2E3FC;
}

.flow-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 1.5rem;
}

.flow-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.5rem;
}

.flow-content p {
    font-size: 0.9rem;
    color: #5F6368;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #E8EAED;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #F8F9FA;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #202124;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #F1F3F4;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #5F6368;
    transition: transform 0.2s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #5F6368;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background-color: #4285F4;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #4285F4;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transform: translateY(-2px);
}

/* Footer */


.footer-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4285F4;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #5F6368;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: #9AA0A6;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
    }

    .flow-number {
        margin: 0 auto 1rem;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.4s ease-out forwards;
}


/* ホームページ */
.deep-navy { background: #132043; } .navy-gradient { background: linear-gradient(90deg, #1A2857 0%, #233765 90%); } .phase-card { border-radius: 12px; box-shadow: 0 4px 8px rgba(30,64,175, .07); overflow: hidden; margin-bottom: 2rem; border: 1px solid #dce1ed; } .phase-header { padding: 1.5rem; color: #fff; font-weight: bold; background: linear-gradient(90deg, #1A2857 70%, #233765 100%); } .advantage-header-sharp { background: #233765; color: #fff; padding: 0.6rem 1.25rem; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; min-height: 44px; } .advantage-number { font-size: 1.8rem; font-weight: bold; margin-right: 1rem; color: #fff; opacity: 0.9; min-width: 2.5rem; text-align: center; } .plan-header { padding: 1.2rem; color: #fff; font-weight: bold; text-align: center; } .plan-header.blue { background: #1A2857; } .plan-header.gray { background: #384869; } .plan-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(30, 64, 175, .07); border: 1px solid #dce1ed; display: flex; flex-direction: column; } .plan-body { padding: 1.5rem; background: #fff; flex-grow: 1; } .plan-price { font-size: 1.7rem; font-weight: bold; margin-bottom: 1rem; color: #1A2857; text-align: center; } .plan-features { margin-bottom: 1.5rem; } .plan-feature { display: flex; align-items: flex-start; margin-bottom: .75rem; } .faq-item { border-radius: 8px; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(66, 133, 244, .07); border: 1px solid #dce1ed; background: #fff; overflow: hidden; } .faq-question { background-color: #e9eefa; font-weight: bold; padding: 1.1rem; display: flex; align-items: center; border-left: 4px solid #1A2857; } .faq-answer { padding: 1.1rem; border-top: 1px solid #e3eaf5; } .section-nav { position: sticky; top: 0; z-index: 100; background: white; box-shadow: 0 1px 4px rgba(66, 133, 244, .04); } .menu-item { transition: all .3s; border-bottom: 2px solid transparent; } .menu-item:hover { border-bottom: 2px solid #233765; color: #233765 !important; } .menu-item.active { border-bottom: 2px solid #233765; font-weight: bold; color: #233765; } .step-card ul { margin-left: 1.5rem; margin-top: 0.5rem; } .sample-gradient-bar { background: linear-gradient(90deg, #233765 0%, #415072 100%); } @media print { .section-nav {display:none;} } 




   /* 代表挨拶 */
   .greeting__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: white;
    border-radius: 12px;
}

.greeting__image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    order: 2;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.greeting__image {
    width: 300px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.greeting__name-section {
    padding: 1rem 0;
    flex: 1;
}

.greeting__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.greeting__title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.greeting__signature-image {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    margin: 0 auto;
    display: block;
}

.greeting__message-section {
    order: 1;
}


.greeting__heading {
    font-size: 2rem !important;
    text-align: center;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
}



.greeting__message {
    font-size: 1.15rem;
    line-height: 2.0;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: 0.02em;
}

.message_box-item{
    margin-bottom: 4rem;
}

.greeting__message p {
    margin-bottom: 1rem !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.01em;
    line-height: 1.5 !important;
}

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

.greeting__subheading {
    font-size: 1.4rem;
    color: #6e058c;
    font-weight: 600;
    margin: 2.2rem 0 0.8rem 0;
    position: relative;
    letter-spacing: 0.02em;
    line-height: 1.5;
}



.greeting__signature {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.greeting__signature-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.greeting__signature-title {
    font-size: 1rem;
    color: #7f8c8d;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .greeting__content {
        gap: 2rem;
        text-align: center;
    }

    /* SP表示時は縦並びに変更 */
    .greeting__image-wrapper {
        max-width: 250px;
        flex-direction: column;
        gap: 1rem;
    }


    .greeting__name-section {
        margin-top: 0;
        text-align: center;
        width: 100%;
    }

    .greeting__title{
        margin-bottom: 0;
    }




    .greeting__heading {
        font-size: 1.8rem !important;
        letter-spacing: 0.02em;
    }

    .greeting__subheading {
        font-size: 1.2rem;
        letter-spacing: 0.01em;
    }

    .greeting__message {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .greeting__signature-image {
        max-width: 150px;
    }

}

@media (max-width: 480px) {
        .greeting__heading {
        font-size: 1.6rem !important;
        letter-spacing: 0.01em;
    }

    .greeting__subheading {
        font-size: 1.3rem;
        letter-spacing: 0.01em;
    }

}