@charset "utf-8";
/* 共通部分 */
body{
    background-color: #303136;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;  
}
h1{
    font-size: 20px;
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: normal;
}
.monoton-regular{
    font-family: "Monoton", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}
h2{
    text-align: center;
    margin-bottom: 40px;
}
h2 .subtitle{
    font-size: 28px;
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: normal;
    color: #9A715D;
    position: relative;
    margin-bottom: 10px;
}
h2 .subtitle:after{
    position: absolute;
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    border-bottom: 2px solid;
}
h2 .maintitle{
    font-family: "M PLUS 1p", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 300%;
}
a{
    font-family: "Lato", serif;
    font-style: normal;
}
p{
    font-family: "M PLUS 1p", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 180%;
    text-indent: 1rem;
}

.main-contents{
    background-color: #fff;
}
.inner{
    margin: 0 auto;
    width: 960px;
}
[data-fadeIn]{
    opacity: 0;
    transition: all 1.0s;
    transform: translateY(130px);
}
[data-fadeIn].is-over{
    opacity: 1;
    transform: translateY(0);
}


/* header */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 60px;
    color: #D9C2AE;
    background-color: #303136;
    z-index: 100;
}
.header-inner{
    height: 100%;
    position: relative;
}
h1 span{
    font-size: 36px;
}

.menu{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 600;
}
.menu-list{
    display: flex;
    flex-wrap: wrap;
}
.menu-item{
    margin-right: 15px;
}
.menu-item:last-child{
    margin-right: 0;
}
.menu-item a{
    color: #D9C2AE;
}

/* key-visual */
.key-visual{
    background-color: #303136;
    width: 100%;
    position: relative;
}
.key-visual img{
    width: 100%;
    display: block;
}
.key-visual-text{
    position: absolute;
    top: 35%;
    left: 10%;
}
.key-visual-text p{
    font-size: 36px;
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: normal;
    color: #D9C2AE;
}

/* introduction */
.introduction{
    background-color: #D9C2AE;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    padding-top: 60px;
    padding-bottom: 120px;
}
.introduction-text{
    margin-bottom: 40px;
}
.btn-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}
.btn-wrap .btn{
    position: relative;
    display: inline-block;
    width: calc((100% / 3) - 20px);
    padding: 15px 0;
    border-radius: 100px;
    color: #fff;
    font-family: "M PLUS 1p", serif;
    font-weight: 600;
    overflow: hidden;
    background-color: #9A715D;
    z-index: 1;
}
.btn-wrap .btn:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    transform-origin: left bottom;
    transform: scale(1, 0);
    transition: transform .5s;
    background-color: #303136;
    z-index: -1;
}
.btn-wrap .btn:hover:before{
    transform-origin: left top;
    transform: scale(1, 1);
    transition: transform .5s;    
}
.btn-wrap .btn:not(:hover):before{
    transform: scale(1, 0);
}

/* about */
.about{
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}
.about-img-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 40px;
}
.about-img-wrap img{
    width: calc(50% - 10px);
    display: block;
    border-radius: 10px;
}

