@charset "utf-8";

/*-------------------------------------------------------------
    work
    セクション固有クラス
    - work_section_manufacturing   … 製造部門
    - work_section_production_plan … 生産部門／段取り、生産計画
    - work_section_production_light … 生産部門／軽作業
-------------------------------------------------------------*/
.work_section {
    padding-bottom: 80px;
}

.work_section + .work_section {
    padding-top: 80px;
}

.work_section_main_img {
    margin-bottom: 56px;
}

.work_section_main_img img {
    width: 100%;
    border-radius: 16px;
}

.work_section_sub {
    margin-bottom: 56px;
}

.work_section_sub_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.work_section_illust {
    flex-shrink: 0;
    max-width: 200px;
}

.work_section_illust img {
    width: 100%;
}

.work_section_sub_in {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.work_section_sub > p {
    margin-bottom: 32px;
}

.work_section_sub_in p {
    flex: 1;
    margin-bottom: 0;
}

.work_section_sub_img {
    flex-shrink: 0;
    width: 50%;
    max-width: 500px;
}

.work_section_sub_img img {
    width: 100%;
    border-radius: 16px;
}

.work_section_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work_section_gallery_item img {
    width: 100%;
    border-radius: 12px;
}

.work_section_gallery_item figcaption {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.work_section:last-child {
    padding-bottom: 100px;
}

/*-------------------------------------------------------------
    responsive
-------------------------------------------------------------*/
@media screen and (max-width: 767px) {

    .work_section {
        padding-bottom: 40px;
    }

    .work_section + .work_section {
        padding-top: 40px;
    }

    .work_section_main_img {
        margin-bottom: 32px;
    }

    .work_section_main_img img {
        border-radius: 12px;
    }

    .work_section_sub {
        margin-bottom: 40px;
    }

    .work_section_sub_head {
        display: block;
        margin-bottom: 5px;
    }

    .work_section_sub > p {
        margin-bottom: 24px;
    }

    .work_section_illust {
        width: 90px;
        max-width: none;
        margin: 0 0 0 auto;
    }

    .work_section_sub_in {
        display: block;
    }

    .work_section_sub_in p {
        margin-bottom: 0;
    }

    .work_section_sub_img {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .work_section_sub_img img {
        border-radius: 12px;
    }

    .work_section_gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work_section_gallery_item img {
        border-radius: 8px;
    }

    .work_section_gallery_item figcaption {
        margin-top: 8px;
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .work_section:last-child {
        padding-bottom: 60px;
    }
}
