/* ========================================
   共通
======================================== */

.case-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.case-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    z-index: -1;
}

.case-hero-content {
    width: 100%;
    padding: 120px 0 0;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 8px;
    margin-bottom: 48px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    opacity: 0.6;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.meta-info {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-hero-title {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    position: relative;
}

.case-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 40px;
    font-weight: 300;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 100px;
}

.case-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-number {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.company-background {
    padding: 80px 0 100px;
    margin-bottom: 0;
}


.challenge-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.challenge-block {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.challenge-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.challenge-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.challenge-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.challenge-block h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.4;
}

.challenge-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* レゴ®リンクカード - 横並び型 */
.lego-link-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin: 60px 0;
    transition: var(--transition);
    border: 1px solid var(--box-gray-color);
}

.lego-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lego-card-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    min-height: 200px;
}

.lego-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.lego-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lego-card-text {
    padding: 40px 50px;
}

.lego-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.3;
}

.lego-card-subtitle {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.lego-card-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.lego-card-cta:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.lego-card-cta svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

/* 成果セクション - ストーリー型左右分割 */
.results-story {
    max-width: 1200px;
    margin: 0 auto;
}

.result-story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px 0;
}

.result-story-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.result-story-item:nth-child(even) .result-story-content {
    order: 2;
}

.result-story-item:nth-child(even) .result-story-visual {
    order: 1;
}

.result-story-content {
    padding: 40px 0;
}

.result-story-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.result-story-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-color);
    line-height: 1.3;
}

.result-story-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.result-story-details {
    padding: 20px 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-top: 20px;
}

.result-story-details ul {
    list-style: none;
    padding: 0;
}

.result-story-details li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.result-story-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.result-story-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.result-story-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.result-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-story-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-size: 0.9rem;
}

