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

header h1 {
    pointer-events: none;
}

header.scrolled h1 {
    pointer-events: auto;
}

#hero {
    position: relative;
}

#hero .logo {
    position: absolute;
    width: clamp(100px, 50vw, 300px);
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: .9;
}

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

#hero .slider::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

#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,
#access {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

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

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

#recommend li {
    width: 31%;
    margin-bottom: 6rem;
    background-color: var(--c-base-light);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #A57051;
    background: linear-gradient(0deg, #6b4731 0%, #4b3222 100%);
}

#recommend li div {
    transform: translateY(.5em);
}

#recommend li div p:first-child {
    font-size: 1.7rem;
    margin-bottom: .8em;
}


#point li:not(:last-child) {
    margin-bottom: 8rem;
}

#point li {
    background-color: rgba(0, 0, 0, 0.2);
    background-color: var(--c-base);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#point .number {
    font-size: clamp(4.5rem, 5vw, 8rem);
    margin-bottom: .2em;
    padding-right: .1em;
    color: var(--c-accent);
    font-family: "Italianno", cursive;
}

#point h3 {
    font-size: clamp(1.8rem, 1.5vw, 2.2rem);
    margin-bottom: .5em;
}

#point ul .flex img {
    width: 53%;
}

#point ul .flex figcaption {
    width: 47%;
}

#point figcaption {
    padding-inline: 2.5%;
}

#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: 2.6rem;
    letter-spacing: .15em;
}

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

#access .flex .floor {
    width: 50%;
}

.map {
    aspect-ratio: 16/9;
    margin-top: 12rem;
    overflow: hidden;
    filter: brightness(80%) sepia(30%);
}

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

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

    #concept {
        text-align: center;
    }

    #concept br {
        display: none;
    }

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

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

    #recommend ul.flex>* {
        width: 100%;
        max-width: 300px;
    }

    #point .flex figcaption {
        padding-block: 2rem;
    }

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

    #point ul .flex img,
    #point ul .flex figcaption {
        width: 100%;
    }

    #access div div.flex {
        gap: 2.5rem;
    }

    #access .flex .floor {
        width: 100%;
    }

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

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