@charset "utf-8";
/*--京products.css--*/
/* ##########PC########## */
body{
    overflow: hidden;
}

.page_menu{
    width: 55rem;
    margin: 0 auto 3rem auto;
    margin-bottom: 3rem;
}

.page_menu ul{
    display: flex;
    justify-content: flex-start;
    gap: 0.7rem;
    margin: 0;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: #f5f5f5;
}

.page_menu ul li{
    padding: 0;
    margin: 0;
}

.page_menu ul li::before{
    display: none;
}

.page_menu ul li a{
    display: block;
    padding: 0.6rem 4rem 0.4rem 4rem;
    color: #222;
    font-size: 1.1rem;
    border-radius: 0.4rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: .3s all ease;
}

.page_menu ul li a:hover{
    color: #16704b;
}

.page_menu ul li.active a{
    background: #fff;
    color: #16704b;
}

.page_menu ul li a::before{
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background: #515151;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 1rem);
    left: 0.8rem;
    z-index: 1;
    transition: .3s all ease;
}

.page_menu ul li a:hover::before{
    background: #16704b;
}

.page_menu ul li.active a::before{
    background: #16704b;
}

.page_menu ul li a::after{
    content:"";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_arrow_w.png) no-repeat;
    background-size: contain;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 1.3rem;
    z-index: 2;
    transition: .3s all ease;
}

.page_menu ul li.active a::after{
    background: url(../shared/icon_arrow_w_under.png) no-repeat;
    background-size: contain;
}

/*生産者紹介*/
.products_ttl{
    width: 28.125rem;
    height: 4.2rem;
    line-height: 4.5rem;
    font-weight: 500;
    font-size: 2rem;
    color: #16704b;
    text-align: center;
    margin: 0 auto 2.5rem auto;
    padding: 0.3rem 1.5rem 0 1.5rem;
    position: relative;
}