/* reasons */
.reasons{
    background-color: #D9C2AE;
    -webkit-clip-path: polygon(0 0, 50% 50px, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    clip-path: polygon(0 0, 50% 50px, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    padding-top: 110px;
    padding-bottom: 120px;
}
.reasons-list{
    width: 100%;
}
.reasons-list li{
    border-radius: 10px;
    margin-bottom: 40px;
}
.reasons-list li:last-child{
    margin-bottom: 0;
}
.reasons-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.reasons-item:nth-child(2){
    flex-direction: row-reverse;
}
.reasons-img{
    width: 350px;
}
.reasons-img img{
    width: 100%;
    display: block;
    border-radius: 10px 0 0 10px/10px 0 0 10px;
}
.reasons-item:nth-child(2) > .reasons-img > img{
    border-radius: 0 10px 10px 0/0 10px 10px 0;
}
.reasons-info{
    width: calc(100% - 350px - 20px);
    margin: 10px 0;
    position: relative;
}
.reasons-info-title{
    font-size: 20px;
    font-weight: 600;
    color: #9A715D;
    padding-left: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #9A715D;
    margin-bottom: 10px;
    position: relative;
}
.reasons-info-title::before{
    position: absolute;
    top: 40%;
    left: 5px;
    transform: translateY(-50%);
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/bean.svg)  no-repeat center/contain;
}
.reasons-info-text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.reasons-info .more-btn{
    position: absolute;
    right: 0;
    bottom: 0;
}
.more-btn{
    display: block;
    width: 180px;
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #9A715D;
    border: 1px solid #D9C2AE;
    border-radius: 30px;
    transition: .4s;
    cursor: pointer;
}
.more-btn:hover{
    color: #9A715D;
    background-color: #fff;
    border: 1px solid #9A715D;
}

/* recipe */
.recipe{
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 80px;
}
.recipe-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.recipe-card{
    width: calc(100% / 3 - 20px);
    background-color: #D9C2AE;
    border-radius: 10px;
}
.recipe-img img{
    width: 100%;
    display: block;
    border-radius: 10px 10px 0 0/10px 10px 0 0;
}
.recipe-text{
    padding-bottom: 30px;
}
.recipe-name{
    color: #fff;
    background-color: #9A715D;
    font-weight: 600;
    line-height: 3rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.recipe-text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin:10px 20px 20px 20px;
}
.recipe-text .more-btn{
    margin: 0 auto;
}

/* footer================================= */
.footer{
    background-color: #303136;
}
.footer-inner{
    padding: 10px 0;
}
.footer .logo{
    text-align: center;
    font-size: 12px;
    color: #D9C2AE;
}
.footer .monoton-regular{
    font-size: 14px;
}

/* ===タブレット=========================== */
@media screen and (max-width: 1024px){
    .inner{
        width: 90%;
    }
}

/* ===スマホ=========================== */
@media screen and (max-width: 768px){
    
    /* 共通部分 */
    h1{
        font-size: 18px;
    }
    .inner{
        width: auto;
        margin: 0 20px;
    }

    /* header */
    .header{
        height: 45px;
    }
    .header-inner .logo{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    h1 span{
        font-size: 24px;
    }
    .header-links{
        position: fixed;
        top: 45px;
        right: -280px;
        width: 280px;
        background-color: rgba(48,49,54,.95);
        z-index: 10;
        transition: all 0.4s;
    }

    .menu{
        position: static;
        top: auto;
        right: auto;
        transform: none;
    }
    .menu-list{
        display: block;
    }
    .menu-item{
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
        border-bottom: 1px solid #D9C2AE;
        text-align: center;
    }
    .menu-item a{
        font-size: 20px;
    }
        /* ハンバーガーメニュー */
    .menu-trigger{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        display: block;
        z-index: 100;
        transition: all 0.4s;
    }
    .menu-trigger span{
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #D9C2AE;
        transition: all 0.4s;
    }
    .menu-trigger span:nth-of-type(1){
        top: 0;
    }
    .menu-trigger span:nth-of-type(2){
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-trigger span:nth-of-type(3){
        bottom: 0;
    }

    /* ハンバーガーメニュー is-active */
    .header-links.is-active{
        right: 0;
    }
    .menu-trigger.is-active span:nth-of-type(1){
        transform: translateY(9px) rotate(-315deg);
    }
    .menu-trigger.is-active span:nth-of-type(2){
        opacity: 0;
    }
    .menu-trigger.is-active span:nth-of-type(3){
        transform: translateY(-9px) rotate(315deg);
    }

    /* key-visual */
    .key-visual-text p{
        font-size: 24px;
        line-height: 150%;
        -webkit-text-stroke: 1px #303136;
        text-shadow:
           3px 3px 0 #303136,
         -1px -1px 0 #303136,  
          1px -1px 0 #303136,
          -1px 1px 0 #303136,
           1px 1px 0 #303136;
    }

    /* introduction */
    .btn-wrap{
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .btn-wrap .btn{
        width: 100%;
        margin-bottom: 10px;
    }

    /* about */
    .about-img-wrap{
        display: block;
    }
    .about-img-wrap img{
        width: 100%;
    }
    .about-img-wrap img:nth-child(1){
        margin-bottom: 10px;
    }

    /* reasons */
    .reasons-item{
        display: block;
    }
    .reasons-item:nth-child(2){
        flex-direction: row;
    }
    .reasons-img{
        width: 100%;
    }
    .reasons-img img{
        width: 100%;
        border-radius: 10px;
    }
    .reasons-item:nth-child(2) > .reasons-img > img{
        border-radius: 10px;
    }    
    .reasons-info{
        width: 100%;
        height: 220px;
    }
    .more-btn{
        width: 140px;
    }

    /* recipe */
    .recipe{
        padding-bottom: 40px;
    }
    .recipe-list{
        display: block;
        padding-bottom: 30px;
    }
    .recipe-list li{
        margin-bottom: 20px;
    }
    .recipe-list li:last-child{
        margin-bottom: 0;
    }
    .recipe-card{
        width: 100%;
    }

}