#hero {
    position: relative;
    height: clamp(500px, 75vh, 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;
}

#catchphrase {
    position: relative;
    overflow-x: hidden;
}

#catchphrase .flower-1 {
    position: absolute;
    top: 5rem;
    left: -4rem;
    width: clamp(15rem, 25vw, 30rem);
    z-index: 0;
    pointer-events: none;
}

#catchphrase .flower-2 {
    position: absolute;
    bottom: 5rem;
    right: -2rem;
    width: clamp(10rem, 20vw, 25rem);
    transform: scaleX(-1);
    z-index: 0;
    pointer-events: none;
}

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

#catchphrase .text-block {
    margin-bottom: 4rem;
}

#menu h2 {
    margin-bottom: 2em;
}

#menu ul li {
    position: relative;
}

#menu li:first-child {
    margin-bottom: 16rem;
}

#menu h3 {
    margin-bottom: .5em;
    line-height: 1.2em;
    font-size: clamp(2.6rem, 3vw, 3.6rem);
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    letter-spacing: .1em;
}

#menu li.eyelash h3 {
    color: var(--c-blue);
}

#menu figure {
    gap: min(10vw, 10rem);
}

#menu .img {
    position: relative;
    width: 50%;
}

#menu .img::before {
    display: block;
    content: "";
    position: absolute;
    top: -5%;
    left: -6%;
    width: 40%;
    aspect-ratio: 1/1;
    background-image: url(/assets/img/decoration/circle_orange.svg?cache=29);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#menu .eyelash .img::before {
    background-image: url(/assets/img/decoration/circle_blue.svg?cache=29);
    left: auto;
    right: -6%;
}

#menu .container-img {
    position: relative;
    max-width: 50rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 8px solid var(--c-orange);
}

#menu .eyelash .container-img {
    border-color: var(--c-blue);
}

#menu figure img {
    border-radius: 50%;
    overflow: hidden;
}

#menu li figcaption {
    position: relative;
    width: fit-content;
}

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

#menu .shine {
    position: absolute;
    height: fit-content;
    z-index: -1;
    pointer-events: none;
}

#menu .nails .shine {
    width: min(8vw, 3rem);
    height: fit-content;
    bottom: -5rem;
    right: -4rem;
}

#menu .eyelash .shine {
    width: min(9vw, 4rem);
    height: fit-content;
    top: -5rem;
    left: -6rem;
}

#step h2 {
    margin-bottom: .8em;
}

#step .container {
    padding-block: 8rem 6rem;
    padding-inline: min(4vw, 6rem);
    margin-bottom: clamp(4rem, 5vw, 6rem);
    border-radius: var(--radius);
    background-color: #fff;
    border: 2px solid var(--c-orange);
}

#step .flex {
    gap: 2rem;
}

#step .lead {
    margin-bottom: .5em;
    letter-spacing: .1em;
    font-size: clamp(1.8rem, 3vw, 2rem);
}

#step img {
    width: 20%;
    width: min(30%, 15rem);
    pointer-events: none;
}

#step .text-block {
    width: 80%;
}

#access .flex {
    position: relative;
}

#access .bubble {
    position: absolute;
    display: block;
    top: -3rem;
    left: -5%;
    width: clamp(10rem, 10vw, 12rem);
    z-index: 1;
    pointer-events: none;
}

#access .floor {
    width: 50%;
    border-radius: var(--radius);
}

.map {
    margin-top: 12rem;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

    #menu {
        text-align: center;
    }

    #menu li:first-child {
        margin-bottom: 8rem;
    }

    #menu figure {
        gap: 3rem;
    }

    #menu h3 {
        margin-bottom: .2em;
    }

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

    #menu .img {
        width: 70%;
        max-width: 400px;
    }

    #menu .container-img {
        margin-inline: auto;
    }

    #menu .nails .shine {
        bottom: 0rem;
        right: -8vw;
    }

    #menu .eyelash .shine {
        left: -8vw;
    }

    #step .container {
        padding-block: 4rem;
    }

    #step h2 {
        width: fit-content;
        margin-inline: auto;
    }

    #step img {
        width: 50%;
    }

    #step .text-block {
        width: 100%;
    }

    #access .floor,
    #access .info {
        width: 100%;
    }

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

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