.background-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.background-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.background-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.session-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.session-tag {
    color: var(--text-dark);
    padding: 6px 12px;
    border: 1px solid var(--gray-color);
    border-radius: 20px;
    font-size: 0.85rem;
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.timeline-phase {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.timeline-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.gallery figcaption {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    text-align: center;
}

.voice-section {
    padding-top: 0px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    position: relative;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--box-gray-color);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4.author-role {
    margin: 0;
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

.author-info p.author-name {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: var(--text-light);
}




.guidance-section {
    padding: 80px 0;
}

.guidance-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: stretch;
}

.guidance-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guidance-link {
    display: flex;
    align-items: center;
    padding: 20px 30px;

    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.guidance-link:hover {
    background: var(--primary-light);
    transform: translateX(10px);
}

.guidance-link-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.guidance-link-text h4 {
    margin: 0 0 5px;
    font-weight: 600;
}

.guidance-link-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}


/* ========================================
   レスポンシブ
======================================== */

@media (min-width: 1024px) {
    .gallery img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .challenge-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .challenge-block {
        padding: 30px 25px;
    }

    .lego-card-content {
        grid-template-columns: 1fr;
    }

    .lego-card-image {
        height: 180px;
    }

    .lego-card-text {
        padding: 30px 25px;
    }

    .result-story-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .result-story-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .result-story-item:nth-child(even) .result-story-content,
    .result-story-item:nth-child(even) .result-story-visual {
        order: initial;
    }

    .result-story-title {
        font-size: 1.6rem;
    }

    .result-story-image {
        height: 250px;
    }
}

.guidance-section {
    padding: 80px 0;
}

.guidance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-number {
    color: var(--primary-color, #e02020);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color, #333);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light, #666);
    font-size: 1rem;
}

/* 左側 - おすすめブロック */
.enhanced-recommendation {
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid var(--box-gray-color);
    box-shadow: var(--box-shadow);
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.enhanced-recommendation,
.guidance-detail-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recommendation-icon {
    font-size: 2rem;
    color: var(--primary-color, #e02020);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.recommendation-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color, #333);
}

.recommendation-list {
    list-style: none;
    padding-left: 0;
    color: var(--text-light, #666);
    line-height: 1.8;
    font-size: 1rem;
}

.recommendation-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.recommendation-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color, #e02020);
    font-weight: bold;
}

.recommendation-list li span {
    font-weight: 600;
    color: var(--text-color, #333);
}

/* 右側 - 詳細リンクカード */
.guidance-detail-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color, #333);
}

.guidance-detail-card:hover {
    transform: translateY(-4px);
    border: 1px solid var(--primary-color, #e02020);
}

.guidance-detail-icon {
    font-size: 3rem;
    color: var(--primary-color, #e02020);
    flex-shrink: 0;
}

.guidance-detail-text h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color, #333);
}

.guidance-detail-text p {
    margin: 0 0 16px;
    color: var(--text-light, #666);
    font-size: 1rem;
    line-height: 1.6;
}

.guidance-detail-link {
    color: var(--primary-color, #e02020);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.guidance-detail-link:hover {
    color: var(--primary-dark, #c01c1c);
}

.guidance-detail-card.with-image {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color, #333);
}

.guidance-detail-card.with-image:hover {
    transform: translateY(-4px);
    border: 1px solid var(--primary-color, #e02020);
}

.guidance-detail-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 12px;
    object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .guidance-grid {
        grid-template-columns: 1fr;
    }

    .guidance-detail-card.with-image {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .guidance-detail-image img {
        width: 100%;
        max-height: 180px;
        object-fit: cover;
        border-radius: 10px;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* 全体の余白調整 */
    .section-spacious,
    .section-minimal,
    .company-background,
    .guidance-section {
        padding: 40px 20px;
    }

    /* ヒーローセクション */
    .case-hero {
        min-height: 480px;
        height: auto;
        padding-top: 80px;
        background-position: center center;
    }

    .case-hero-content {
        padding: 40px 20px;
    }

    .case-hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .case-hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .meta-info {
        font-size: 12px;
        flex-direction: column;
        gap: 6px;
    }

    .case-tags {
        margin-bottom: 40px;
    }

    /* 背景セクション */
    .background-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .background-text {
        text-align: left;
    }

    .background-stats {
        grid-template-columns: 1fr;
    }

    /* チャレンジブロック */
    .challenge-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .challenge-block {
        padding: 24px;
    }

    /* レゴリンクカード */
    .lego-card-content {
        grid-template-columns: 1fr;
    }

    .lego-card-image {
        height: 180px;
    }

    .lego-card-text {
        padding: 24px;
    }

    /* 成果セクション */
    .result-story-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-story-title {
        font-size: 1.4rem;
    }

    .result-story-description {
        font-size: 1rem;
    }

    .result-story-image {
        height: 200px;
    }

    /* タイムライン */
    .timeline-item-enhanced {
        margin-bottom: 40px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .timeline-description {
        font-size: 0.95rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    /* 参加者の声 */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* レゴ導入検討セクション */
    .guidance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guidance-detail-card.with-image {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .guidance-detail-text h3 {
        font-size: 1.2rem;
    }
}


/* ========================================
   中期経営計画策定事例ページ専用CSS
======================================== */

/* client-info-containerのレイアウト */
.client-info-container {
    display: grid;
    /* デスクトップでは2カラム (左を広く、右を会社情報カードとして使う) */
    grid-template-columns: 3fr 2fr;
    gap: 40px; /* カラム間のスペース */
    align-items: start; /* 上端を揃える */
    margin-top: 40px;
}

/* クライアント詳細 (左側) */
.client-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* クライアント概要セクション */
.client-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.client-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.overview-visual {
    position: relative;
}

.company-background {
    padding: 80px 0 100px;
    margin-bottom: 0;
}

.background-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    /* 左右バランス調整 */
    gap: 60px;
    align-items: center;
}

.background-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
}

.background-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.client-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-info-item {
    display: flex;
    flex-direction: column;
}

.client-info-item .info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-info-item .info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

/* プロセスフロー */
.process-flow {
    margin: 60px 0;
    text-align: center;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.process-image {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.process-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
}

.process-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* 支援内容詳細 */
.support-details {
    margin: 80px 0;
}

.support-detail-item {
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.support-phase {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-detail-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.support-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.support-actions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.support-actions li {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.support-actions li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Before/After比較 */
.before-after {
    margin: 60px 0;
    text-align: center;
}

.before-after-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}


.before-after-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* 成果セクション */
.results-content {
    margin: 60px 0;
}

.results-section {
    margin-bottom: 60px;
}

.results-category {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.results-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 3px;
}

.results-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.result-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.result-item.quantitative {
    border-top: 4px solid #28a745;
}

.result-item.qualitative {
    border-top: 4px solid var(--primary-color);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.result-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.result-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.result-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 10px 20px;
    background: var(--primary-light);
    border-radius: 8px;
    display: inline-block;
}

.result-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}


.key-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.key-point h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.key-point p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}


@media (max-width: 768px) {

    .client-overview{
        padding: 40px 0;
    }

    .process-image,
    .before-after-image {
        padding: 20px;
    }

    .support-detail-item {
        padding: 25px;
    }

    .support-actions {
        grid-template-columns: 1fr;
    }

    .results-items {
        grid-template-columns: 1fr;
    }

    .key-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .overview-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .client-info-grid {
        padding: 20px;
    }

    .process-title,
    .before-after-title {
        font-size: 1.3rem;
    }

    .results-category {
        font-size: 1.5rem;
    }

    .summary-main h3 {
        font-size: 1.5rem;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .background-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .client-info-card {
        padding: 30px 20px;
    }

    .background-text h3 {
        font-size: 1.5rem;
    }
}


/* 会社情報 (右側) - クリーンなカードデザインに修正 */
.company-data {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* わずかな影で浮き上がらせる */
    border: 1px solid var(--box-gray-color-hover);
}

.company-data-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var();
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color); /* 区切り線 */
}

.data-item {
    display: flex;
    justify-content: space-between; /* ラベルと値を左右に配置 */
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-color); /* 点線で区切ってクリーンに */
}

.data-item:last-child {
    border-bottom: none; /* 最後の項目は区切り線を非表示 */
}

.data-label {
    font-weight: 500;
    color: var(--text-light, #666); /* ラベルは少し薄めの色 */
    font-size: 0.95rem;
}

.data-value {
    font-weight: 700;
    color: var(--text-color, #333);
    font-size: 1rem;
    text-align: right;
}

/* レスポンシブ対応 (768px以下で縦並びにする) */
@media (max-width: 992px) {
    .client-info-container {
        /* タブレットサイズではカラム比率を均等に */
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .client-info-container {
        /* スマホサイズでは縦に積み重ねる */
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .company-data {
        padding: 25px;
    }

    .company-data-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
}