section:not(#hero) {
    padding-block: 12rem 12rem;
}

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

#hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#hero .slide.active {
    opacity: 1;
    z-index: 1;
}

#hero .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#catchphrase .lead {
    font-size: clamp(2.6rem, 3.5vw, 3rem);
}

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

#concept img {
    width: 40%;
}

#concept h2 {
    margin-bottom: 1.5em;
}

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

#recommend li:nth-child(n+2) {
    margin-top: 8rem;
}

#recommend figcaption div {
    margin-bottom: 3rem;
}

#recommend img {
    width: 40%;
}

#recommend figcaption {
    width: 60%;
}

#menu .flex {
    flex-wrap: wrap;
    row-gap: 8rem;
    margin-bottom: 8rem;
    text-align: center;
}

#menu .flex>* {
    width: 31%;
}

#menu figure img {
    margin-bottom: 1rem;
}

#news .text-center {
    margin-bottom: 4rem;
}

#news .btn .flex {
    gap: .5em;
}

.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 {
    width: 100%;
    height: auto;
    display: block;
}

#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;
}

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

.map {
    aspect-ratio: 16/9;
    margin-top: 12rem;
    overflow: hidden;
}

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

@media screen and (max-width:992px) {
    section:not(#hero) {
        padding-block: 10rem;
    }

    .btn {
        margin-inline: auto;
    }

    #concept {
        text-align: center;
    }

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

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

    #concept h2 {
        margin-bottom: 1em;
    }

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

    #recommend {
        text-align: center;
    }

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

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

    #news .flex {
        gap: 2rem;
    }

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

    #access .flex img {
        width: 100%;
        margin-bottom: 3rem;
    }

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

    .map {
        margin-top: 6rem;
    }
}