
/* タイトル */

.menu-area{
    margin: 0 auto;
    padding-top: 200px;
    width: 100%;
}

.menu-area .ttl::before{
    content:"メニュー";
    color: #444444;
    position: absolute;
    font-size: 2.5rem;
    top: -32px;
    margin-left: 64px;
    letter-spacing: 0.04em;
}

_::-webkit-full-page-media, _:future, :root .menu-area .ttl::before {
    margin-left: 34px;
}

.dtl{
    width: auto;
    text-align: center;
    margin: 0 auto;;
    font-size: 1.8rem;
    margin-top: -44px;
    margin-bottom: 90px;
}



/* メニュー一覧ボタンーーーーーーーーー */
.menu-btn{
    display: block;
    margin-top: 60px;
    height: 200px;
}

.menu-btn .inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-btn .inner p{
    font-size: 14px;
    letter-spacing: 0.05em;
}

.menu-btn .inner p::before{
    content: url(../img/before-line.svg);
    display: inline-block;
}

.menu-btn .inner p::after{
    content: url(../img/after-line.svg);
    display: inline-block;
    margin-left: -6px;
}

.menu-btn .inner div{
    position: relative;
}

.menu-btn .inner a{
    display: inline-block;
    background-color: #A72019;
    color: #fff;
    font-size: 1.6rem;
    padding: 17px 48px;
    border-radius: 5px;
    transition: all 300ms;
}

.menu-btn .inner a:hover{
    margin-top: 5px;
    margin-left: 5px;
}

.menu-btn .inner div div{
    z-index: -2;
    position: absolute;
    content: "";
    width: 285px;
    height: 58px;
    background-color: #FFFFFA;
    border: 2px solid #444444;
    border-radius: 5px;
    top: 5px;
    left: 5px;
}




/* スライダー */

.contents{
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.menu-page-slider{
    display: block;
    width: 100%;
    margin: 0 auto;
}




.menu-page-slider li img{
    padding: 0 3vw;
}



.slick-slide {
    transition: .3s ease;
}
.slick-slide:not(.slick-current) {
    opacity: .5;
}


/* .slick-center {
    transform: scale(1.16);
  } */


/* スライダーのドット */

.menu-page-slider .slide-dots button{
    display: none;
}

.menu-page-slider .slide-dots{
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.menu-page-slider .slide-dots li{
    position: relative;
    margin-right: 24px;
}

.menu-page-slider .slide-dots li::after{
    position: absolute;
    content: "";
    background-color: #999999;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    top: 0;
    left: 0;
}

.menu-page-slider .slide-dots .slick-active::after{
    background-color: #a72019;
}





.menu-page-slider .prev-arrow::before{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content:"\f0a8";
    font-style: normal;
    color: #707070;
    font-size: 3.2em;
    top: 46%;
    left: 34%;
    z-index: 1;
    font-weight: 900;
}

.menu-page-slider .prev-arrow:hover::before{
    color: #444444;
}



.menu-page-slider .next-arrow::before{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content:"\f0a9";
    font-style: normal;
    color: #707070;
    font-size: 3.2em;
    top: 46%;
    right: 34%;
    z-index: 1;
    font-weight: 900;
}

.menu-page-slider .next-arrow:hover::before{
    color: #444444;
}





/* ページトップボタン */
footer .page-top-btn{
    max-width: 1200px;
    margin: 0 auto;
    height: 100px;
    position: relative;
    display: table-footer-group;
}


footer .page-top-btn a img:hover{
    margin-bottom: 20px;
}

/* フッターの自転車 */

.footer-illust{
    margin-left: 40px;
    margin-bottom: -3px;
}


@media screen and (max-width:1024px){

    .menu-page-slider .prev-arrow::before{
        font-size: 6em;
        top: 45%;
        left: 19%;
    }

    .menu-page-slider .next-arrow::before{
        font-size: 6em;
        top: 45%;
        right: 19%;
    }

    .menu-page-slider li img {
        padding: 0 1.5vw;
    }

}

@media screen and (max-width:768px){

    .menu-page-slider .prev-arrow::before{
        font-size: 5em;
        top: 45%;
        left: 19%;
    }

    .menu-page-slider .next-arrow::before{
        font-size: 5em;
        top: 45%;
        right: 19%;
    }

    .menu-page-slider li img {
        padding: 0 1.5vw;
    }

}

@media screen and (max-width:700px){

    .menu-page-slider .prev-arrow::before{
        font-size: 4em;
        top: 45%;
        left: 10%;
    }

    .menu-page-slider .next-arrow::before{
        font-size: 4em;
        top: 45%;
        right: 10%;
    }

    .menu-page-slider li img {
        padding: 0 11.5vw;
    }

    .footer-illust img{
        width: 36vw;
    }

}




@media screen and (max-width:600px){


    .menu-area .ttl::before{
        content:"メニュー";
        color: #444444;
        position: absolute;
        font-size: 2rem;
        top: -22px;
        margin-left: 64px;
        letter-spacing: 0.04em;
    }

    _::-webkit-full-page-media, _:future, :root .menu-area .ttl::before {
        margin-left: 34px;
    }

    .menu-area .dtl{
        width: auto;
        text-align: center;
        margin: 0 auto;;
        font-size: 1.6rem;
        margin-top: -44px;
        margin-bottom: 90px;
        padding: 0 5%;
    }

    footer .page-top-btn a img {
        margin-right: 20px;
    }

}

@media screen and (max-width:550px){

    .menu-page-slider .prev-arrow::before{
        font-size: 4em;
        top: 45%;
        left: 6%;
    }

    .menu-page-slider .next-arrow::before{
        font-size: 4em;
        top: 45%;
        right: 6%;
    }

    .menu-page-slider li img {
        padding: 0 6.5vw;
    }

}

@media screen and (max-width:450px){

    

    .menu-area .ttl::before{
        content:"メニュー";
        color: #444444;
        position: absolute;
        font-size: 1.6rem;
        top: -18px;
        margin-left: 37px;
        letter-spacing: 0.04em;
    }

    _::-webkit-full-page-media, _:future, :root .menu-area .ttl::before {
        margin-left: 27px;
    }

    .menu-area .dtl{
        width: auto;
        text-align: center;
        margin: 0 auto;
        font-size: 1.4rem;
        margin-top: -44px;
        margin-bottom: 90px;
    }

    .menu-page-slider .prev-arrow::before{
        font-size: 4em;
        top: 45%;
        left: 7%;
    }

    .menu-page-slider .next-arrow::before{
        font-size: 4em;
        top: 45%;
        right: 7%;
    }

    .menu-page-slider li img {
        padding: 0 4.5vw;
    }


}



@media screen and (max-width:350px){

    .menu-area .dtl{
        padding: 0 3%;
    }

}