@charset "UTF-8";



img {
    max-width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sec_title {
    font-size: 2.25rem;
    margin-bottom: 100px;
    text-align: center;
}

.item_big {
    width: 60%;
}

.item_small {
    width: 35%;
    position: sticky;
    top: 0;
}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s;
}

.item_big .grid_menu img {
    box-shadow: 0 0 10px 8px #ccc;
}



/* header */

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #24140e;
    height: 100px;
    padding: 3%;
}

#header  .logo {
    width: 100px;
    height: 100px;
    z-index: 20;
}

#header .logo img {
    border-radius: 100%;
}

.list {
    display: flex;
}

.list li {
    margin-right: 5%;
    margin-left: 10%;
}

.list li a {
    color: #fff;
}

#header .sns {
    width: 120px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#header .sns img {
    width: 50px;
    margin-top: 25px;
}

.inline_block {
    display: inline-block;
}

#header nav {
    width: calc(100% - 6% - 220px);
}



/* mainvisual */

.mainvisual {
    width: 100%;
    height: calc(90vh - 70px);
    position: relative;
    margin-bottom: 120px;
}

.mainvisual img {
    width: 100%;
    height: calc(90vh - 70px);
    object-fit: cover;
}

.mainvisual .text {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 10;
}

.mainvisual .text p {
    font-size: 70px;
    color: #fff;
    border-bottom: solid 2px #fff;
}



.mainvisual .fade li {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    animation: fade 15s infinite;
}

.mainvisual .fade li:nth-child(1) {
    animation-delay: 0s;
}

.mainvisual .fade li:nth-child(2) {
    animation-delay: 5s;
}

.mainvisual .fade li:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fade {
    0% {
    opacity: 0;
    }

    15% {
    opacity: 1;
    }

    30% {
    opacity: 1;
    }

    45% {
    opacity: 0;
    }

    100% {
    opacity: 0;
    }
}

/* pickup */

#pickup {
    width: 100%;
    padding: 100px 0 50px 0;
    margin-bottom: 30vh;
}

#pickup .slick_area {
    font-size: 0;
}

#pickup .slick_area li {
    padding: 0 15px;
}



/* about */

#about {
    background: linear-gradient( #24140e, #92492f, #fff);
    padding-bottom: 1px;
    padding-top: 50px;
}

.about {
    display: flex;
    justify-content: space-between;
    margin-bottom: 400px;

}

.about_title {
    font-size: 2.25rem;
    margin-bottom: 100px;
    text-align: center;
    color: #efe5e1;
}

.about .sec_text {
    font-size: 1.25rem;
    line-height: 3;
    color: #fff;
}



.sec_text {
    font-size: 1.25rem;
    line-height: 3;
}




/* drink */

#drink {
    display: flex;
    justify-content: space-between;
    margin-bottom: 400px;
    align-items: flex-start;
}

.grid_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.grid_menu img {
    margin-bottom: 10px;
    vertical-align: top;
}

/* food */

#food {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 400px;
}

.food {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 400px;
}

/* place */

#place {
    margin-bottom: 200px;
    background: linear-gradient( #fff, #92492f, #24140e);
    padding: 50px;
}

iframe {
    width: 100%;
    margin-bottom: 50px;
}

/* footer */

#footer {
    display: flex;
    background-color: #24140e;
    align-items: center;
    height: 40vh;
    width: 100%;
}

.footer {
    display: flex;
    justify-content:space-around;
}

.footer_box {
    width: 40%;
    margin-left: 100px;
}

.footer_box dl {
    display: flex;
    margin-bottom: 40px;
    color: #fff;
}

.footer_box dt {
    width: 25%;
}


#footer .logo {
    width: 100px;
    height: 100px;
}

#footer .logo img {
    border-radius: 100%;
}


#footer .sns {
    width: 120px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#footer .sns img {
    width: 50px;
    margin-top: 25px;
}

.to_top {
    width: 50px;
    height: 50px;
    background-color: #121212;
    border: solid 1px #fff;
    border-radius: 50%;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 20;
}

.to_top::after {
    content: "";
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    position: relative;
    left: 17px;
    bottom: 1px;
}


/* responsive */

