/* ====================================
   生産体制ページ - シンプルデザイン
==================================== */

/* ベース設定 */
.process-page {
    padding: 0;
    background: #fff;
}

.process-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 導入部セクション */
.intro-section {
    padding: 60px 0 80px;
    background: #fff;
}

.intro-section .intro-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.intro-section .intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.intro-section .intro-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 部門セクション */
.departments-section {
    padding: 40px 0 80px;
    background: #f8f8f8;
}

.department-block {
    margin-bottom: 80px;
}

.department-block:last-child {
    margin-bottom: 0;
}

/* タイトルエリア（既存クラスを活用） */
.department-block .titlearea {
    margin-bottom: 50px;
}

.department-block .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.department-block .title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* プロセスリスト */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.process-header {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.process-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    padding: 40px;
}

.process-title {
    font-size: 24px;
    font-weight: bold;
    color: #1eaadc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-title span {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
}

.process-images {
    margin-bottom: 30px;
}

.process-images img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.process-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* 研究開発セクション */
.development-section {
    padding: 60px 0 80px;
    background: #fff;
}

.development-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.development-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
}

.development-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.development-header .number {
    font-size: 48px;
    font-weight: bold;
    color: #1eaadc;
    line-height: 1;
    min-width: 80px;
}

.development-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.development-content {
    padding-left: 100px;
}

.development-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.development-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .process-page .container {
        padding: 0 15px;
    }

    /* 導入部 */
    .intro-section {
        padding: 40px 0 50px;
    }

    .intro-section .intro-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .intro-section .intro-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    /* 部門セクション */
    .departments-section {
        padding: 30px 0 50px;
    }

    .department-block {
        margin-bottom: 50px;
    }

    .department-block .titlearea {
        margin-bottom: 30px;
    }

    .department-block .subtitle {
        font-size: 12px;
    }

    .department-block .title {
        font-size: 24px;
    }

    /* プロセスリスト */
    .process-list {
        gap: 30px;
    }

    .process-header {
        height: 200px;
    }

    .process-content {
        padding: 25px 20px;
    }

    .process-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .process-title span {
        font-size: 12px;
    }

    .process-images {
        margin-bottom: 20px;
    }

    .process-images img {
        width: 150px;
        height: 100px;
    }

    .process-description {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 研究開発セクション */
    .development-section {
        padding: 40px 0 50px;
    }

    .development-list {
        gap: 30px;
    }

    .development-item {
        padding: 25px 20px;
    }

    .development-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .development-header .number {
        font-size: 36px;
        min-width: auto;
    }

    .development-title {
        font-size: 18px;
    }

    .development-content {
        padding-left: 0;
    }

    .development-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .development-image {
        max-width: 100%;
    }
}

/* タブレット対応 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .process-page .container {
        max-width: 900px;
    }

    .intro-section .intro-title {
        font-size: 26px;
    }

    .department-block .title {
        font-size: 28px;
    }

    .process-content {
        padding: 35px;
    }

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

    .development-header .number {
        font-size: 42px;
    }

    .development-title {
        font-size: 20px;
    }
}

/* 既存スタイルとの調和 */
.process-page .ta-center {
    text-align: center;
}

.process-page .object.diamond {
    display: inline-block;
    margin: 0 auto;
}