/* sec.css - お知らせページ専用CSS（一覧・詳細統合版） */
/* TOPページのstyle.cssを読み込んだ後に読み込むことを想定 */

/* ページタイトルセクション（元のsec.css版） */
.page-title {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 82px;
        padding: 70px 0 40px;
}

.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-title-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-title-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0px;
}

.page-title h1 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title-en {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* パンくずリスト（詳細ページ用） */
.breadcrumb {
    background: #F8F8F8;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.breadcrumb-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.breadcrumb-item:not(:last-child):after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-link {
    color: #666;
    transition: color 0.3s;
    display: inline-block;
}

.breadcrumb-link:hover {
    color: #2E7CD6;
}

.breadcrumb-item.current {
    color: #333;
    font-weight: 500;
}

/* ニュース一覧セクション */
.news-list-section {
    background: white;
    padding: 60px 0;
}

.news-list-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-list-section .news-list {
    border-top: 1px solid #DDD;
}

.news-list-section .news-item {
    padding: 30px 0;
    border-bottom: 1px solid #DDD;
    transition: background 0.3s;
}

.news-list-section .news-item:hover {
    background: #F9F9F9;
}

.news-item-link {
    display: block;
    color: inherit;
    padding:  0 20px;
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.news-list-section .news-date {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    background: #F5F5F5;
    padding: 8px 16px;
    border-radius: 8px;
}

.news-category {
    font-size: 12px;
    color: white;
    background: #333;
    padding: 6px 12px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
}

.news-category.important {
    background: #FF4444;
}

.news-category.event {
    background: #2E7CD6;
}

.news-category.general {
    background: #333;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #DDD;
    color: #333;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #FFD700;
    color: white;
    border-color: #FFD700;
}

.pagination .current {
    background: #333;
    color: white;
    border-color: #333;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
    font-size: 14px;
}

/* ニュース詳細セクション */
.news-detail-section {
    background: white;
    padding: 60px 0;
}

.news-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 記事ヘッダー */
.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F0F0F0;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.news-detail-date {
    font-size: 14px;
    color: #666;
    background: #F5F5F5;
    padding: 8px 16px;
    border-radius: 8px;
}

.news-detail-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

/* 記事本文 */
.news-detail-content {
    line-height: 1.8;
    color: #333;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.news-detail-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 15px 0;
}

/* 情報ボックス */
.info-box {
    background: #F6F9FF;
    border: 1px solid #D6E7FF;
    border-left: 4px solid #2E7CD6;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2E7CD6;
    margin: 0 0 15px 0;
    border: none;
    padding: 0;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* コンタクトボックス */
.contact-box {
    background: #FFF9E6;
    border: 1px solid #FFE6B3;
    border-left: 4px solid #FFD700;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.contact-box h4 {
    font-size: 16px;
    font-weight: bold;
    color: #B8860B;
    margin: 0 0 15px 0;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* 署名 */
.signature {
    text-align: right;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    color: #666;
    font-size: 14px;
}

/* 記事フッター */
.news-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F0F0F0;
}

.news-detail-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5F5F5;
    color: #333;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.back-to-list-btn:hover {
    background: #E0E0E0;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 14px;
    color: #666;
    margin-right: 5px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s;
    color: white;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.twitter:hover {
    background: #0D8BD9;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.facebook:hover {
    background: #0C5BBE;
}

.share-btn.line {
    background: #00B900;
}

.share-btn.line:hover {
    background: #009900;
}

/* 関連記事 */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #F0F0F0;
}

.related-news-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #FFD700;
}

.related-news-list {
    display: grid;
    gap: 20px;
}

.related-news-item {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.related-news-link {
    display: block;
    padding: 20px;
    color: inherit;
}

.related-news-date {
    font-size: 12px;
    color: #666;
    background: #F5F5F5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.related-news-title-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* ヘッダーの調整（下層ページ用） */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.header-inner {
    height: 82px;
}

.header .logo img {
    height: 82px;
    opacity: 0.9;
}

/* レスポンシブ（タブレット・スマホ） */
@media (max-width: 1024px) {
    .page-title h1 {
        font-size: 30px;
    }

    .page-title-en {
        font-size: 20px;
    }

    .page-title-inner {
        padding: 20px 20px;
    }

    .breadcrumb-container {
        padding: 0 20px;
    }

    .news-list-container,
    .news-detail-container {
        padding: 0 20px;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-meta,
    .news-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-detail-actions {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .share-buttons {
        justify-content: center;
    }

    .info-box,
    .contact-box {
        padding: 20px;
        margin: 20px 0;
    }

    .breadcrumb-list {
        gap: 5px;
    }

    .breadcrumb-item:not(:last-child):after {
        margin-left: 5px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        width: 35px;
        height: 35px;
    }
}

/*service*/

/* サービスページ専用スタイル */
        .service-section {
            padding: 80px 0;
            background-color: #f8f8f8;
        }
        
        .service-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .service-item {
            background-color: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00B52A, #00d633);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
        
        .service-item:hover::before {
            transform: translateX(0);
        }
        
        .service-section .service-icon {
            width: 100%;
            height:  auto;            
        }
        .service-section .service-icon img{
            width: 100%;
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        
        .service-description {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
            text-align: left;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        
        .service-features li {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
            padding-left: 25px;
            position: relative;
            margin-bottom: 12px;
        }
        
        .service-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #00B52A;
            font-size: 10px;
        }
        
        .service-features li strong {
            color: #333;
            font-weight: 600;
        }
        
        /* 大きいサービスカード */
        .service-item.large {
            grid-column: span 2;
            background: linear-gradient(135deg, #fff 0%, #f0fbf2 100%);
            text-align: left;
        }
        
        @media (max-width: 768px) {
            .service-item.large {
                grid-column: span 1;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        /* CTA セクション */
        .service-cta {
            background: linear-gradient(135deg, #00B52A, #00d633);
            color: #fff;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin-top: 80px;
        }
        
        .service-cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .service-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background-color: #fff;
            color: #00B52A;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        
        .cta-button.secondary:hover {
            background-color: #fff;
            color: #00B52A;
        }
        
        /* アイコン */
        .icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    

/* company */

/* 会社概要ページ専用CSS */
        .greeting-section {
            padding: 80px 0;
            background: #F9F9F9;
        }

        .greeting-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .greeting-title {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .greeting-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #00B52A;
        }

        .greeting-content {
            font-size: 16px;
            line-height: 2;
            color: #666;
            text-align: justify;
        }

        .greeting-content p {
            margin-bottom: 25px;
        }

        .greeting-content p:last-child {
            margin-bottom: 0;
        }

        .company-description-section {
            padding: 80px 0;
            background: white;
        }

        .company-description-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .company-description-subtitle {
            font-size: 24px;
            font-weight: bold;
            color: #284D41;
            margin-bottom: 10px;
        }

        .company-description-title {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
        }

        .company-description-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 2;
            color: #666;
            text-align: justify;
        }

        .company-description-content p {
            margin-bottom: 25px;
        }

        .company-description-content p:last-child {
            margin-bottom: 0;
        }

        .company-history-section {
            padding: 80px 0;
            background: #F9F9F9;
        }

        .company-history-title {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .company-history-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #00B52A;
        }

        .company-history-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 2;
            color: #666;
            text-align: justify;
        }

        .company-history-content p {
            margin-bottom: 25px;
        }

        .company-history-content p:last-child {
            margin-bottom: 0;
        }

        .company-history-content strong {
            font-weight: 700;
            color: #333;
        }

        .company-info-section {
            padding: 80px 0;
            background: white;
        }

        .company-info-title {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }

        .company-info-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: #00B52A;
        }

        .company-info-table {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .company-info-row {
            display: grid;
            grid-template-columns: 200px 1fr;
            border-bottom: 1px solid #E0E0E0;
        }

        .company-info-row:last-child {
            border-bottom: none;
        }

        .company-info-label {
            background: #F5F5F5;
            padding: 20px 30px;
            font-weight: bold;
            color: #333;
            font-size: 16px;
            border-right: 1px solid #E0E0E0;
        }

        .company-info-value {
            padding: 20px 30px;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .greeting-section,
            .company-description-section,
            .company-history-section,
            .company-info-section {
                padding: 60px 20px;
            }

            .greeting-title,
            .company-description-title,
            .company-history-title,
            .company-info-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .company-description-subtitle {
                font-size: 20px;
            }

            .greeting-content,
            .company-description-content,
            .company-history-content {
                font-size: 15px;
                line-height: 1.8;
            }

            .company-info-row {
                grid-template-columns: 1fr;
            }

            .company-info-label {
                border-right: none;
                border-bottom: 1px solid #E0E0E0;
                padding: 15px 20px;
            }

            .company-info-value {
                padding: 15px 20px;
            }
        }

/* about */
 .privacy-section {
            padding: 80px 0;
        }
        
        .privacy-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .privacy-intro {
            margin-bottom: 60px;
            padding: 40px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .privacy-intro p {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }
        
        .privacy-intro p:last-child {
            margin-bottom: 0;
        }
        
        .privacy-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .privacy-section-title {
            font-size: 20px;
            font-weight: 700;
            color: #E60033;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E60033;
        }
        
        .privacy-subsection {
            margin-bottom: 40px;
        }
        
        .privacy-subsection:last-child {
            margin-bottom: 0;
        }
        
        .privacy-subsection h3 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .privacy-subsection p,
        .privacy-subsection li {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
        }
        
        .privacy-subsection ul,
        .privacy-subsection ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .privacy-subsection li {
            margin-bottom: 8px;
        }
        
        .privacy-contact {
            background-color: #f8f8f8;
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .privacy-contact p {
            font-size: 15px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 5px;
        }
        
        .privacy-date {
            text-align: right;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            color: #666;
            font-size: 14px;
        }
        
        /* パンくずリスト */
        .breadcrumb {
            padding: 20px 0;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumb-list {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item {
            font-size: 14px;
        }
        
        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: #E60033;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb-item:last-child {
            color: #333;
            font-weight: 500;
        }

/* 採用情報ページ専用スタイル */
        .recruit-container{
            box-shadow: none;
        }

        .recruit-section {
            padding: 80px 0;
            background: #fff;
        }

        .recruit-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .recruit-intro {
            margin-bottom: 80px;
            text-align: center;
        }
        
        .recruit-intro-highlight {
            font-size: 28px;
            font-weight: 700;
            color: #2C7A2C;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .recruit-intro-text {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            text-align: left;
        }

        .recruit-title {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 50px;
            position: relative;
            text-align: center;
        }

        .recruit-title span {
            color: #2C7A2C;
        }
        
        .recruit-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #2C7A2C;
        }

        /* 求める人物像セクション */
        .recruit-persona {
            margin-bottom: 100px;
            background: #f8f9fa;
            padding: 60px;
            border-radius: 10px;
        }
        
        .persona-intro {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .persona-intro strong {
            color: #2C7A2C;
            font-weight: 700;
        }
        
        .persona-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }
        
        .persona-type {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .persona-type:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 183, 42, 0.1);
        }
        
        .persona-number {
            display: inline-block;
            background: #2C7A2C;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .persona-type-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }
        
        .persona-description {
            margin-bottom: 20px;
        }
        
        .persona-description h4 {
            font-size: 18px;
            font-weight: 600;
            color: #2C7A2C;
            margin-bottom: 10px;
        }
        
        .persona-description p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        /* 働く魅力セクション */
        .recruit-appeal {
            margin-bottom: 100px;
        }

        .appeal-list {
            list-style: none;
            padding: 0;
            counter-reset: appeal-counter;
        }
        
        .appeal-item {
            background: #f8f9fa;
            padding: 30px 40px;
            margin-bottom: 20px;
            border-radius: 10px;
            position: relative;
            padding-left: 80px;
            counter-increment: appeal-counter;
            transition: background 0.3s;
        }
        
        .appeal-item:hover {
            background: #f0fbf2;
        }
        
        .appeal-item::before {
            content: counter(appeal-counter);
            position: absolute;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #2C7A2C;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }
        
        .appeal-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .appeal-item p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        /* 募集職種 */
        .recruit-positions {
            margin-bottom: 80px;
        }

        .position-list {
            list-style: none;
            padding: 0;
        }

        .position-item {
            background: white;
            border: 2px solid #2C7A2C;
            border-radius: 10px;
            padding: 0;
            margin-bottom: 30px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .position-item:hover {
            box-shadow: 0 10px 30px rgba(0, 183, 42, 0.1);
        }
        
        .position-item-link {
            display: block;
            padding: 40px;
            text-decoration: none;
            color: inherit;
        }
        
        .position-item-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .position-type-badge {
            background: #2C7A2C;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .position-title {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            transition: color 0.3s;
        }
        
        .position-item:hover .position-title {
            color: #2C7A2C;
        }

        .position-content {
            margin-bottom: 20px;
        }
        
        .position-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #2C7A2C;
            margin-bottom: 10px;
        }
        
        .position-content p,
        .position-content ul {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }
        
        .position-content ul {
            list-style: disc;
            padding-left: 20px;
        }
        
        .position-content ul li {
            margin-bottom: 5px;
        }
        
        .position-salary {
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: 5px;
            margin-top: 20px;
        }
        
        .position-salary strong {
            color: #333;
        }

        /* 応募方法・福利厚生セクション */
        .recruit-info {
            background: #f8f9fa;
            padding: 60px;
            border-radius: 10px;
            margin-bottom: 80px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .info-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
        }
        
        .info-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: #2C7A2C;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2C7A2C;
        }
        
        .info-item p,
        .info-item ul {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }
        
        .info-item ul {
            list-style: none;
            padding: 0;
        }
        
        .info-item ul li {
            padding-left: 20px;
            position: relative;
            margin-bottom: 10px;
        }
        
        .info-item ul li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #2C7A2C;
            font-size: 10px;
        }

        /* お問い合わせCTA */
        .recruit-cta {
            text-align: center;
            background: linear-gradient(135deg, #2C7A2C, #00d633);
            padding: 60px;
            border-radius: 10px;
            color: white;
        }
        
        .recruit-cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .recruit-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background-color: #fff;
            color: #2C7A2C;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .recruit-title {
                font-size: 28px;
            }
            
            .recruit-intro-highlight {
                font-size: 22px;
            }

            .persona-types {
                grid-template-columns: 1fr;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .position-item-header {
                flex-wrap: wrap;
            }
        }

 /* お問い合わせフォーム専用CSS */
        .form-section {
            padding: 80px 0 0 0;
        }

        .form-container {
            max-width: 1100px;
            margin: 0 auto 100px auto;
            background: white;
            border-radius: 12px;
            padding: 60px;
        }

        .form-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }

        .form-description {
            text-align: center;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 50px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-weight: bold;
            color: #333;
            font-size: 16px;
        }

        .form-label .required {
            display: inline-block;
            background: #FF3B3B;
            color: white;
            font-size: 12px;
            padding: 2px 8px;
            margin-left: 10px;
            border-radius: 4px;
            font-weight: normal;
        }

        .form-label .optional {
            display: inline-block;
            background: #999;
            color: white;
            font-size: 12px;
            padding: 2px 8px;
            margin-left: 10px;
            border-radius: 4px;
            font-weight: normal;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            font-size: 16px;
            font-family: 'Noto Sans JP', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-radio-group {
            display: flex;
            gap: 30px;
            margin-top: 10px;
        }

        .form-radio-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
            color: #333;
        }

        .form-radio-label input[type="radio"] {
            margin-right: 8px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .form-note {
            background: #FFF9E6;
            border: 1px solid #FFD700;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .form-privacy {
            background: #F5F5F5;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .form-privacy-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .form-privacy-text {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .form-privacy-link {
            color: #284D41;
            text-decoration: none;
            font-weight: bold;
            transition: opacity 0.3s ease;
        }

        .form-privacy-link:hover {
            opacity: 0.7;
        }

        .form-checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 16px;
            color: #333;
        }

        .form-checkbox-label input[type="checkbox"] {
            margin-right: 10px;
            margin-top: 3px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .form-submit-wrapper {
            text-align: center;
            margin-top: 50px;
        }

        .form-submit {
            background: #284D41;
            color: white;
            border: none;
            padding: 20px 80px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 77, 65, 0.3);
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 77, 65, 0.4);
        }

        .form-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
            box-shadow: none;
        }

        .form-submit:disabled:hover {
            transform: none;
        }

        /* エラーメッセージ */
        .error-message {
            color: #FF3B3B;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .form-input,
        .form-group.error .form-select,
        .form-group.error .form-textarea {
            border-color: #FF3B3B;
        }

        .form-group.error .error-message {
            display: block;
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .form-section {
                padding: 60px 20px;
            }

            .form-container {
                padding: 40px 20px;
                border-radius: 8px;
            }

            .form-title {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .form-description {
                font-size: 15px;
                margin-bottom: 40px;
            }

            .form-label {
                font-size: 15px;
            }

            .form-input,
            .form-select,
            .form-textarea {
                font-size: 15px;
                padding: 12px 15px;
            }

            .form-radio-group {
                flex-direction: column;
                gap: 15px;
            }

            .form-submit {
                padding: 18px 60px;
                font-size: 16px;
            }

            .form-privacy {
                padding: 20px;
            }

            .form-privacy-title {
                font-size: 16px;
            }
        }

                /* メンバー紹介セクション */
        .members-section {
            padding: 80px 0;
            background-color: #f8f8f8;
        }
        
        .members-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* イントロダクション */
        .members-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .members-intro h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }
        
        .members-intro p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* 対談リンクボタン */
        .meeting-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background-color: #00B52A;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 181, 42, 0.3);
        }
        
        .meeting-link:hover {
            background-color: #009624;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 181, 42, 0.4);
        }
        
        .meeting-link::after {
            content: ">";
            font-weight: 700;
            font-size: 18px;
        }
        
        /* メンバーグリッド */
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        /* メンバーカード */
        .member-card {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .member-photo {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: #ccc;
            position: relative;
            overflow: hidden;
        }
        .member-photo img{
            height: 100%;
        }

        
        .member-info {
            padding: 30px;
        }
        
        .member-name {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .member-reading {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
        }
        
        .member-position {
            font-size: 16px;
            font-weight: 500;
            color: #009624;
            margin-bottom: 20px;
        }
        
        .member-details {
            border-top: 1px solid #eee;
            padding-top: 20px;
            margin-bottom: 20px;
        }
        
        .member-detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .member-detail-label {
            flex-shrink: 0;
            width: 80px;
            font-weight: 500;
            color: #666;
        }
        
        .member-detail-value {
            flex: 1;
            color: #333;
            line-height: 1.6;
        }
        
        .member-message {
            background-color: #f8f8f8;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .member-message-label {
            font-size: 12px;
            font-weight: 700;
            color: #009624;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .member-message-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
        }
        
        /* 代表取締役の特別スタイル */
        .member-card.ceo {
            grid-column: span 1;
        }
        

        
        .member-card.ceo .member-position {
            font-size: 18px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .members-section {
                padding: 60px 0;
            }
            
            .members-intro h2 {
                font-size: 28px;
            }
            
            .members-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .member-card.ceo {
                grid-column: 1;
            }
            
            .meeting-link {
                padding: 12px 30px;
                font-size: 15px;
            }
        }
        
        /* アニメーション */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .member-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .member-card:nth-child(1) { animation-delay: 0.1s; }
        .member-card:nth-child(2) { animation-delay: 0.2s; }
        .member-card:nth-child(3) { animation-delay: 0.3s; }
        .member-card:nth-child(4) { animation-delay: 0.4s; }
        .member-card:nth-child(5) { animation-delay: 0.5s; }

        /* 対談セクション */
        .meeting-section {
            padding: 80px 0;
            background-color: #f8f8f8;
        }
        
        .meeting-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ヘッダー部分 */
        .meeting-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .meeting-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .meeting-subtitle {
            font-size: 20px;
            font-weight: 500;
            color: #00B52A;
            margin-bottom: 30px;
        }
        
        .meeting-lead {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* メンバー紹介カード */
        .meeting-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .member-intro-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .member-intro-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00B52A 0%, #00E635 100%);
        }
        
        .member-photo-placeholder {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #ccc;
            overflow: hidden;
        }
        .member-photo-placeholder img{
            height: 100%;
        }
        .member-name {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .member-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            text-align: left;
        }
        
        /* 対談コンテンツ */
        .meeting-content {
            background-color: #fff;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* 対談の各セクション */
        .dialogue-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #eee;
        }
        
        .dialogue-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        
        /* 発言者のスタイル */
        .speaker {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .speaker-label {
            flex-shrink: 0;
            font-weight: 700;
            margin-right: 15px;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-top: 2px;
        }
        
        .speaker-label.mc {
            background-color: #333;
            color: #fff;
        }
        
        .speaker-label.member-a {
            background-color: #00B52A;
            color: #fff;
        }
        
        .speaker-label.member-b {
            background-color: #0080ff;
            color: #fff;
        }
        
        .speaker-text {
            flex: 1;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        
        /* トピックタイトル */
        .topic-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #00B52A;
            color: #fff;
            border-radius: 50%;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        /* メンバー一覧への戻るリンク */
        .back-to-members {
            text-align: center;
            margin-top: 60px;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background-color: transparent;
            color: #00B52A;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            border: 2px solid #00B52A;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .back-link:hover {
            background-color: #00B52A;
            color: #fff;
        }
        
        .back-link::before {
            content: "←";
            font-weight: 700;
            font-size: 18px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .meeting-section {
                padding: 60px 0;
            }
            
            .meeting-title {
                font-size: 24px;
            }
            
            .meeting-subtitle {
                font-size: 18px;
            }
            
            .meeting-content {
                padding: 30px 20px;
            }
            
            .speaker {
                display: block;
            }
            
            .speaker-label {
                display: inline-block;
                margin-bottom: 10px;
            }
            
            .member-intro-card {
                padding: 25px;
            }
        }
        
        /* アニメーション */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .meeting-header,
        .meeting-members,
        .meeting-content {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .meeting-members {
            animation-delay: 0.2s;
        }
        
        .meeting-content {
            animation-delay: 0.4s;
        }

         /* 施工事例詳細ページ専用スタイル */
        .work-detail-section {
            padding: 80px 0;
            background: #fff;
        }
        
        .work-detail-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* メインビジュアル */
        .work-detail-visual {
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .work-detail-visual img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: cover;
            display: block;
        }
        
        /* カテゴリバッジ */
        .work-category-badge {
            display: inline-block;
            background: #00B52A;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        /* タイトル部分 */
        .work-detail-header {
            margin-bottom: 50px;
        }
        
        .work-detail-title {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            line-height: 1.5;
            margin-bottom: 30px;
        }
        
        /* 概要セクション */
        .work-overview {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 60px;
        }
        
        .work-overview-title {
            font-size: 24px;
            font-weight: 700;
            color: #00B52A;
            margin-bottom: 20px;
        }
        
        .work-overview-text {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
        }
        
        /* 詳細情報テーブル */
        .work-info-table {
            background: white;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .work-info-row {
            display: flex;
            border-bottom: 1px solid #eee;
        }
        
        .work-info-row:last-child {
            border-bottom: none;
        }
        
        .work-info-label {
            width: 200px;
            padding: 20px 30px;
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
            border-right: 1px solid #eee;
            flex-shrink: 0;
        }
        
        .work-info-value {
            flex: 1;
            padding: 20px 30px;
            color: #555;
            line-height: 1.8;
        }
        
        /* ポイントセクション */
        .work-points {
            margin-bottom: 60px;
        }
        
        .work-section-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }
        
        .work-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #00B52A;
        }
        
        .work-points-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .work-point-item {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            padding-left: 60px;
        }
        
        .work-point-number {
            position: absolute;
            left: 20px;
            top: 30px;
            width: 30px;
            height: 30px;
            background: #00B52A;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }
        
        .work-point-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .work-point-text {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
        }
        
        /* お客様の声 */
        .work-testimonial {
            background: linear-gradient(135deg, #00B52A, #00d633);
            color: white;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .work-testimonial::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 150px;
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .work-testimonial-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .work-testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* ギャラリー */
        .work-gallery {
            margin-bottom: 60px;
        }
        
        .work-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .work-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .work-gallery-item:hover {
            transform: scale(1.05);
        }
        
        .work-gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        /* CTAセクション */
        .work-cta {
            text-align: center;
            padding: 60px 40px;
            background: #f8f9fa;
            border-radius: 10px;
            margin-bottom: 60px;
        }
        
        .work-cta-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }
        
        .work-cta-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }
        
        .work-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .work-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #00B52A;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .work-cta-button:hover {
            background: #00a025;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,183,42,0.3);
        }
        
        .work-cta-button.secondary {
            background: white;
            color: #00B52A;
            border: 2px solid #00B52A;
        }
        
        .work-cta-button.secondary:hover {
            background: #00B52A;
            color: white;
        }
        
        /* 関連事例 */
        .related-works {
            margin-bottom: 80px;
        }
        
        .related-works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-work-item {
            background: white;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
        }
        
        .related-work-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .related-work-thumbnail {
            height: 180px;
            overflow: hidden;
        }
        
        .related-work-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .related-work-item:hover .related-work-thumbnail img {
            transform: scale(1.1);
        }
        
        .related-work-content {
            padding: 20px;
        }
        
        .related-work-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .related-work-item:hover .related-work-title {
            color: #00B52A;
        }
        
        /* パンくずリスト */
        .breadcrumb {
            padding: 20px 0;
            background-color: #f8f8f8;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumb-list {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        
        .breadcrumb-item {
            font-size: 14px;
        }
        
        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: #00B52A;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb-item:last-child {
            color: #333;
            font-weight: 500;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .work-detail-title {
                font-size: 28px;
            }
            
            .work-info-row {
                flex-direction: column;
            }
            
            .work-info-label {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #eee;
                background: #00B52A;
                color: white;
            }
            
            .work-points-list {
                grid-template-columns: 1fr;
            }
            
            .work-testimonial {
                padding: 30px 20px;
            }
            
            .work-gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .related-works-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 施工事例ページ専用スタイル */
        .works-section {
            padding: 80px 0;
            background: #f8f8f8;
        }
        
        .works-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 施工事例リスト */
        .works-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(530px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .works-item {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .works-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 183, 42, 0.15);
        }
        
        .works-item-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        /* サムネイル */
        .works-thumbnail {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .works-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .works-item:hover .works-thumbnail img {
            transform: scale(1.1);
        }
        
        /* カテゴリバッジ */
        .works-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #00B52A;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        /* コンテンツ部分 */
        .works-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .works-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.5;
            transition: color 0.3s;
            text-align: left;
        }
        
        .works-item:hover .works-title {
            color: #00B52A;
        }
        
        .works-excerpt {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
        }
        
        .works-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            color: #999;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .works-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .works-meta-item svg {
            width: 16px;
            height: 16px;
            fill: #999;
        }
        
        /* ページネーション */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 60px;
        }
        
        .pagination a,
        .pagination span {
            padding: 10px 15px;
            text-decoration: none;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 5px;
            transition: all 0.3s;
            font-size: 14px;
            background: #fff;
        }
        
        .pagination a:hover {
            background: #00B52A;
            color: white;
            border-color: #00B52A;
        }
        
        .pagination .current {
            background: #00B52A;
            color: white;
            border-color: #00B52A;
            font-weight: bold;
        }
        
        .pagination .prev,
        .pagination .next {
            font-weight: bold;
            padding: 10px 20px;
        }
        
        /* パンくずリスト */
        .breadcrumb {
            padding: 20px 0;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumb-list {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item {
            font-size: 14px;
        }
        
        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: #00B52A;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb-item:last-child {
            color: #333;
            font-weight: 500;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .works-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .works-thumbnail {
                height: 200px;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
            
            .pagination a,
            .pagination span {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        .news-right{
            width: 100%;
        }
        .news-right a{
            color: #000;
            border-bottom: 1px dotted #ccc;
        }