#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;
    border-radius: 0;
}

#hero {
    position: relative;
}

#hero::before {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10;
    opacity: .2;
}

#concept .text-content {
    width: 40%;
}

#concept .img-content {
    width: 60%;
    gap: 2rem;
}

#concept .img-1 {
    width: 45%;
    transform: translateY(4rem);
}

#concept .img-2 {
    width: 55%;
}

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

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

#features {
    position: relative;
}

#features .container {
    max-width: 1000px;
}

#features::before {
    position: absolute;
    width: 100%;
    display: block;
    content: "";
    height: 70%;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: var(--c-sub);
}

#features .flex {
    row-gap: 3rem;
}

#features li {
    z-index: 2;
    width: 31%;
    background-color: var(--c-main);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid var(--c-sub);
}

#features li img {
    width: 25%;
    box-shadow: none;
}

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

#menu .easthetic img {
    width: 55%;
}

#menu .easthetic figcaption {
    width: 45%;
}

#menu ul ul {
    margin-top: 16rem;
    column-gap: 8rem;
}

#menu ul ul li:last-child {
    transform: translateY(-6rem);
}

#menu ul ul img {
    margin-bottom: 2rem;
}

#menu ul ul figcaption {
    border-left: 2px solid var(--c-accent);
    padding-inline: 2rem;
    padding-block: 1rem;
}

#instagram {
    background-color: var(--c-sub);
}

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

#access div.flex img {
    width: 50%;
}

#access .text-content {
    width: 50%;
}

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

.map-link {
    margin-left: 1em;
    color: var(--c-accent);
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

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

    #top-page main .flex.flex-column-sp > *,
    #top-page main .flex.flex-column-re-sp > * {
        width: 100%;
    }

    #concept {
        text-align: center;
    }

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

    #concept .img-1 {
        transform: translateY(0);
    }

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

    #features::before {
        height: 100%;
    }

    #menu {
        text-align: center;
    }

    #menu ul ul figcaption {
    border-left: none;
    padding-inline: 0;
}

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

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

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