/* ============================================================
食の福利厚生ページ用css
URL:/business/food-benefits/
============================================================ */


/* ============================================================
共通
============================================================ */
.section_heading{
    margin-bottom: 48px;
}
.section_bottom_heading{
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-top: 40px;
    span{
        position: relative;
        z-index: 1;
        &:before{
            position: absolute;
            left: 0;
            bottom: 0;
            content: "";
            width: 100%;
            height: 8px;
            background-color: rgba(68, 174, 53, 0.3);
            z-index: -1;
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .section_heading{
        margin-bottom: 64px;
    }
    .section_bottom_heading{
        font-size: 24px;
        margin-top: 48px;
        span{
            &:before{
                height: 12px;
            }
        }
    }
}




/* ============================================================
メインビジュアル
============================================================ */
.food-benefits_main_visual{
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 80px;
    background-color: #FFF9E2;
    .main_visual__desc{
        padding: 0 12px;
        .main_heading{
            font-size: 32px;
            font-weight: bold;
            line-height: 1.5;
            text-align: center;
            margin-bottom: 16px;
            span{
                color: #ED6D00;
            }
        }
        .sub_text_wrapper{
            display: flex;
            align-items: center;
            flex-direction: column;
        }
        .main_heading_sub_heading{
            font-size: 22px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 16px;
            font-feature-settings: "palt";

            span{
                color: #ED6D00;
            }
        }
        .main_heading_text{
            font-size: 16px;
            font-weight: bold;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .main_heading_circle{
            display: flex;
            justify-content: center;
            gap: 4px;
            .circle_item{
                display: grid;
                place-content: center; 
                border-radius: 50%;
                background-color: #FEECC9;
                color: #FF9900;
                font-weight: bold;
                text-align: center;
                line-height: 1.3;
                width: 64px;
                height: 64px;
                font-size: 12px;
                span{
                    font-size: 8px;
                }
            }
        }
        .btn_wrapper{
            margin-top: 40px;
        }
    }

}

/* PC */
/* メインビジュアルのみPC表示を941pxから */
@media screen and (min-width: 941px){
    .food-benefits_main_visual{
        flex-direction: row;
        justify-content: space-between;
        gap: clamp(24px, 3vw, 42px);
        margin-top: 15px;
        padding: 48px clamp(20px, 5vw, 100px) 100px;
        .main_visual__desc{
            padding: 0;
            .main_heading{
                font-size:clamp(40px, 3.4vw, 52px);
                text-align: left;
                margin-bottom: 32px;
                line-height: 1.2;
            }
            .sub_text_wrapper{
                display: block;
            }
            .main_heading_sub_heading{
                font-size: clamp(24px, 2.35vw, 32px);
                margin-bottom: 8px;
            }
            .main_heading_text{
                font-size: clamp(13px, 1.05vw, 18px);
                margin-bottom: 24px;
                br{
                    display: none;
                }
            }
            .main_heading_circle{
                justify-content: flex-start;
                gap: 10px;
                .circle_item{
                    width: clamp(80px, 6.5vw, 100px);
                    height: clamp(80px, 6.5vw, 100px);
                    font-size: clamp(14px, 1.5vw, 18px);
                    
                    span{
                        font-size: clamp(10px, 1vw, 14px);
                    }
                }
            }
            
            .btn_wrapper{
                margin-top: 48px;
                align-items: flex-start;
            }
        }
        .main_visual__img{
            /* width: 50%; */
            display: flex;
            align-items: center;
        }
    }
}

/* ============================================================
problem_section
============================================================ */

.problem_section{
    background-color: #F5F5F5;
    padding: 64px 0;
    .problem_content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        .problem_content__item{
            border: 2px solid #C4C4C4;
            border-radius: 8px;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 12px 8px;
            .problem_content__item__img{
                width: 62px;
                height: 50px;
                margin: 0 auto;
            }
            h3{
                font-size: 11px;
                font-weight: bold;
                line-height: 1.6;
                text-align: center;
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .problem_section{
        padding: 80px 0;
        .problem_content{
            grid-template-columns: repeat(3, 1fr);
            gap: 24px 30px;
            .problem_content__item{
                gap: 16px;
                padding: 40px 24px;
                .problem_content__item__img{
                    width: 100px;
                    height: 80px;
                }
                h3{
                    line-height: 1.4;
                    font-size: 18px;
                }
            }
        }
    }
}

/* ============================================================
about_section
============================================================ */

.about_section{
    padding: 64px 0;
    .about_content{
        .about_content__item{
            display: flex;
            flex-direction: column-reverse;
            gap: 24px;
            &:not(:last-of-type){
                margin-bottom: 40px;
            }
            .about_content__desc{
                .about_heading_group{
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    margin-bottom: 24px;
                    .about_heading__sub{
                        display: inline-block;
                        background-color: #44AE35;
                        border-radius: 4px;
                        color: #fff;
                        font-size: 14px;
                        font-weight: bold;
                        line-height: 1.1;
                        padding: 5px 12px 3px;
                        width: fit-content;
                    }
                    .about_heading__main{
                        line-height: 1.5;
                        font-size: 20px;
                        font-weight: bold;
                    }
                }
                .about_content__desc__text__wrapper{
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    .about_content__desc__text{
                        font-size: 14px;
                        line-height: 1.5;
                    }
                    ul{
                        li{
                            &:not(:last-child){
                                margin-bottom: 2px;
                            }
                            .check_text{
                                --check-text-height: 1.7;
                                --check-text-size:14px;
                                --check-text-padding-left: 20px;
                                &::before{
                                    --check-icon-size: 16px;
                                    --check-icon-margin-top: 3px;
                                }
                            }
                        }
                    }
                }
            }
            .about_content__img{
                border: 2px solid #D9D9D9;
                width: 100%;
            }
        }
        
    }
}
/* PC */
@media screen and (min-width: 768px){
    .about_section{
        padding: 80px 0;
        .about_content{
            .about_content__item{
                flex-direction: row;
                align-items: flex-start;
                gap: 56px;
                .about_content__desc{
                    width: 50%;
                    .about_heading_group{
                        gap: 16px;
                        margin-bottom: 32px;
                        .about_heading__sub{
                            font-size: 16px;
                            padding: 6px 12px 4px;
                        }
                        .about_heading__main{
                            font-size: 24px;
                        }
                    }
                    .about_content__desc__text__wrapper{
                        gap: 16px;
                        .about_content__desc__text{
                            font-size: 16px;
                        }
                        ul{
                            li{
                                &:not(:last-child){
                                    margin-bottom: 4px;
                                }
                                .check_text{
                                    --check-text-height: 1.5;
                                    --check-text-size:16px;
                                    --check-text-padding-left: 26px;
                                    &::before{
                                        --check-icon-size: 18px;
                                    }
                                }
                            }
                        }
                    }
                }
                .about_content__img{
                    flex-shrink: 0;
                    width: 50%;
                }
            }
            
        }
    }
}

/* ============================================================
growth_section
============================================================ */

.growth_section{
    padding: 64px 0;
    .growth_content{
        display: flex;
        flex-direction: column;
        gap: 50px;
        .growth_content__item{
            
            &:not(:last-child){
                .growth_content__item__desc{
                    &:before{
                        position: absolute;
                        content: "";
                        bottom: -42px;
                        left: 50%;
                        transform: translateX(-50%) rotateZ(90deg);
                        background-image: url(/images/business/food-benefits/orange_arrow.svg);
                        background-repeat: no-repeat;
                        background-size: contain;
                        height: 32px;
                        width: 18px;
                    }
                }
                
            }
            

            .growth_content__item__heading{
                background-color: #44AE35;
                color: #fff;
                font-weight: bold;
                text-align: center;
                line-height: 1.3;
                font-size: 18px;
                padding: 16px 12px 12px;
            }
            .growth_content__item__desc{
                background-color: #DDF7DB;
                display: flex;
                justify-content: center;
                gap: 32px;
                padding: 32px 24px;
                position: relative;

                .desc_item{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 8px;
                    .desc_item__img{
                        width: 110px;
                    }
                    p{
                        font-size: 14px;
                        font-weight: bold;
                        text-align: center;
                        line-height: 1.5;
                    }
                }
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .growth_section{
        padding: 80px 0;
        .growth_content{
            flex-direction: row;
            gap: 56px;
            .growth_content__item{
                width: 50%;
                &:not(:last-child){
                    .growth_content__item__desc{
                        &:before{
                            bottom: auto;
                            left: auto;
                            right: -42px;
                            top: 50%;
                            transform: translateY(-50%) ;
                            height: 44px;
                            width: 24px;
                        }
                    }
                    
                }
                

                .growth_content__item__heading{
                    font-size: 24px;
                    font-size: clamp(18px, 2vw, 24px);
                }
                .growth_content__item__desc{
                    gap: 24px;
                    padding: 42px 32px;

                    .desc_item{
                        gap: 10px;
                        .desc_item__img{
                            width: 10vw;
                            max-width: 160px;
                        }
                        p{
                            font-size: clamp(13px, 1.2vw, 16px);
                        }
                    }
                }
            }
        }
    }
}

/* ============================================================
merit_section
============================================================ */

.merit_section{
    padding: 64px 0;
    .two_column_content__wrapper{
        --two_column-desc-gap: 20px;
        --two_column-heading-margin-bottom:10px;
    }

}
/* PC */
@media screen and (min-width: 768px){
    .merit_section{
        padding: 80px 0;
        .two_column_content__wrapper{
            --two_column-desc-gap: 32px;
            --two_column-heading-margin-bottom:16px;
        }

    }
}

/* ============================================================
solution_section
============================================================ */

.solution_section{
    padding: 64px 0;
    .solution_content{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        .solution_content__item{
            background-color: #DDF7DB;
            border-radius: 8px;
            padding: 40px 24px;
        }
        .solution_content__item__img{
            width: 100px;
            margin: 0 auto 16px;
        }
        .solution_content__item__heading{
            font-size: 18px;
            line-height: 1.2;
            font-weight: bold;
            text-align: center;
            span{
                font-size: 14px;
            }
        }
        .solution_content__item__list{
            padding-top: 24px;
            margin-top: 24px;
            border-top: 2px solid rgba(68, 174, 53, 0.3);
            display: flex;
            flex-direction: column;
            gap: 8px;
            .check_text{
                --check-text-size: 14px;
                --check-text-height: 1.5;
                --check-text-padding-left: 22px;
                --check-icon-size: 16px;
                --check-icon-margin-top: 2px;
               
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .solution_section{
        padding: 80px 0;
        .solution_content{
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            .solution_content__item{
                padding: 52px 42px;
            }
            .solution_content__item__img{
                width: 146px;
            }
            .solution_content__item__heading{
                font-size: 20px;
                span{
                    font-size: 16px;
                }
            }
            .solution_content__item__list{
                gap: 10px;
                .check_text{
                    --check-text-size: 16px;
                    --check-text-height: 1.4;
                }
            }
        }
    }
}

/* ============================================================
target_section
============================================================ */

.target_section{
    padding: 64px 0;
    .target_content{
        .target_content__desc{
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
            font-weight: bold;
            margin-bottom: 40px;
        }
        .target_content__img{
            width: 100%;
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .target_section{
        padding: 80px 0;
        .target_content{
            .target_content__desc{
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 80px;
            }
        }
    }
}

/* ============================================================
support_section
============================================================ */

.support_section{
    padding: 64px 0;
    .support_content{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        
        .support_content__item__img{
            width: 100%;
            img{
                width: 100%;
            }
        }
        .support_content__item__heading{
            font-size: 18px;
            line-height: 1.2;
            text-align: center;
            font-weight: bold;
            margin-top: 24px;
        }
        .support_content__item__logo_list{
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 16px;
            .logo_img{
                &.--offmeshi{
                    width: 100px;
                }
                &.--shinko_store{
                    width: 85px;
                }
                &.--shinko_kichen{
                    width: 85px;
                }
                &.--gochishow{
                    width: 110px;
                }
                &.--offken_syokuji{
                    width: 110px;
                }
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .support_section{
        padding: 80px 0;
        .support_content{
            grid-template-columns: repeat(3, 1fr);
            
            .support_content__item__heading{
                font-size: 20px;
            }
            .support_content__item__logo_list{
                margin-top: 24px;
                
            }
        }
        .section_bottom_heading{
            margin-top: 64px;
        }
    }
}

/* ============================================================
service_section
============================================================ */

.service_section{
    background-color: #DDF7DB;
    padding: 64px 0;
    .service_content{
        display: flex;
        flex-direction: column;
        gap: 24px;
        
        .service_content__item{
            background-color: #fff;
            border-radius: 8px;
            border: 2px solid #C4C4C4;
            padding: 40px 24px;
            display: flex;
            flex-direction: column;

            .service_content__item__heading{
                margin: 0 auto 24px;
                display: flex;
                align-items: center;
                width: 100%;
                img{
                    width: 100%;
                }
                &.--offmeshi{
                    max-width: 200px;
                }
                &.--shinko_store{
                    max-width: 168px;
                }
                &.--shinko_kichen{
                    max-width: 168px;
                }
                &.--gochishow{
                    max-width: 200px;
                }
                &.--offken_syokuji{
                    max-width: 168px;
                }
            }
            .service_content__item__sub_heading{
                font-size: 14px;
                margin-bottom: 24px;
                color: #2b2b2b;
                text-align: center;
            }
            .service_content__item__recomend_text{
                position: relative;
                margin-bottom: 16px;
                &:before{
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 2px;
                    left: 0;
                    bottom: 0;
                    background-color: #44AE35;
                }
                span{
                    padding: 7px 12px 4px;
                    width: fit-content;
                    border-top-left-radius: 4px;
                    border-top-right-radius: 4px;
                    background-color: #44AE35;
                    font-size: 10px;
                    line-height: 1.5;
                    color: #fff;
                    font-weight: bold;
                }
                
            }
            .check_text{
                --check-text-size: 14px;
                --check-text-height: 1.5;
                --check-text-padding-left: 20px;
                --check-icon-size: 15px;
                --check-icon-margin-top: 2px;
                color: #2b2b2b;
                &:not(:last-of-type){
                    margin-bottom: 4px;
                }
                &:last-of-type{
                    margin-bottom: 24px;
                }
            }
            .service_detail_text{
                margin-left: auto;
                color: #00A867;
                font-size: 14px;
                font-weight: bold;
                display: block;
                text-align: right;
                margin-top: auto;
                i{
                    margin-left: 4px;
                    font-size: 11px;
                    &:before{
                        color: #00A867;
                    }
                }
            }
        }
    }

}
/* PC */
@media screen and (min-width: 768px){
    .service_section{
        padding: 80px 0;
        .service_content{
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            
            .service_content__item{
                padding: 42px 24px;
                width: calc(33.3333% - 20px);

                
                .service_content__item__sub_heading{
                    font-size: 15px;
                    display: block;
                }
                .service_content__item__recomend_text{
                    margin-bottom: 24px;
                    span{
                        padding: 8px 12px 4px;
                        font-size: 13px;
                        line-height: 1;
                        height: 26px;
                        display: block;
                    }
                    
                }
                .check_text{
                    --check-text-size: 16px;
                    --check-text-height: 1.4;
                    --check-text-padding-left: 22px;
                    --check-icon-size: 17px;
                    --check-icon-margin-top: 2px;
                    color: #2b2b2b;
                    &:not(:last-of-type){
                        margin-bottom: 8px;
                    }
                    &:last-of-type{
                        margin-bottom: 24px;
                    }
                }
                .service_detail_text{
                    i{
                        margin-left: 6px;
                    }
                }
            }
        }
    }
}

/* ============================================================
fit_section
============================================================ */

.fit_section{
    background-color: #DDF7DB;
    padding: 64px 0;

    .fit_content__table {
        width: 100%;
        th, td {
            text-align: center;
            vertical-align: middle;
        }
        thead{
            th {
                background-color: #44AE35;
                color: #fff;
                font-weight: 500;
                font-size: 9px;
                font-weight: bold;
                line-height: 1.3;
                padding: 6px 0;
                &.col_service {
                    background: transparent;
                    border: none;
                }
                &:not(:last-child){
                    border-right: 2px solid #DDF7DB;
                }
            }
        }
        tbody{
            .col_service {
                width: 92px;
                text-align: left;
                padding: 10px 6px;
                border-right: 2px solid #DDF7DB;
                border-bottom: 2px solid #44AE35;
                vertical-align: top;
            }
            .service_name {
                margin: 0 auto 8px;
                &.--offmeshi{
                    width: 72px;
                }
                &.--shinko_store{
                    width: 60px;
                }
                &.--shinko_kichen{
                    width: 60px;
                }
                &.--gochishow{
                    width: 63px;
                }
                &.--offken_syokuji{
                    width: 62px;
                }
            }

            .service_desc {
                font-size: 8px;
                line-height: 1.5;
                text-align: center;
            }
            .dot {
                display: inline-block;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                background-color: #44AE35;
            }
            tr{
                
                td{
                    &:nth-child(even){
                        background-color: #fff;
                    }
                    &:nth-child(odd){
                        background-color: #F5F5F5;
                    }
                    &.col_service{
                        background-color: #fff !important;
                    }
                    &:not(.col_service) {
                        border-bottom: 2px solid #D9D9D9;
                        width: 52px;
                    }
                }
            }
            
        }
    }


    .btn_wrapper{
        margin-top: 64px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .fit_section{
        padding: 80px 0;

        .fit_content__table {
            table-layout: fixed;
            thead{
                th {
                    font-size: 18px;
                    padding: 12px;
                }
                .col_service{
                    width: 250px;
                }
            }
            tbody{
                .col_service {
                    width: 250px;
                    text-align: left;
                    padding: 16px 24px;
                }
                .service_name {
                    margin: 0 auto 10px;
                    &.--offmeshi{
                        width: 100px;
                    }
                    &.--shinko_store{
                        width: 100px;
                    }
                    &.--shinko_kichen{
                        width: 100px;
                    }
                    &.--gochishow{
                        width: 100px;
                    }
                    &.--offken_syokuji{
                        width: 100px;
                    }
                }

                .service_desc {
                    font-size: 12px;
                }
                .dot {
                    width: 22px;
                    height: 22px;
                }
                
            }
        }

        .btn_wrapper{
            margin-top: 80px;
        }
    }
}

/* ============================================================
choise_section
============================================================ */

.choise_section{
    padding: 64px 0;
    .choise_content{
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(1, 1fr);
        .choise_content__item{
            padding: 40px 24px;
            border: 2px solid #C4C4C4;
            border-radius: 8px;
        }
        .choise_content__item__img{
            width: 100px;
            margin: 0 auto 24px;
        }
        .choise_content__item__heading{
            font-size: 18px;
            text-align: center;
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 10px;
        }
        .choise_content__item__text{
            font-size: 14px;
            text-align: center;
            line-height: 1.5;
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .choise_section{
        padding: 80px 0;
        .choise_content{
            gap: 30px;
            grid-template-columns: repeat(3, 1fr);
            .choise_content__item{
                padding: 40px 20px;
            }
            .choise_content__item__img{
                width: 124px;
                margin: 0 auto 16px;
            }
            .choise_content__item__heading{
                font-size: 20px;
                margin-bottom: 16px;
            }
            .choise_content__item__text{
                font-size: 16x;
                line-height: 1.6;
            }
        }
    }
}

/* ============================================================
contact_section
============================================================ */

.contact_section{
    padding: 64px 0 0;
    .contact_content{
        display: flex;
        flex-direction: column;
        gap: 8px;
        .contact_content__item{
            background-color: #DDF7DB;
            border-radius: 8px;
            width: 100%;
            padding: 24px;
        }
        .contact_content__item__heading{
            font-size: 18px;
            text-align: center;
            line-height: 1.5;
            font-weight: bold;
            
        }
    }
    .btn_wrapper{
        margin-top: 64px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .contact_section{
        padding: 80px 0 160px;
        .contact_content{
            flex-direction: row;
            justify-content: center;
            gap: 40px;
            .contact_content__item{
                min-width: 300px;
                max-width: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 32px;
            }
            .contact_content__item__heading{
                font-size: 24px;
                
            }
        }
        .btn_wrapper{
            margin-top: 80px;
        }
    }
}