@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #5a5a5a;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
}

.inner {
    max-width: 1400px;
    padding: 0 100px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.7;
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 200px 0 50px;
}

.section .section_title {
    text-align: center;
}

/* kyoutuu
---------------------------------*/
.recipe_list {
    background-color: #f9f3e5;
}

/* index
---------------------------------*/
.recipe_list .title {
    width: 60%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.recipe_list .title h1 img {
    width: 100%;
    height: auto;
}

.recipe_list .list {
    width: 90%;
    max-width: 965px;
    margin: 75px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 54px 36px;
}

.recipe_list .list li {
    width: calc((100% - 36px) / 2);
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.recipe_list .list li .list-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.recipe_list .list li .list-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.recipe_list .list li .list-img .num {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 20px;
    letter-spacing: .04em;
    color: #fff;
    border-radius: 12px;
}

.recipe_list .list li:nth-child(odd) .list-img .num {
    background-color: #004628;
}

.recipe_list .list li:nth-child(even) .list-img .num {
    background-color: #710527;
}

.recipe_list .list li .list-txt {
    text-align: center;
    background-color: #fff;
    padding: 24px 0;
    border-radius: 0 0 10px 10px;
}

.recipe_list .list li .list-txt h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.recipe_list .list li .list-txt p {
    font-size: 1.4rem;
    text-align: center;
}

.recipe_list .list li:nth-child(odd) .list-txt {
    color: #004628;
}

.recipe_list .list li:nth-child(even) .list-txt {
    color: #710527;
}

.breadcrumb {
    background: none;
    height: 21px;
    width: 100%;
    margin: 100px auto 0;
    font-weight: 400;
    line-height: 21px;
    box-sizing: border-box;
    color: #333333;
}

.breadcrumb li {
    margin: 0px 5px 0px 0px;
    float: left;
    font-size: 11px;
}

.breadcrumb li a {
    color: #333333;
}

@media screen and (max-width: 768px) {

    .recipe_list .title {
        margin: 40px auto;
    }

    .recipe_list .list {
        gap: 24px;
        padding-bottom: 30px;
    }

    .recipe_list .list li {
        width: 100%;
    }

    .recipe_list .list li .list-img .num {
        font-size: 16px;
        border-radius: 8px;
    }

    .recipe_list .list li .list-img {
        height: 210px;
    }

    .recipe_list .list li .list-txt {
        padding: 16px 0;
    }

    .recipe_list .list li .list-txt h3 {
        font-size: 3.2vw;
    }

    .recipe_list .list li .list-txt p {
        font-size: 2.6vw;
    }
}

@media only screen and (max-width: 1400px) {

    .inner {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {

    body {
        font-size: 1.6rem;
    }

    .inner {
        width: 85%;
        padding: 0;
    }


    /* ----------------------------------------------------------
section
---------------------------------------------------------- */
    .section {
        padding: 100px 0 50px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/