/* sec.css - お知らせページ専用CSS（一覧・詳細統合版） */
/* TOPページのstyle.cssを読み込んだ後に読み込むことを想定 */

/* ページタイトルセクション（元のsec.css版） */
.page-title {
    position: relative;
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 82px;
}

.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: 80px;
}

.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;
}

.breadcrumb-link:hover {
    color: #2E7CD6;
}

.breadcrumb-item.current {
    color: #333;
    font-weight: 500;
}

.news-content{
    display: block;
}
.news-content .inner{
    margin: 2em 0;
}
/* ニュース一覧セクション */
.news-list-section {
    background: white;
    padding: 60px 0;
}

.news-list-container {
    width: 100%;
    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;
}
.logo a{
    width: 82px;
    height: 82px;
}
/* レスポンシブ（タブレット・スマホ） */
@media (max-width: 1024px) {
    .header .header-inner{
        height: 60px;
    }
    .logo a{
        width: 60px;
        height: 60px;
    }
    .page-title{
        margin-top: 60px;
    }
    .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;
    }
}


/* 会社概要ページ専用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: #FFD700;
        }

        .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: #FFD700;
        }

        .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: #FFD700;
        }

        .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;
            }
        }

        /* お問い合わせフォーム専用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;
            }
        }

        /* 対談詳細ページ専用CSS */
        .dialogue-detail-hero {
            background: linear-gradient(135deg, #2E7CD6 0%, #5A9FE8 100%);
            padding: 80px 0;
            margin-top: 82px;
        }

        .dialogue-detail-hero-inner {
            text-align: center;
            color: #fff;
        }

        .dialogue-detail-hero h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.4;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* メインコンテンツ */
        .dialogue-main {
            padding: 80px 0;
            background: #fff;
        }

        .dialogue-main-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        /* イントロセクション */
        .dialogue-intro {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 50px;
        }

        .dialogue-intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .dialogue-intro-text strong {
            background: linear-gradient(transparent 70%, #FFD700 30%);
            font-weight: bold;
        }

        /* メンバー紹介 */
        .dialogue-members {
            margin-bottom: 30px;
        }

        .dialogue-members h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            font-weight: bold;
        }

        .dialogue-member-profile {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }

        .dialogue-member-profile::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #2E7CD6;
        }

        .dialogue-member-profile strong {
            color: #2E7CD6;
            font-weight: bold;
        }

        /* 写真プレースホルダー */
        .dialogue-photo {
            border-radius: 12px;
            margin: 50px 0;
            font-size: 16px;
        }

        /* 対談セクション */
        .dialogue-conversation {
            background: #fff;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .dialogue-divider {
            text-align: center;
            margin: 50px 0;
            font-size: 18px;
            color: #ccc;
            position: relative;
        }

        .dialogue-divider::before,
        .dialogue-divider::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 35%;
            height: 1px;
            background: #e0e0e0;
        }

        .dialogue-divider::before {
            left: 0;
        }

        .dialogue-divider::after {
            right: 0;
        }

        .dialogue-question {
            font-weight: bold;
            color: #2E7CD6;
            margin-bottom: 30px;
            font-size: 18px;
            padding-left: 30px;
            position: relative;
        }

        .dialogue-question::before {
            content: "Q";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 20px;
            font-weight: 900;
        }

        .dialogue-answer {
            margin-bottom: 30px;
            line-height: 1.8;
            padding-left: 30px;
            position: relative;
        }

        .dialogue-answer::before {
            content: "A";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 20px;
            font-weight: 900;
            color: #FFD700;
        }

        .dialogue-answer strong {
            color: #333;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        .dialogue-emphasis {
            background: linear-gradient(transparent 70%, #FFD700 30%);
            font-weight: bold;
        }

        /* バックリンク */
        .back-link-section {
            text-align: center;
            padding: 60px 0;
        }

        .back-link {
            display: inline-block;
            background-color: #f5f5f5;
            color: #333;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid #e0e0e0;
        }

        .back-link:hover {
            background-color: #e0e0e0;
            transform: translateY(-2px);
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .dialogue-detail-hero h1 {
                font-size: 36px;
            }

            .dialogue-intro {
                padding: 30px;
            }

            .dialogue-conversation {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .dialogue-detail-hero {
                padding: 60px 0;
            }

            .dialogue-detail-hero h1 {
                font-size: 28px;
            }

            .dialogue-main {
                padding: 60px 0;
            }

            .dialogue-intro {
                padding: 20px;
                margin-bottom: 30px;
            }

            .dialogue-conversation {
                padding: 20px;
            }

            .dialogue-question {
                font-size: 16px;
            }

            .dialogue-divider {
                margin: 30px 0;
            }
        }

         /* メンバーページ専用CSS */
        .members-hero {
            background: linear-gradient(135deg, #2E7CD6 0%, #5A9FE8 100%);
            padding: 80px 0;
            margin-top: 82px;
        }

        .members-hero-inner {
            text-align: center;
            color: #fff;
        }

        .members-hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .members-hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        /* イントロセクション */
        .intro-section {
            padding: 80px 0 40px;
            background: #fff;
        }

        .intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            max-width: 1100px;
            margin: 0 auto 40px;
        }

        /* 従業員対談セクション */
        .dialogue-highlight {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            padding: 60px 0;
            margin-bottom: 80px;
        }

        .dialogue-content-wrapper {
            background: #fff;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            margin: 0 auto;
        }

        .dialogue-title {
            font-size: 32px;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }

        .dialogue-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }

        .dialogue-link {
            display: inline-block;
            background-color: #2E7CD6;
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            text-align: center;
            margin: 0 auto;
            display: block;
            width: fit-content;
        }

        .dialogue-link:hover {
            background-color: #1E5CA6;
            transform: translateY(-2px);
        }

        /* メンバーグリッド */
        .members-section {
            padding: 0 0 80px 0;
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }

        .member-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .member-photos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            height: 450px;
        }

        .member-photo {
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
            overflow: hidden;
        }

        .member-photo:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            padding: 35px;
        }

        .member-name {
            font-size: 24px;
            color: #333;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .member-position {
            display: inline-block;
            background: #2E7CD6;
            color: #fff;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
            margin-right: 1em;
        }

        .member-role {
            font-size: 15px;
            color: #666;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
        }

        .member-qualifications {
            font-size: 14px;
            color: #888;
            margin-bottom: 20px;
        }

        .member-qualifications span {
            font-weight: bold;
            color: #666;
        }

        .member-message {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .members-hero h1 {
                font-size: 36px;
            }

            .dialogue-content-wrapper {
                padding: 30px;
            }

            .dialogue-title {
                font-size: 28px;
            }

            .members-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .member-info {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .members-hero {
                padding: 60px 0;
            }

            .members-hero h1 {
                font-size: 28px;
            }

            .intro-section {
                padding: 60px 0 30px;
            }

            .dialogue-highlight {
                padding: 40px 0;
                margin-bottom: 60px;
            }

            .dialogue-content-wrapper {
                padding: 20px;
            }

            .dialogue-title {
                font-size: 24px;
            }

            .member-photos {
                height: 200px;
            }
        }

.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-detail-section {
            padding: 80px 0;
            background: #f8f8f8;
        }
        
        .recruit-detail-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* メインビジュアル */
        .recruit-detail-visual {
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: linear-gradient(135deg, #008BD5, #00d633);
            padding: 80px 40px;
            color: white;
            text-align: center;
        }
        
        .recruit-detail-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        /* 職種バッジ */
        .job-type-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        /* タイトル部分 */
        .recruit-detail-header {
            position: relative;
            z-index: 1;
        }
        
        .recruit-detail-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .recruit-detail-subtitle {
            font-size: 18px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        /* 仕事内容セクション */
        .job-content {
            background: white;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #008bd5;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-icon {
            width: 40px;
            height: 40px;
            background: #008bd5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .job-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        .job-tasks {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .job-tasks-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }
        
        .job-tasks-list {
            list-style: none;
            padding: 0;
        }
        
        .job-tasks-list li {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            padding-left: 30px;
            position: relative;
            margin-bottom: 15px;
        }
        
        .job-tasks-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #008bd5;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* 1日の流れ */
        .daily-schedule {
            margin-top: 40px;
        }
        
        .schedule-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }
        
        .schedule-timeline {
            position: relative;
            padding-left: 40px;
        }
        
        .schedule-timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: #008bd5;
        }
        
        .schedule-item {
            position: relative;
            margin-bottom: 25px;
            padding-left: 30px;
        }
        
        .schedule-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #008bd5;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 2px #008bd5;
        }
        
        .schedule-time {
            font-weight: 600;
            color: #008bd5;
            margin-bottom: 5px;
        }
        
        .schedule-content {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }
        
        /* 応募要項 */
        .requirements {
            background: white;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .requirements-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .requirements-table tr {
            border-bottom: 1px solid #eee;
        }
        
        .requirements-table tr:last-child {
            border-bottom: none;
        }
        
        .requirements-table th {
            width: 180px;
            padding: 20px 20px 20px 0;
            font-weight: 600;
            color: #333;
            vertical-align: top;
            text-align: left;
        }
        
        .requirements-table td {
            padding: 20px 0;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        /* 求める人材 */
        .ideal-candidate {
            background: #f0fbf2;
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 40px;
            border: 2px solid #008bd5;
        }
        
        .ideal-candidate-title {
            font-size: 24px;
            font-weight: 700;
            color: #008bd5;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .ideal-candidate-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .ideal-candidate-list li {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            padding-left: 30px;
            position: relative;
        }
        
        .ideal-candidate-list li::before {
            content: '◎';
            position: absolute;
            left: 0;
            color: #008bd5;
            font-weight: bold;
            font-size: 20px;
        }
        
        /* メッセージ */
        .message-section {
            background: white;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .message-section::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 150px;
            color: #008bd5;
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .message-content {
            position: relative;
            z-index: 1;
        }
        
        .message-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }
        
        .message-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        .message-author {
            text-align: right;
            margin-top: 20px;
            font-weight: 600;
            color: #333;
        }
        
        /* 応募ボタン */
        .apply-section {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #008bd5, #00d633);
            border-radius: 10px;
            color: white;
            margin-bottom: 40px;
        }
        
        .apply-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .apply-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .apply-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .apply-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: white;
            color: #008bd5;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .apply-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .apply-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .apply-button.secondary:hover {
            background: white;
            color: #008bd5;
        }
        
        /* 関連求人 */
        .related-jobs {
            margin-bottom: 80px;
        }
        
        .related-jobs-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .related-jobs-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #008bd5;
        }
        
        .related-jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-job-item {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            border: 2px solid transparent;
        }
        
        .related-job-item:hover {
            border-color: #008bd5;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .related-job-badge {
            display: inline-block;
            background: #008bd5;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .related-job-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .related-job-item:hover .related-job-title {
            color: #008bd5;
        }
        
        .related-job-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }
        
        /* パンくずリスト */
        .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;
            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: #008bd5;
        }
        
        .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) {
            .recruit-detail-title {
                font-size: 28px;
            }
            
            .job-content,
            .requirements,
            .message-section {
                padding: 30px 20px;
            }
            
            .ideal-candidate-list {
                grid-template-columns: 1fr;
            }
            
            .requirements-table th {
                width: 120px;
            }
            
            .related-jobs-grid {
                grid-template-columns: 1fr;
            }
        }
        /* 採用情報ページ専用スタイル */
        .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-text {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            text-align: left;
        }

        .recruit-title {
            font-family: 'Roboto', sans-serif;
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 50px;
            position: relative;
            text-align: center;
        }

        .recruit-title span {
            color: #036eb7;
        }

        /* 第一防災で働く魅力セクション */
        .recruit-appeal {
            margin-bottom: 100px;
        }

        .appeal-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .appeal-item {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .appeal-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(3, 110, 183, 0.1);
        }

        .appeal-icon {
            width: 60px;
            height: 60px;
            background: #036eb7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 30px;
            margin: 0 auto 20px auto;
        }

        .appeal-subtitle {
            font-size: 22px;
            font-weight: bold;
            color: #036eb7;
            margin-bottom: 15px;
        }

        .appeal-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            text-align: left;
        }

        .appeal-highlight {
            background: linear-gradient(to right, #036eb7, #0582ca);
            color: white;
            padding: 60px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }

        .appeal-highlight h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .appeal-highlight p {
            font-size: 18px;
            line-height: 1.8;
        }

        /* 求める人物像 */
        .recruit-persona {
            margin-bottom: 80px;
            background: #f8f9fa;
            padding: 60px;
            border-radius: 10px;
        }

        .persona-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .persona-list li {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            padding-left: 30px;
            position: relative;
            margin-bottom: 10px;
            text-align: left;
        }

        .persona-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #036eb7;
            font-weight: bold;
            font-size: 20px;
        }

        /* 募集職種 */
        .recruit-positions {
            margin-bottom: 80px;
        }

        .position-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .position-item {
            background: white;
            border: 2px solid #036eb7;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s;
            height: 100%;
            margin-bottom: 20px;
        }

        .position-item:hover {
            border-color: #036eb7;
            box-shadow: 0 10px 30px rgba(3, 110, 183, 0.1);
        }

        .position-number {
            display: inline-block;
            background: #036eb7;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .position-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .position-description {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
        }

        .position-list-container{
            text-align: left;
        }
        /* 待遇・福利厚生 */
        .benefits-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .benefits-table th,
        .benefits-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .benefits-table th {
            width: 25%;
            background: #036eb7;
            color: white;
            font-weight: bold;
            vertical-align: top;
        }

        .benefits-table td {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        .benefits-table tr:last-child th,
        .benefits-table tr:last-child td {
            border-bottom: none;
        }

        /* 選考プロセス */
        .process-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .process-item {
            padding: 15px 40px;
            background: #036eb7;
            color: #fff;
            font-weight: bold;
            border-radius: 30px;
            margin: 10px 5px;
            position: relative;
        }

        .process-arrow {
            font-size: 24px;
            color: #036eb7;
            margin: 0 10px;
        }

        .process-note {
            text-align: center;
            font-size: 14px;
            color: #666;
        }

        /* 採用関連ニュース */
        .recruit-news {
            margin-bottom: 80px;
        }

        .recruit-news-container {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
        }

        .recruit-news-list {
            border-top: 1px solid #ddd;
        }

        .recruit-news-item {
            border-bottom: 1px solid #ddd;
            transition: background 0.3s;
        }

        .recruit-news-item:hover {
            background: rgba(3, 110, 183, 0.03);
        }

        .recruit-news-link {
            display: block;
            padding: 30px 0;
            text-decoration: none;
            color: inherit;
        }

        .recruit-news-header {
            margin-bottom: 10px;
        }

        .recruit-news-date {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }

        .recruit-news-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .recruit-news-link:hover .recruit-news-title {
            color: #036eb7;
        }

        .recruit-news-excerpt {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
        }

        /* ページネーション */
        .recruit-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .recruit-pagination a,
        .recruit-pagination span {
            padding: 8px 12px;
            text-decoration: none;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .recruit-pagination a:hover {
            background: #036eb7;
            color: white;
            border-color: #036eb7;
        }

        .recruit-pagination .current {
            background: #036eb7;
            color: white;
            border-color: #036eb7;
            font-weight: bold;
        }

        .recruit-pagination .prev,
        .recruit-pagination .next {
            font-weight: bold;
        }

        /* お問い合わせ先 */
        .recruit-contact {
            text-align: center;
            background: #f8f9fa;
            padding: 60px;
            border-radius: 10px;
        }

        .contact-info {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
        }

        .recruit-benefits,
        .recruit-process{
            margin-bottom: 100px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .recruit-title {
                font-size: 32px;
            }

            .appeal-grid {
                grid-template-columns: 1fr;
            }

            .position-grid {
                grid-template-columns: 1fr;
            }

            .persona-list {
                grid-template-columns: 1fr;
            }

            .benefits-table th,
            .benefits-table td {
                display: block;
                width: 100%;
                padding: 15px;
            }

            .benefits-table th {
                border-bottom: none;
            }

            .benefits-table td {
                padding-bottom: 30px;
                border-bottom: 2px solid #e9ecef;
            }

            .process-flow {
                flex-direction: column;
            }

            .process-arrow {
                transform: rotate(90deg);
            }
        }

        /* サービスページ専用CSS */
        .service-hero {
            background: linear-gradient(135deg, #284D41 0%, #7E9277 100%);
            padding: 80px 0;
            margin-top: 82px;
        }

        .service-hero-inner {
            text-align: center;
            color: #fff;
        }

        .service-hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

        }

        .service-hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .service-hero-description {
            font-size: 16px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .service-section {
            padding: 80px 0;
        }

        .service-section:nth-child(even) {
            background: #F9F9F9;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .service-content.reverse {
            grid-template-columns: 400px 1fr;
        }

        .service-content.reverse .service-text {
            order: 2;
        }

        .service-content.reverse .service-image {
            order: 1;
        }

        .service-number {
            display: inline-block;
            background: #FFD700;
            color: #333;
            font-size: 24px;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .service-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .service-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .equipment-list {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }

        .equipment-category {
            margin-bottom: 25px;
        }

        .equipment-category:last-child {
            margin-bottom: 0;
        }

        .equipment-category-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            padding-left: 15px;
            border-left: 4px solid #FFD700;
        }

        .equipment-item {
            margin-bottom: 12px;
            padding-left: 20px;
        }

        .equipment-item:last-child {
            margin-bottom: 0;
        }

        .equipment-name {
            font-weight: 500;
            color: #333;
            margin-bottom: 5px;
        }

        .equipment-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .cta-section {
            background: linear-gradient(135deg, #008BD5 0%, #036EB7 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 100px;
        }

        .cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-button {
            background: #FFD700;
            color: #333;
            padding: 20px 40px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            background: #FFC000;
            transform: translateY(-2px);
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .service-hero h1 {
                font-size: 32px;
            }

            .service-content,
            .service-content.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-content.reverse .service-text,
            .service-content.reverse .service-image {
                order: unset;
            }

            .service-title {
                font-size: 28px;
            }

            .equipment-list {
                padding: 20px;
            }
        }

        /* 詳細ページ専用CSS */
        .work-detail-section {
            background: white;
            padding: 80px 0;
        }

        .work-detail-container {
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .work-detail-header {
            background: url(/wp-content/themes/daiichibousai/assets/img/top/img3.png);
            background-size: cover;
            background-position: center bottom;
            color: white;
            padding: 40px;
            text-align: center;
        }

        .work-location-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .work-detail-title {
            font-size: 28px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .work-detail-company {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .work-detail-date {
            font-size: 14px;
            opacity: 0.8;
        }

        .work-detail-content {
            padding: 40px;
        }

        .work-content h2 {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            margin: 40px 0 20px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #2E7CD6;
        }

        .work-content h2:first-child {
            margin-top: 0;
        }

        .work-content h3 {
            font-size: 18px;
            font-weight: bold;
            color: #2E7CD6;
            margin: 30px 0 15px 0;
        }

        .work-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .work-content ul,
        .work-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .work-content li {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 8px;
        }

        .work-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
        }

        .work-content th,
        .work-content td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #E8E8E8;
        }

        .work-content th {
            background: #2E7CD6;
            color: white;
            font-weight: 500;
            width: 30%;
        }

        .work-content td {
            background: white;
            color: #666;
        }

        .work-content tr:last-child th,
        .work-content tr:last-child td {
            border-bottom: none;
        }

        .work-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        }

        .work-content blockquote {
            background: #f0f4ff;
            border-left: 4px solid #2E7CD6;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #555;
        }

        .work-info-box {
            background: #f8f9fa;
            border: 1px solid #E8E8E8;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }

        .work-info-box h4 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .work-info-box h4::before {
            content: '📋';
            font-size: 16px;
        }

        .back-to-list {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #2E7CD6;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .back-to-list:hover {
            background: #1a5cb8;
        }

        .back-to-list::before {
            content: '←';
            font-size: 16px;
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .work-detail-section {
                padding: 40px 20px;
            }

            .work-detail-header {
                padding: 30px 20px;
            }

            .work-detail-title {
                font-size: 24px;
            }

            .work-detail-content {
                padding: 30px 20px;
            }

            .work-content h2 {
                font-size: 20px;
            }

            .work-content h3 {
                font-size: 16px;
            }

            .work-content table {
                font-size: 14px;
            }

            .work-content th,
            .work-content td {
                padding: 10px 12px;
            }
        }

         /* 施工事例ページ専用CSS */
        .works-list-section {
            background: white;
            padding: 80px 0;
        }

        .works-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #F5F5F5;
            color: #666;
            padding: 12px 24px;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: 500;
            border: none;
            cursor: pointer;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #FFD700;
            color: #333;
        }

        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .works-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: block;
            color: inherit;
            border: 1px solid #E8E8E8;
        }

        .works-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        .works-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .works-card-location {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 215, 0, 0.9);
            color: #333;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        .works-card-location.domestic {
            background: rgba(46, 124, 214, 0.9);
            color: white;
        }

        .works-card-location.international {
            background: rgba(40, 167, 69, 0.9);
            color: white;
        }

        .works-card-info {
            padding: 25px;
        }

        .works-card-company {
            font-size: 16px;
            font-weight: bold;
            color: #2E7CD6;
            margin-bottom: 8px;
        }

        .works-card-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .works-card-equipment {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .equipment-tag {
            background: #F0F4FF;
            color: #2E7CD6;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
        }

        .works-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .works-intro-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .works-intro-description {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .works-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #FFD700;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        .works-section-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #FFD700;
            display: inline-block;
            width: 100%;
        }

        /* レスポンシブ */
        @media (max-width: 1024px) {
            .works-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 20px;
            }

            .works-filter {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .works-intro-title {
                font-size: 28px;
            }

            .works-stats {
                gap: 40px;
            }

            .stat-number {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .works-grid {
                grid-template-columns: 1fr;
            }

            .works-filter {
                flex-direction: column;
                align-items: center;
            }

            .filter-btn {
                width: 200px;
                text-align: center;
            }

            .works-stats {
                flex-direction: column;
                gap: 20px;
            }
        }