@media(max-width: 760px) {

    .item_small {
        width: 100%;
        text-align: center;
        position: static;
    }

    .item_big {
        display: flex;

    }

    .sec_text {
        margin-bottom: 50px;
    }
    
    .sec_title {
        cursor: pointer;
    }

    
    
    
    /* header */
    .navi {
        width: 100%;
        height: 100vh;
        background: #24140e;
        padding: 25px;
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 20;
        opacity: 0;
        transition: all 0.6s ease;
        transition: 2s;
    }
    
    .open .navi {
        left: 0;
        opacity: 1;
        
    }
    
    .navi ul.nav-menu {
        margin-bottom: 30px;
    }
    
    .navi ul li {
        padding: 10px 0;
    }
    
    
    .hamburger {
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: absolute;
        top: 35px;
        right: 20px;
        transition: 0.5s;
        z-index: 20;
    }
    
    .hamburger span {
        width: 40px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        display: block;
        position: absolute;
        left: 0;
        transition: 0.5s;
    }
    
    .hamburger span:nth-child(1) {
        top: 4px;
    }
    
    .hamburger span:nth-child(2) {
        top: 14px;
    }
    
    .hamburger span:nth-child(3) {
        bottom: 4px;
    }
    
    
    .open .hamburger span:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
    }
    
    .open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .open .hamburger span:nth-child(3) {
        transform: translateY(-10px) rotate(45deg);
    }
    
    #mask {
        display: none;
        transition: 0.5s;
    }
    
    
    .list {
        flex-direction: column;
        align-items: center;
    }
    
    .list li {
        margin-bottom: 50px;
    }

    /* mainvisual */

    
    .accordion_inner {
        display: none;
        margin-top: 50px;
    }

        /* .accordion {
            width: 45px;
            height: 45px;
            margin-bottom: 80px;
            transition: 0.5s;
            z-index: 20;
            position: relative;
            cursor: pointer;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .accordion span {
            background-color: #6f5436;
            width: 45px;
            height: 5px;
            display: block;
            position: absolute;
            transition: 0.5s ease;
            left: 0;
        }

        .accordion span:nth-child(1) {
            top: 10px;
            left: 0;
            transform: translateX(10px) rotate(-45deg);
        }

        .accordion span:nth-child(2) {
            top: 10px;
            right: 0;
            transform: translateX(-19px) rotate(45deg);
        }



        .open.accordion span:nth-child(1) {
            transform: translateX(-10px) rotate(45deg);
        }

        .open.accordion span:nth-child(2) {
            transform: translateX(-39px) rotate(-45deg);
        } */

        .accordion_btn {
            width: 100px;
            height: 100px;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .accordion_before {
            width: 45px;
            height: 45px;
            margin-bottom: 80px;
            z-index: 20;
            cursor: pointer;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .accordion_before span {
            background-color: #6f5436;
            width: 45px;
            height: 5px;
            display: block;
            position: absolute;
        }

        .accordion_before span:nth-child(1) {
            left: 15px;
            transform: translateY(10px) rotate(-45deg);
        }
        .accordion_before span:nth-child(2) {
            right: 14px;
            transform: translateY(10px) rotate(45deg);
        }

        .accordion_after {
            width: 45px;
            height: 45px;
            margin-bottom: 80px;
            z-index: 10;
            cursor: pointer;
            position: absolute;
            display: none;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .accordion_after span {
            background-color: #6f5436;
            width: 45px;
            height: 5px;
            display: block;
            position: absolute;
        }

        .accordion_after span:nth-child(1) {
            left: -16px;
            transform: translateY(10px) rotate(-45deg);
        }

        .accordion_after span:nth-child(2) {
            right: -13px;
            transform: translateY(10px) rotate(45deg);
        }




        .grid_menu {
            margin-top: 50px;
            padding-right: 20px;
        }




        /* mainvisual */

        .mainvisual {
            height: calc(90vh - 250px);
        }

        .mainvisual .text {
            left: 8%;
            /* background-color: rgba(69, 44, 28, 0.8); 焦茶色に透過設定 */
            padding: 20px;
            /* border-radius: 20px; /* 角を丸くする */
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);  */ 
            }
        
        

        .mainvisual .text p {
            font-size: 35px;
        }
    


        #pickup {
            margin-bottom: 100px;
        }


        /* about */

        .about {
            flex-direction: column;
            align-items: center;
        }

        .about_title {
            margin-top: 50px;
            margin-bottom: 20px;
        }

        /* drink */


        #drink {
            flex-direction: column;
            align-items: center;
            margin-bottom: 200px;
        }

        /* breakfast */
        #food {
            flex-direction: column-reverse;
            align-items: center;
            margin-bottom: 200px;
        }

        /* lunch */
        #lunch {
            flex-direction: column;
            align-items: center;
            margin-bottom: 200px;
        }

        /* dessert */
        #dessert {
            flex-direction: column-reverse;
            align-items: center;
            margin-bottom: 200px;
        }

        /* footer */

        #footer {
            height: 100%;
            width: 100%;
            padding-top: 20px;
        }

        .footer {
            flex-direction: column;
            align-items: center;
        }

        #footer .logo {
            margin-bottom: 50px;
        }

        .footer_box {
            text-align: center;
            margin-right: 100px;
        }

        .footer_box dl {
            flex-direction: column;
        }

        .footer_box dt {
            width: 100%;
            margin-bottom: 10px;
        }


    }

    
