/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

        /* メインコンテンツ */
        .main-content {
            margin-top: 85px;
        }

        /* ヒーローセクション */
        .hero-section {
            background-color: #ccc;
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            color: black;
            padding: 20px 20px;
            position: relative;
            overflow: hidden;
            max-width: 1440px;
            margin: 0 auto;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            min-height: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .case-study-label {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 36px;
            font-weight: bold;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .company-info {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .company-logo {
            display: flex;
            max-width: 240px;
            align-items: center;
            justify-content: center;
        }

        .company-details {
            flex: 1;
        }

        .company-name {
            font-size: 24px;
            font-weight: bold;
        }

        .company-meta {
            font-size: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .meta-item {
            display: flex;
            align-items: center;
        }

        /* サマリーセクション */
        .summary-section {
            background-color: white;
            padding: 50px 20px;
        }

        .summary-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .summary-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .summary-card-title {
            font-size: 18px;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .summary-card-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background-color: #ff6b35;
            border-radius: 2px;
        }

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

        .summary-list li {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .summary-list li::before {
            content: '・';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        /* インタビューコンテンツ */
        .interview-section {
            background-color: #ffffff;
            padding: 60px 20px;
        }

        .interview-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-heading {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            margin-top: 20px;
            margin-bottom: 10px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff6b35;
        }

        .subsection-heading {
            font-size: 22px;
            font-weight: normal;
            font-style: oblique;
            color: #2c3e50;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .interview-text {
            font-size: 16px;
            line-height: 1.9;
            color: #333;
            margin-bottom: 25px;
        }

        .interview-q {
            font-size: 16px;
            font-weight: bold;
            color: #808080;
            margin-top: 35px;
            margin-bottom: 15px;
            position: relative;
        }

        .interview-a {
            font-size: 16px;
            line-height: 1.9;
            color: #333;
            margin-bottom: 25px;
            position: relative;
        }

        .emp-lv1 {
            font-size: 18px;
            font-weight: bold;
            background: linear-gradient(transparent 50%, #EBF561 30%);
            display: inline;
            padding-bottom: 0px;
        }
      
        .emp-lv2 {
            font-size: 16px;
            font-weight: bold;
            color: #102040;
        }

        /* CTAセクション */
        .cta-section {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

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

        .cta-btn {
            background-color: white;
            color: #ff6b35;
            padding: 18px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: #ff6b35;
        }

        .cta-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn-secondary:hover {
            background-color: white;
            color: #ff6b35;
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .summary-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 882px) {
            .main-content {
                margin-top: 85px;
            }
          
            .hero-title {
                font-size: 28px;
            }

            .company-info {
                flex-direction: column;
                align-items: flex-start;
            }

            .company-logo {
                width: 120px;
            }

            .company-name {
                font-size: 20px;
            }

            .summary-section {
                padding: 40px 20px;
            }

            .interview-section {
                padding: 40px 20px;
            }

            .section-heading {
                font-size: 24px;
            }

            .subsection-heading {
                font-size: 20px;
            }

            .cta-title {
                font-size: 26px;
            }

            .cta-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
            }

            .case-study-label {
                font-size: 12px;
                padding: 6px 16px;
            }

            .company-name {
                font-size: 18px;
            }

            .company-meta {
                font-size: 13px;
            }

            .summary-card {
                padding: 20px;
            }

            .summary-card-title {
                font-size: 16px;
            }

            .summary-list li {
                font-size: 14px;
            }

            .section-heading {
                font-size: 22px;
            }

            .subsection-heading {
                font-size: 18px;
            }
          
            .interview-text,
            .interview-a {
                font-size: 15px;
            }

            .interview-q {
                font-size: 15px;
            }

            .cta-title {
                font-size: 22px;
            }

            .cta-description {
                font-size: 15px;
            }