#hero.slider {
    position: relative;
    width: 100%;
    height: clamp(600px, 80vh, 800px);
    overflow: hidden;
}

#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#concept .flex>img {
    width: 40%;
}

#concept .flex>div {
    width: 60%;
}

#concept .text-block {
    margin-bottom: 6rem;
}

#menu .menu-list {
    padding-bottom: 10rem;
    margin-bottom: 15rem;
}

#menu .menu-list .flex {
    margin-bottom: 6rem;
    text-align: center;
}

#menu .menu-list .flex>* {
    width: 30%;
}

#menu figure div:has(>img) {
    margin-bottom: 1rem;
}

#menu .menu-pick {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 6rem;
}

#menu .menu-pick img {
    width: 50%;
}

#menu .menu-pick>div {
    width: 50%;
}

#menu .menu-pick .text-block {
    margin-bottom: 5rem;
}

.slider-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.slide-track {
    display: flex;
    padding: 0;
    margin: 0;
}

.slide-track li {
    flex: 0 0 auto;
    width: 20vw;
    list-style: none;
}

@media screen and (max-width:992px) {
    .slide-track li {
        width: 40vw;
    }
}

.slide-track img {
    display: block;
    width: 100%;
    height: auto;
}

section#staff {
    padding-top: clamp(10rem, 15vw, 15rem);
}

#staff ul {
    flex-wrap: wrap;
    row-gap: 5rem;
    margin-bottom: 6rem;
}

#staff li {
    position: relative;
    width: 30%;
}

#staff .role {
    position: absolute;
    content: "";
    top: -1rem;
    left: -1rem;
    padding: .5em;
    background-color: var(--c-accent);
    color: #fff;
    font-family: "Marcellus", serif;
    font-size: clamp(1.1rem, 1vw, 1.3rem);
    line-height: 1.2em;
    z-index: 5;
}

#staff li div {
    margin-bottom: 1.5rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

#staff .work {
    color: var(--c-accent);
    font-size: 1.4rem;
    line-height: 1em;
}

#news {
    background-image: url(/assets/img/instagram/img_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

#news .text-center {
    margin-bottom: 4rem;
    letter-spacing: .2em;
}

section#access {
    padding-bottom: 0;
    margin-bottom: var(--p-section-bottom);
}

#access dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 2em;
}

#access dt {
    font-weight: 400;
}

#access dd {
    grid-column: 2;
    margin-bottom: 1.5rem;
}

#access dd+dd {
    margin-top: -1.5rem;
}

#access .shop-name {
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

#access .shop-address {
    margin-bottom: 2rem;
}

#access .flex>img {
    transform: translateY(5rem);
    width: 50%;
}

section#map {
    padding-top: 0;
}

#map div {
    aspect-ratio: 16/9;
    overflow: hidden;
}

#map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:992px) {
    .btn {
        margin-inline: auto;
    }

    #concept {
        text-align: center;
    }

    #concept h2 {
        margin-bottom: 2rem;
    }

    #concept .flex {
        flex-direction: column-reverse;
        gap: 8rem;
    }

    #concept .flex>img,
    #concept .flex>div {
        width: 100%;
    }

    #concept .text-block {
        margin-bottom: 3rem;
    }

    #menu .menu-list {
        padding-bottom: 10rem;
        margin-bottom: 0;
    }

    #menu .menu-list .flex {
        margin-bottom: 6rem;
        row-gap: 4rem;
    }

    #menu .menu-list .flex>* {
        width: 100%;
    }

    #menu .menu-pick {
        padding: 4rem 2rem 6rem;
        gap: 2rem;
    }

    #menu .menu-pick.flex>* {
        width: 100%;
    }

    #staff ul {
        row-gap: 4rem;
    }

    #staff li {
        width: 47%;
    }

    #access .flex {
        gap: 3rem;
    }

    #access .flex>* {
        width: 100%;
    }

    #access h2 {
        margin-bottom: 3rem;
    }

    #access .flex>img {
        width: 100%;
        transform: translateY(0);
    }

    #access .shop-name {
        margin-bottom: .5em;
    }
}