.products_ttl::before{
    content:"";
    display: block;
    width: 1.5rem;
    height: 4.5rem;
    background: url(../shared/fig_lbl_l.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.products_ttl::after{
    content:"";
    display: block;
    width: 1.5rem;
    height: 4.5rem;
    background: url(../shared/fig_lbl_r.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

/*生産者一覧*/
.producer_list_box{
    padding: 5rem 0 2.5rem 0;
    position: relative;
}

.producer_list_box::before{
    content:"";
    width: 100vw;
    height: 100%;
    background-image: url(../shared/fig_bg_yellow.png);
    background-size: 0.8125rem auto;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
}

    .producer_list_box .box_header{
        width: 56.875rem;
        margin: 0 auto 3rem auto;
    }

    .producer_list_box .box_header h3{
        margin-top: 0;
        margin-bottom: 1.5em;
    }

    .producer_list_box .box_header p{
        padding: 0 2rem;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .producer_list_box .box_inner{}

        .producer_list_box .box_inner .producer_list{
            width: 65rem;
            margin: 0 auto;
        }

        .producer_list_box .box_inner .producer_list ul{
            margin: 0;
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 2.125rem;
        }

        .producer_list_box .box_inner .producer_list ul li{
            padding: 0;
            margin-bottom: 0;
        }

        .producer_list_box .box_inner .producer_list ul li::before{
            display: none;
        }

        .producer_list_box .box_inner .producer_list ul li .slide_obj{
            box-sizing: border-box;
            width: 20.25rem;
            height: 100%;
            border: 2px solid rgba(22, 112, 75, 0);
            /*padding: 0 1rem;
            margin: 0.5rem 0;*/
            border-radius: 1rem;
            transition: .3s all ease;
        }

        .producer_list_box .box_inner .producer_list ul li .slide_obj:hover{
            border-color: var(--base_color2);
            box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
        }

            .producer_list_box .box_inner .producer_list ul li .slide_obj a{
                height: 100%;
                color: var(--base_color1);
                background: #fff;
                text-decoration: none;
                display: flex;
                flex-direction: column;
                border-radius: 0.9rem;
                /*border-radius: 1rem;*/
                overflow: hidden;
                transition: .3s all ease;
                box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
            }

            .producer_list_box .box_inner .producer_list ul li .slide_obj a:hover{
                background: var(--base_color9);
                box-shadow: none;
            }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .fig{}

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .fig img{
                    max-width: 100%;
                    height: auto;
                    transition: .3s all ease;
                }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a:hover .fig img{
                    transform: scale(1.05);
                    filter: brightness(1.1);
                }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    line-height: 1.4;
                    padding: 1.5em;
                    transition: .3s all ease;
                    /*min-height: 9.5rem;*/
                }


                .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info h3{
                    font-weight: 600;
                    font-size: 1.28em;
                    color: var(--base_color2);
                    text-align: unset;
                    margin: 0;
                    padding-bottom: 0;
                }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info h3::before{
                    display: none;
                }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info .products_list{
                    /*margin: 1em 0;*/
                    margin: 0.5em 0 0 0;
                }

                .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info .desc{
                    opacity: 0.8;
                    margin-bottom: 0;
                }

        .producer_list_box .box_inner .producer_list .more_btn{
            width: 30rem;
            margin: 2rem auto 0 auto;
            line-height: 1.5;
            text-align: center;
            padding: 1.1rem 0 0.9rem 0;
            background: var(--base_color2);
            border-radius: 2rem;
            color: #fff;
            cursor: pointer;
            position: relative;
            transition: .3s all ease;
        }

        .producer_list_box .box_inner .producer_list .more_btn::before{
            content: "";
            display: block;
            width: 2rem;
            height: 2rem;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            top: calc(50% - 1rem);
            right: 0.8rem;
            z-index: 1;
            transition: .3s all ease;
        }

        .producer_list_box .box_inner .producer_list .more_btn::after{
            content: "";
            display: block;
            width: 1rem;
            height: 1rem;
            background: url(../shared/icon_arrow_bk_under.png) no-repeat;
            background-size: contain;
            border-radius: 50%;
            position: absolute;
            top: calc(50% - 0.5rem);
            right: 1.3rem;
            z-index: 2;
            transition: .3s all ease;
        }

        .producer_list_box .box_inner .producer_list .more_btn:hover{
            opacity: 0.9;
        }

    .producer_list_box .box_footer{
        width: 65rem;
        margin: 4rem auto 1rem auto;
    }

    .producer_list_box .tag_box{
        padding: 2rem 2.5rem;
        background: #fff;
    }

    .producer_list_box .tag_box ul{
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        font-size: 0.85rem;
        gap: 0.3rem 1.2rem;
        margin: 0 0 0.3rem 0;
    }

    .producer_list_box .tag_box ul:last-child{
        margin: 0;
    }

    .producer_list_box .tag_box ul li{
        padding: 0;
        margin: 0;
        line-height: 1.3;
    }

    .producer_list_box .tag_box ul li::before{
        display: none;
    }

    .producer_list_box .tag_box ul li a{
        color: #666;
        text-decoration: none;
    }

    .producer_list_box .tag_box ul li.all a{
        color: #c96b57;
        text-decoration: underline;
    }

    .producer_list_box .tag_box ul li a:hover{
        text-decoration: underline;
    }

/*生産者情報*/
.producer_info_box{
    box-sizing: border-box;
    width: 52.5rem;
    margin: 0 auto 2rem auto;
    padding: 3.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
}

.producer_post_date{
    font-size: 0.9rem;
    color: #676767;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
}

.producer_info_img{
    text-align: center;
    margin-bottom: 1.8rem;
}

.producer_info_img ul{
    margin: 0;
}

.producer_info_img ul li{
    max-width: 45rem;
    margin: 0 1rem;
    padding: 0;
}

.producer_info_img ul li::before{
    display: none;
}

.producer_info_img img{
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.producer_info_img .slick-prev,
.producer_info_img .slick-next{
    width: 1rem;
    height: auto;
    aspect-ratio: 64 / 96;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.producer_info_img .slick-prev::before,
.producer_info_img .slick-next::before{
    content: none;
}

.producer_info_img .slick-prev{
    background-image: url(../shared/icon_slide_arrow_l.png);
    left: -1.5rem;
}

.producer_info_img .slick-next{
    background-image: url(../shared/icon_slide_arrow_r.png);
    right: -1.5rem;
}


.producer_name_age{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1rem;
}

.producer_name{
    font-size: 1.5rem;
    font-weight: 600;
}

.producer_age{
    color: #676767;
}

.producer_birthplace{
    text-align: center;
    margin-bottom: 1.5rem;
}

.producer_info_box dl{
    display: flex;
    justify-content: flex-start;
}

.producer_info_box dl dt{
    white-space: nowrap;
    color: #16704b;
    font-weight: 500;
}

.producer_info_box dl dt::before{
    content:"｜"
}

.producer_info_box dl dt::after{
    content:"｜"
}

.back_btn{
    display: flex;
    justify-content: center;
}

    .back_btn a{
        position: relative;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 1em;
        height: 3.75rem;
        padding: 0 3em 0 0.75rem;
        text-decoration: none;
        border: 1px solid var(--base_color2);
        color: var(--base_color2);
        background: var(--base_color8);
        border-radius: 100vh;
        overflow: hidden;
        transition: .3s all ease;
    }

        .back_btn a .lbl{
            padding-top: 0.1em;
            position: relative;
            z-index: 1;
        }

        .back_btn a::after{
            content: "";
            display: block;
            height: 20rem;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: calc(50% - 10rem);
            z-index: 0;
            background: var(--base_color2);
            transform: scale(0);
            transform-origin: left center;
            transition: .6s all ease;
        }

        .back_btn a::before{
            position: relative;
            z-index: 1;
            content: "";
            width: 2.25rem;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            transform: rotate(180deg);
            background-color: var(--base_color2);
            background-image: url(../shared/icon_arrow_w.png);
            background-size: 1rem auto;
            background-position: center center;
            background-repeat: no-repeat;
            transition: .6s all ease;
        }

        .back_btn a:hover::after{
            background: var(--base_color2);
            transform: scale(1);
            opacity: 1;
        }

        .back_btn a:hover{
            color: #fff;
        }

        .back_btn a:hover::before{
            background-color: #fff;
            background-image: url(../shared/icon_arrow_bk.png);
        }

/*山の都のやおやさん*/
.producer_detail_box{
    padding-top: 2rem;
    width: 52.5rem;
    margin: 0 auto;
}

.producer_detail_box h3{
    margin-bottom: 2em;
}

.producer_introduction{
    padding-bottom:0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #d9d9d9;
}

.producer_introduction_name{
    font-weight: 600;
    font-size: 1.28em;
    color: var(--base_color2);
}

.text_img_wrap{
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.text_img_wrap .text_box{
    flex: 1;
}

.text_img_wrap .text_box p{
    margin: 0;
}

.text_img_wrap .img_box{}

.text_img_wrap .img_box ul{
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0;
}

.text_img_wrap .img_box ul.fd_column{
    flex-direction: column;
}

.text_img_wrap .img_box ul li{
    padding: 0;
    margin: 0;
}

.text_img_wrap .img_box ul li img{
    border-radius: 1rem;
    max-width: 100%;
    height: auto;
}

.text_img_wrap .img_box ul li::before{
    display: none;
}

/*肥後やまとのお野菜*/
.vegetables_intro_box{
    background-image: url(../shared/vegetables/bg_intro2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 1.5rem;
    color: #fff;
    padding: 4em 0;
    margin-bottom: 5em;
    width: calc(100vw - 15rem);
    margin-left: calc(50% - 50vw + 7.5rem);
    margin-right: calc(50% - 50vw + 7.5rem);
}

.vegetables_intro_box h3{
    margin-top: 0;
    color: #fff
}

.vegetables_intro_box h3::before{
    border-color:var(--base_color3);
}

.vegetables_intro_box h4{
    color: #fff;
    padding: 0;
    margin: 0 0 0.6em 0;
    text-align: center;
    font-size: 3.2em;
    line-height: 1.5;
}

.page_body .vegetables_intro_box h3 + h4{
    margin-top: 1em;
}

.vegetables_intro_box h4 .h4_small{
    display: block;
    font-size: 2.1rem;
}

.vegetables_intro_box h4::before{
    display: none;
}

.vegetables_intro_box .vegetables_intro_text{
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}

.vegetables_intro_btn_list{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.trivia_btn{
    display: flex;
    justify-content: center;
}

    .trivia_btn a{
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 1em;
        height: 3.25rem;
        padding: 0 0.75rem 0 3em;
        text-decoration: none;
        color: #fff;
        background: var(--base_color2);
        border-radius: 100vh;
        border: 2px solid var(--base_color2);
        position: relative;
        overflow: hidden;
        transition: .6s all ease;
    }

        .trivia_btn a:hover{
            color: var(--base_color2);
        }

            .trivia_btn a::before{
                content: "";
                display: block;
                height: 20rem;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                position: absolute;
                left: 0;
                top: calc(50% - 10rem);
                z-index: 0;
                background: #fff;
                transform: scale(0);
                transform-origin: left center;
                transition: .6s all ease;
            }

            .trivia_btn a:hover::before{
                opacity: 1;
                transform: scale(1);
            }

            .trivia_btn a .lbl{
                padding-top: 0.1em;
                position: relative;
                z-index: 1;
            }

            .trivia_btn a::after{
                content: "";
                width: 2rem;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                background-color: #fff;
                background-image: url(../shared/icon_arrow_bk.png);
                background-size: 1rem auto;
                background-position: center center;
                background-repeat: no-repeat;
                position: relative;
                z-index: 1;
                transition: .6s all ease;
            }

            .trivia_btn a:hover::after{
                background-color: var(--base_color2);
                background-image: url(../shared/icon_arrow_w.png);
            }

.anc_nav_box{
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.page_body .anc_nav{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75em 2em;
    margin: 1em 0 0 0;
    max-width: 50rem;
}

.page_body .anc_nav li{
    margin: 0;
    padding: 0;
}

.page_body .anc_nav li::before{
    display: none;
}

.page_body .anc_nav li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.page_body .anc_nav li a span{
    line-height: 1;
}

.page_body .anc_nav li a:hover{
    color: var(--base_color2);
}

.page_body .anc_nav li a::before{
    content: "";
    display: block;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-color: #16704b;
    background-image: url(../shared/icon_arrow_w_under.png);
    background-repeat: no-repeat;
    background-size: 0.75rem auto;
    background-position: center center;
    border-radius: 50%;
    transition: .3s all ease;
}

.vegetables .page_title{
    display: none;
}

.products_calendar_box{
    padding: 5rem 0 2.5rem 0;
    position: relative;
}

.products_calendar_box::before{
    content: "";
    width: 100vw;
    height: 100%;
    background-image: url(../shared/fig_bg_yellow.png);
    background-size: 0.8125rem auto;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
}

.products_calendar_box .box_header h3{
    margin-top: 0;
    margin-bottom: 3rem;
}

.products_calendar_box .box_inner{
    /*width: 60rem;*/
    max-width: 72rem;
    margin: 0 auto;
}

.season_example_list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.season_example_list dl{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: calc((100% - 1rem) / 2);
    height: 3.5rem;
    padding-left: 4.8rem;
    position: relative;
    background: #f7d81e;
    border-radius: 2rem;
}

.season_example_list dl dt{
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.7rem;
    background: #925f0c;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.season_example_list dl dd{
    flex: 1;
    line-height: 1.4;
    padding-top: 0.2rem;
    padding-right: 2rem;
}

.calendar_item{
    margin: 0 1rem;
}

.season_peak_calendar{
    /*width: 58rem;*/
    border: 1px solid #333;
    border-radius: 1rem;
    overflow: hidden;
}

.season_peak_calendar table{
    width: 100%;
    margin: 0;
    border: none;
    font-size: 0.9rem;
}

.season_peak_calendar table thead th,
.season_peak_calendar table thead td{
    border: none !important;
    border-bottom: 1px solid #333 !important;
    padding: 0.4em 0.4em 0.3em 0.4em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}

.season_peak_calendar table thead th{
    width: 7rem;
    background: #f5f5f5;
}

.season_peak_calendar table thead td{
    /*background: rgba(255,255,255,0.5);*/
    background: #f5f5f5;
}

.season_peak_calendar table thead tr:nth-child(2) td{
    font-size: 0.7rem;
    padding: 0.4em 0.1em;
    border-left: 1px dotted #333 !important;
}

.season_peak_calendar table tbody th,
.season_peak_calendar table tbody td{
    border: none !important;
    border-bottom: 1px solid #333 !important;
    /*background: rgba(255,255,255,0.5) !important;*/
    background: rgba(255,255,255,1) !important;
    padding: 0.4em 0.4em 0.3em 0.4em;
}

.season_peak_calendar table tbody tr:nth-child(even) th,
.season_peak_calendar table tbody tr:nth-child(even) td{
    background: rgba(249,249,237,1) !important;
}

.season_peak_calendar table tbody th .products_name_icon_wrap{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.season_peak_calendar table tbody th .products_name_icon_wrap .products_name{
    flex: 1;
    padding-left: 0.3em;
}

.season_peak_calendar table tbody th .products_name_icon_wrap .products_name a{
    text-decoration: none;
    color: #000;
}

.season_peak_calendar table tbody th .products_name_icon_wrap .products_name a:hover{
    text-decoration: underline;
}

.season_peak_calendar table tbody th .products_name_icon_wrap .products_icon{
    display: block;
    width: 3.25rem;
    margin-left: auto;
}

.season_peak_calendar table tbody tr:last-child th,
.season_peak_calendar table tbody tr:last-child td{
    border-bottom: none !important;
}

.season_peak_calendar table thead td,
.season_peak_calendar table tbody td{
    border-left: 1px dotted #333 !important;
}

.season_peak_calendar table tbody td{
    position: relative;
}

.season_peak_calendar table tbody td .peak_graph{
    display: block;
    width: calc(100% + 2px);
    height: 1.2rem;
    position: absolute;
    top: calc(50% - 0.6rem);
    left: -1px;
}

.season_peak_calendar table tbody td .peak_graph.peak_lv1{
    background: #8cb9a5;
}

.season_peak_calendar table tbody td .peak_graph.peak_lv2{
    background: #16704c;
}

.season_peak_calendar table tbody td .peak_graph.peak_start{
    width: calc(100% - 0.1rem);
    border-radius: 0.2rem 0 0 0.2rem;
    left: 0.2rem;
}

.season_peak_calendar table tbody td .peak_graph.peak_end{
    width: calc(100% - 0.2rem);
    border-radius: 0 0.2rem 0.2rem 0;
    left: 0;
}

.season_peak_calendar table tbody td .peak_graph.peak_start.peak_end{
    width: calc(100% - 0.4rem);
    border-radius: 0.2rem;
    left: 0.2rem;
}

        .season_peak_calendar_list .slick-prev,
        .season_peak_calendar_list .slick-next{
            width: 2rem;
            height: auto;
            aspect-ratio: 64 / 96;
            background-repeat: no-repeat;
            background-size: contain;
            z-index: 2;
        }

        .season_peak_calendar_list .slick-prev::before,
        .season_peak_calendar_list .slick-next::before{
            content: none;
        }

        .season_peak_calendar_list .slick-prev{
            background-image: url(../shared/icon_slide_arrow_l.png);
            left: -3rem;
        }

        .season_peak_calendar_list .slick-next{
            background-image: url(../shared/icon_slide_arrow_r.png);
            right: -3rem;
        }


/*取扱い品目*/
.products_list_box{
    margin-bottom: 5rem;
}

.products_list_box h3{
    margin-top: 1.5em;
    margin-bottom: 2rem;
}

.products_list_text{
    box-sizing: border-box;
    width: 58.875rem;
    text-align: center;
    font-weight: 500;
    padding: 1em 1em 0.8em 1em;
    margin: 0 auto 2em auto;
    background: #fcfad6;
    border-radius: 1em;
    line-height: 1.8;
}

.products_category_list{
    margin-bottom: 3rem;
}

.products_category_list ul{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
}

.products_category_list ul li{
    padding: 0;
    margin: 0;
}

.products_category_list ul li::before{
    display: none;
}

.products_category_list ul li a{
    padding: 0 0.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid #fff;
}

.products_category_list ul li a:hover{
    color: #c04921;
}

.products_category_list ul li a.is-active{
    color: #c04921;
    border-bottom: 2px solid #c04921;
}

.products_list_box .products_list{
    width: 58.875rem;
    margin: 0 auto;
}

.products_list_box .products_list ul{
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.125rem;
}

.products_list_box .products_list ul li{
    width: calc((100% - 4.5rem) / 5);
    padding: 0;
    margin: 0;
}

.products_list_box .products_list ul li::before{
    display: none;
}

.products_list_box .products_list ul li a{
    display: block;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #111;
    font-size: 1.1rem;
}

.products_list_box .products_list ul li a:hover{
    /*color: var(--base_color2);
    background: var(--base_color8);*/
    /*border-color: var(--base_color2);
    background: var(--base_color9);*/
}

.products_list_box .products_list ul li a .vegetable_img_season{
    display: block;
    position: relative;
}

.products_list_box .products_list ul li a .vegetable_img_season .vegetable_img{
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.products_list_box .products_list ul li a .vegetable_img_season .vegetable_img img{
    transition: .3s all ease;
}

.products_list_box .products_list ul li a:hover .vegetable_img_season .vegetable_img img{
    transform: scale(1.05);
    filter: brightness(1.1);
}

.products_list_box .products_list ul li a .vegetable_img_season .vegetable_season{
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -0.5rem;
    left: 0;
}

.products_list_box .products_list ul li a .vegetable_img_season .vegetable_season .vs_inner{
    display: block;
    padding: 0.3rem 0.8rem 0.2rem 0.8rem;
    line-height: 1;
    background: var(--base_color2);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 1rem;
}

.products_list_box .products_list ul li a .vegetable_name{
    display: block;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.products_list_box .box_footer{
    width: 58.875rem;
    margin: 4rem auto 0 auto;
}

.products_list_box .box_footer .other_products_list{
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border: 2px dotted var(--base_color2);
    border-radius: 1rem;
}

.products_list_box .box_footer .other_products_list .other_products_ttl{
    font-weight: 600;
    font-size: 1.28em;
    color: var(--base_color2);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.products_list_box .box_footer .other_products_list p{
    margin: 0;
}

.producer_tag_list{
    margin-bottom: 3rem;
}

.producer_tag_list ul{
    margin: 0 0.5rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.producer_tag_list ul li{
    margin: 0;
    padding: 0;
    color: var(--base_color2);
}

.producer_tag_list ul li::before{
    display: none;
}

.producer_tag_list ul li a{
    color: var(--base_color2);
    text-decoration: none;
}

.producer_tag_list ul li a:hover{
    text-decoration: underline;
    color: var(--base_color2);
}

/*取扱い品目一覧のモーダル*/
.vegetable-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.modal-bg {
    background: rgba(0,0,0,.5);
    position: absolute;
    inset: 0;
}
.modal-content {
    background: #fff;
    max-width: 50rem;
    max-height: calc(90vh - 4rem);
    margin: 6vh auto 4vh auto;
    padding: 2rem;
    position: relative;
    border-radius: 1rem;
}

.modal-close{
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--base_color5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -0.7rem;
    right: -0.7rem;
}

.vegetable_modal_body{
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(90vh - 4rem);
    line-height: 1.8;
}

.vegetable_wrap{
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.vegetable_img_list{
    width: 23rem;
}

.vegetable_img_list ul{}

.vegetable_img_list ul .slick-list li{
    width: 23rem;
    margin: 0 1rem;
}

.vegetable_img_list ul .slick-list li img{
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
}

.slick-dots{
    bottom: -1.7rem;
}

.slick-dots li{
    margin: 0 1px;
}

.slick-dots li button:before{
    font-size: 0.5rem;
    color: var(--base_color2);
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}

.slick-dots li.slick-active button:before{
    color: var(--base_color2);
}

.vegetable_detail{
    flex: 1;
}

.vegetable_ttl{
    font-weight: 600;
    font-size: 1.28em;
    color: var(--base_color2);
    text-align: unset;
    margin: 0 0 0.4rem 0;
    padding-bottom: 0;
    line-height: 1.5;
}

.vegetable_text{
    line-height: 1.6;
}

.vegetable_info{}

.vegetable_info table{
    width: 100%;
    margin-bottom: 1rem;
}

.vegetable_info table th,
.vegetable_info table td{
    padding: 0.5rem;
    border-bottom: 1px solid #dedede;
}

.vegetable_info table th{
    font-weight: 600;
    width: 5rem;
}

.vegetable_recipe_list{
    padding: 0.7rem 1rem;
    background: #f7f7e2;
    border-radius: 0.5rem;
    margin: 0.5rem 0 0 0;
}

.vegetable_recipe_list .vrl_ttl{
    text-align: center;
    color: var(--base_color2);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px dotted #333;
    margin-bottom: 0.5rem;
}

.vegetable_recipe_list ul{
    margin: 0 0.5rem;
}

.vegetable_recipe_list ul li{
    padding-left: 0.85em;
    position: relative;
    line-height: 1.6;
}

.vegetable_recipe_list ul li::before{
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    display: block;
    background: #555;
    position: absolute;
    top: 0.6em;
    left: 0;
}

.vegetable_recipe_list ul li::after{
    font-family: FontAwesome;
    content:"\f1c1";
    color: #c40026;
    padding-left: 0.3rem;
}

.vegetable_recipe_list ul li a{
    color: #000;
    text-decoration: none;
}

.vegetable_recipe_list ul li a:hover{
    text-decoration: underline;
}

ul.vegetable_posts{
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dotted #333;
}

    ul.vegetable_posts li{
        width: calc((100% - 1.5rem) / 2);
        padding: 0;
        margin-bottom: 0;
    }

    ul.vegetable_posts li::before{
        display: none;
    }

    ul.vegetable_posts li .slide_obj{
        box-sizing: border-box;
        /* border: 2px solid rgba(22, 112, 75, 0); */
        /* border-radius: 1rem; */
        transition: .3s all ease;
    }

    ul.vegetable_posts li .slide_obj:hover{
        border-color: var(--base_color2);
    }

        ul.vegetable_posts li .slide_obj a{
            color: var(--base_color1);
            background: #fff;
            text-decoration: none;
            display: flex;
            /* flex-direction: column; */
            /* border-radius: 0.9rem; */
            /* border-radius: 1rem; */
            overflow: hidden;
            padding: 0.5rem;
            border-radius: 0.5rem;
            border: 1px solid #eee;
            transition: .3s all ease;
            /* box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);*/
        }

        ul.vegetable_posts li .slide_obj a:hover{
            background: var(--base_color9);
            box-shadow: none;
            border-color: var(--base_color2);
        }

            ul.vegetable_posts li .slide_obj a .fig{
                width: 6rem;
                border-radius: 0.5rem;
                overflow: hidden;
            }

            ul.vegetable_posts li .slide_obj a .fig img{
                max-width: 100%;
                height: auto;
                transition: .3s all ease;
            }

            ul.vegetable_posts li .slide_obj a:hover .fig img{
                transform: scale(1.05);
                filter: brightness(1.1);
            }

            ul.vegetable_posts li .slide_obj a .producer_info{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                line-height: 1.4;
                padding: 0 1em;
                transition: .3s all ease;
                /*min-height: 9.5rem;*/
            }


            ul.vegetable_posts li .slide_obj a .producer_info h3{
                font-weight: 600;
                font-size: 1.15em;
                color: var(--base_color2);
                text-align: unset;
                margin: 0;
                padding-bottom: 0;
            }

            ul.vegetable_posts li .slide_obj a .producer_info h3::before{
                display: none;
            }

            ul.vegetable_posts li .slide_obj a .producer_info .products_list{
                /*margin: 1em 0;*/
                font-size: 0.9rem;
                margin: 0.5em 0 0 0;
                display: none;
            }

            ul.vegetable_posts li .slide_obj a .producer_info .desc{
                opacity: 0.8;
                margin-bottom: 0;
            }

.products_recipe_list_box{}

.products_recipe_list_box h3{
    margin-bottom: 3rem;
}

.products_recipe_list_box .box_inner{
    width: 58.875rem;
    margin:0 auto 0 auto;
}

.products_recipe_list_box .products_recipe_list{
    padding: 0.7rem 1rem;
    background: #f7f7e2;
    border-radius: 0.5rem;
    margin: 0.5rem 0 0 0;
}

.products_recipe_list_box .products_recipe_list ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.products_recipe_list_box .products_recipe_list ul li{
    margin: 0;
    line-height: 1.6;
    padding-left: 0.9rem;
}

.products_recipe_list_box .products_recipe_list ul li::before{
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: block;
    background: var(--base_color2);
    position: absolute;
    top: calc(50% - 0.25rem);
    left: 0;
}

.products_recipe_list_box .products_recipe_list ul li::after{
    font-family: FontAwesome;
    content:"\f1c1";
    color: #c40026;
    padding-left: 0.3rem;
}

.products_recipe_list_box .products_recipe_list ul li a{
    color: #000;
    text-decoration: none;
}

.products_recipe_list_box .products_recipe_list ul li a:hover{
    text-decoration: underline;
}

/*有機野菜の豆知識*/
.products_trivia_box{
    padding: 1rem 0 1rem 0;
    position: relative;
    line-height: 2;
}


.products_trivia_box .box_header h3{
    text-align: center;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 1em 0;
    padding-bottom: 0.8em;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
    clear: both;
}

.products_trivia_box .box_header h3::before {
    content: "";
    width: 4.5em;
    border-bottom: 4px solid var(--base_color2);
    position: absolute;
    bottom: 0;
    left: calc(50% - 2.25em);
}

.products_trivia_box .box_inner{
    padding: 0;
    position: relative;
}

.products_trivia_box .box_inner p{
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
}

.products_trivia_box .box_inner .kenenten_box{
    border: 2px dotted var(--base_color2);
    padding: 1.5rem 2em 0.5em;
    border-radius: 1rem;
    margin-top: 1rem;
}

.products_trivia_box .box_inner .kenenten_box h4{
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 0.8em 0;
    line-height: 1.4;
    position: relative;
    padding: 0;
    color: var(--base_color2);
    font-family: var(--font_family2);
    overflow: hidden;
}

.products_trivia_box .box_inner .kenenten_box h4::before{
    display: none;
}

.products_trivia_box .box_inner .kenenten_box dl{}

.products_trivia_box .box_inner .kenenten_box dl dt{
    font-size: 1.1em;
    font-weight: 500;
}

.products_trivia_box .box_inner .kenenten_box dl dd{
    margin: 0 1em 1em 1em;
}

.products_trivia_box .box_inner .kenenten_box dl dd ul{
    margin: 0;
}

/*有機野菜の特徴*/
.tokucho_box{
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 38rem;
    padding: 1.2rem 1.2rem 0.5rem 1.4rem;
    background: rgba(255, 255, 255, 0.75);
    color: #222;
    margin: 2.5rem auto 0 auto;
    border-radius: 0.7rem;
    line-height: 1.8;
}

.tokucho_ttl{
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.4;
    color: var(--base_color2);
    text-align: center;
}

.tokucho_box dl{}

.tokucho_box dl dt{
    font-size: 1em;
    font-weight: 500;
}

.tokucho_box dl dd{
    margin: 0 1em 0.3em 1em;
}

.tokucho_box dl dd ul{
    margin: 0;
}

.tokucho_box dl dd ul li{
    font-size: 0.9em;
}



@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .producer_list_box .box_header{
        width: auto;
    }

    .producer_list_box .box_inner .producer_list{
        width: auto;
    }

    .producer_list_box .box_inner .producer_list ul{
        
    }

    .producer_list_box .box_inner .producer_list ul li{
        width: calc((100% - 4.25rem) / 3);
    }

    .producer_list_box .box_inner .producer_list ul li .slide_obj{
        width: 100%;        
    }

    .producer_list_box .box_footer{
        width: auto;
    }

    .contents.products.vegetables .column_wrapper{
        padding-left: 0;
        padding-right: 0;
    }

    .products_calendar_box .box_inner{
        width: 86vw;
    }

    .season_peak_calendar{
        width: 84vw;
    }

    .products_list_text{
        box-sizing: border-box;
        width: calc(100% - 6vw);
        margin: 0 3vw 2em 3vw;
    }

    .products_list_box .products_list{
        box-sizing: border-box;
        width: 100%;
        padding: 0 3vw;
    }

    /*有機野菜のいいところ*/
    .vegetables_intro_box{
        padding: 4em 0 3em;
        width: calc(100vw - 6vw);
        margin-left: calc(50% - 50vw + 3vw);
        margin-right: calc(50% - 50vw + 3vw);
    }

    .vegetables_intro_box h4{
        font-size: 3.5em;
    }

}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .page_body .anc_nav{
        gap: 1em;
    }

    .page_menu{
        width: auto;
        margin: 0 5vw 2rem 5vw;
    }

    .contents.archive .page_menu{
        margin: 0 0 2rem 0;
    }

    .page_menu ul li a{
        padding: 0.6rem 0.7rem 0.4rem 2.4rem;
        line-height: 1.5;
        font-size: 0.9rem;
    }

    .page_menu ul li a::before{
        width: 1.3rem;
        height: 1.3rem;
        top: calc(50% - 0.65rem);
        left: 0.4rem;
    }

    .page_menu ul li a::after{
        left: 0.6rem;
    }

    .products_ttl{
        width: 70vw;
        height: 3rem;
        margin: 0 auto 1.5rem auto;
        line-height: 3rem;
        font-size: 1.7rem;
    }

    .products_ttl::before{
        width: 1rem;
        height: 3rem;
    }

    .products_ttl::after{
        width: 1rem;
        height: 3rem;
    }

    /*生産者紹介*/
    .producer_list_box{
        padding: 3em 0 2em;
    }

    .producer_list_box .box_header{
        margin: 0 auto 2em auto;
    }

    .producer_list_box .box_header p{
        padding: 0 1rem;
    }

    .producer_list_box .box_inner .producer_list ul{
        gap: 1rem;
    }

    .producer_list_box .box_inner .producer_list ul li{
        width: calc((100% - 1rem) / 2);
    }

    .producer_list_box .box_inner .producer_list ul li .slide_obj{
        width: 100%;
    }

    .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info{
        padding: 1rem;
    }

    .producer_list_box .box_inner .producer_list ul li .slide_obj a .producer_info .products_list{
        font-size: 0.9rem;
    }

    .producer_list_box .box_footer{
        margin: 3rem auto 1rem auto;
    }

    .producer_list_box .tag_box{
        padding: 2rem;
    }

    /*生産者情報*/
    .producer_info_box{
        width: 90vw;
        padding: 3rem 1.8rem 1.8rem 1.8rem;
    }

    .producer_detail_box{
        width: 90vw;
    }

    .producer_info_img ul li{
        max-width: calc(90vw - 3.6rem);
    }

    .producer_info_img .slick-prev, .producer_info_img .slick-next{
        width: 1rem;
    }

    .producer_info_img .slick-prev{
        left: -4vw;
    }

    .producer_info_img .slick-next{
        right: -4vw;
    }

    .text_img_wrap{
        gap: 1rem;
    }

    .producer_introduction_name{
        font-size: 1.18em;
        margin-bottom: 0.3rem;
    }

    .text_img_wrap .img_box ul{
        flex-direction: column;
    }

    .text_img_wrap .img_box ul li{
        width: 35vw;
    }

    /*旬のお野菜カレンダー*/
    .products_calendar_box{
        padding: 3em 0 2em;
    }

    .products_calendar_box .box_inner{
        width: 90vw;
    }

    .season_example_list dl{
        width: 100%;
    }

    .season_peak_calendar{
        width: 90vw;
        margin: 0;
        overflow-x: scroll;
        border-radius: 0.5rem;
    }

    .season_peak_calendar table{
        white-space: nowrap;
    }

    .page_body table th, .page_body table td{
        padding: 0.5rem;
    }
    
    .season_peak_calendar table tbody th .products_name_icon_wrap{
        display: block;
    }

    .season_peak_calendar table tbody th .products_name_icon_wrap .products_icon{
        margin:  0.3rem auto 0 auto;
    }
    
    .season_peak_calendar_list .slick-prev, .season_peak_calendar_list .slick-next{
        width: 1.5rem;
    }

    .season_peak_calendar_list .slick-prev{
        left: -3vw;
    }

    .season_peak_calendar_list .slick-next{
        right: -3vw;
    }

    .products_list_box{
        padding: 0 5vw;
    }

    .products_category_list{
        margin-bottom: 1rem;
    }

    .products_category_list ul{
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.8rem 2rem;
    }

    .products_list_box .products_list{
        width: auto;
    }

    .products_list_box .products_list ul{
        gap: 1rem;
    }

    .products_list_box .products_list ul li{
        width: calc((100% - 2rem) / 3);
    }

    .products_list_box .products_list ul li a{
        padding: 0.5rem;
    }


    .products_list_box .box_footer{
        width: auto;
    }

    .vegetable_wrap{
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .vegetable_img_list{
        width: calc(90vw - 4rem);
    }

    .vegetable_img_list ul .slick-list li{
        width: calc(90vw - 4rem);
    }

    .modal-content{
        width: calc(90vw - 3rem);
        padding: 1.5rem;
    }

    .vegetable_detail p{
        line-height: 1.5;
    }

    ul.vegetable_posts{
        gap: 1rem;
    }

    ul.vegetable_posts li{
        width: 100%;
    }

    /*お野菜レシピ*/
    .products_recipe_list_box .box_inner{
        width: 90vw;
    }

    .products_list_text{
        width: 100%;
        margin: 0 0 2em 0;
        text-align: left;
    }

    /*有機野菜のいいところ*/
    .vegetables_intro_box{
        padding: 3em 0 2em;
        margin-bottom: 3em;
    }

    .vegetables_intro_box h3{
        font-size: 1.3em;
        margin: 0 0 1.3em 0;
    }

    .vegetables_intro_box h4{
        font-size: 1.8em;
    }

    .vegetables_intro_box h4 .h4_small{
        font-size: 1.3rem;
    }

    .vegetables_intro_box .vegetables_intro_text{
        box-sizing: border-box;
        padding-left: 2em;
        padding-right: 2em;
        text-align: left;
        font-size: 1em;
    }

    .vegetables_intro_btn_list{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /*豆知識モーダル*/
    .products_trivia_box .box_header h3{
        font-size: 1.3em;
        /*text-align: left;*/
    }

    .products_trivia_box .box_header h3 br{
        display: none;
    }

    .products_trivia_box{
        line-height: 1.6;
    }

    .products_trivia_box .box_inner .kenenten_box{
        padding: 1em 1em 0.5em;
    }

    /*有機野菜の特徴*/
    .tokucho_box{
        flex-direction: column;
        gap: 0.5em;
        width: auto;
        padding: 1rem 1rem 0.5rem 1rem;
        margin: 2rem 1.5em 0 1.5em;
    }

    .tokucho_ttl{
        font-size: 1.3em;
    }

    .tokucho_box dl dt{
        font-size: 1em;
    }

    .tokucho_box dl dd{
        font-size: 0.9em;
        margin: 0 0 0.3em 1em;
    }


}


/* ##########印刷用########## */
@media print{

}