@charset "utf-8";
/*--京vegetable_recipe.css--*/
/* ##########PC########## */
body{
    overflow: hidden;
}

/*サブタイトル*/
.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;
}

.intro_msg{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

    .intro_msg p{
        text-align: center;
        font-size: 1.15rem;
        color: var(--base_color2);
        font-weight: 500;
        margin: 0;
    }

.pdf_notes_msg p{
    text-align: center;
    font-size: 0.94em;
}

    .pdf_notes_msg p::before{
        font-family: FontAwesome;
        content:"\f1c1";
        color: var(--base_color5);
        margin-right: 0.3em;
    }

/*レシピ一覧*/
.vegetable_recipe_list{
    margin: 0 auto 0 auto;
}

.vegetable_recipe_list ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
}

.vegetable_recipe_list ul li{
    width: calc((100% - 6rem) / 4);
    padding: 0;
    overflow: hidden;
}

.vegetable_recipe_list ul li::before{
    display: none;
}

.vegetable_recipe_list ul li a{
    display: block;
    color: #222;
    text-decoration: none;
}

.vegetable_recipe_list ul li a:hover{
    color: #222;
}

.vegetable_recipe_list ul li a .recipe_img{
    display: block;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 0.75rem;
}

    .vegetable_recipe_list ul li a .recipe_img img{
        transition: .3s all ease;
    }

    .vegetable_recipe_list ul li a:hover .recipe_img img{
        filter: brightness(1.05);
        transform: scale(1.05);
    }

.vegetable_recipe_list ul li a .recipe_info{
    display: block;
    margin: 0 0.5rem;
}

.vegetable_recipe_list ul li a .recipe_info .recipe_title{
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.1em;
    line-height: 1.3;
}

.vegetable_recipe_list ul li a .recipe_info .recipe_title::before{
    font-family: FontAwesome;
    content:"\f0f5";
    color: var(--base_color5);
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
    font-size: 0.94em;
}

@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){

}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .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;
    }

    .intro_msg p {
        font-size: 1.05rem;
    }

    /*レシピ一覧*/
    .vegetable_recipe_list ul{
        gap: 1.5rem;
    }

    .vegetable_recipe_list ul li{
        width: calc((100% - 1.5rem) / 2);
    }

}


/* ##########印刷用########## */
@media print{

}