section#top {
    position: relative;
    padding-bottom: 0;
}

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

.flower {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

#top .flower-1 {
    top: 0rem;
    left: -3rem;
    width: clamp(15rem, 25vw, 30rem);
}

#top .flower-2 {
    bottom: -10rem;
    right: -2rem;
    width: clamp(10rem, 20vw, 25rem);
    transform: scaleX(-1);
}

#menu-nails h2 {
    color: var(--c-orange);
}

#menu-eyelash h2 {
    color: var(--c-blue);
}

section#point {
    padding-bottom: clamp(4rem, 5vw, 6rem);
}

#point h3 {
    color: #fff;
}

#point li {
    width: 30%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: #fff;
    background-color: var(--c-orange);
}

#menu-eyelash #point li {
    padding: 2rem;
    background-color: var(--c-blue);
}

.img-switch {
    position: relative;
    width: 10rem;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    margin-bottom: 1rem;
    overflow: hidden;
}

.img-switch img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    aspect-ratio: 1/1;
    margin: auto;
    object-fit: cover;
}

.img-switch .img1 {
    animation: switchOut 2s steps(1, end) infinite;
}

.img-switch .img2 {
    animation: switchIn 2s steps(1, end) infinite;
}

@keyframes switchOut {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes switchIn {
    0%,
    49% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

#point figcaption p {
    line-height: 1.5em;
}

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

#menu div.flex {
    flex-wrap: wrap;
    row-gap: 8rem;
}

#menu div:has(>table) {
    width: 48%;
    padding: var(--pd-card);
    padding-top: 4rem;
    border-radius: 1rem;
    border: 2px solid var(--c-orange);
    background-color: #fff;
}

#menu-eyelash #menu div:has(>table) {
    border-color: var(--c-blue);
}

#menu table {
    position: relative;
    width: 100%;
}

table caption {
    position: absolute;
    left: 0;
    top: -3em;
    padding: .2em .8em;
    background-color: var(--c-orange);
    color: #fff;
    border-radius: .5rem;
    font-size: 2rem;
}

#menu-eyelash table caption {
    background-color: var(--c-blue);
}

table th {
    font-weight: 400;
}

table td {
    text-align: right;
}

@media screen and (max-width:900px) {

    #point ul.flex {
        row-gap: 4rem;
    }

    #point li {
        width: 80%;
        max-width: 300px;
    }

    .img-switch {
        width: min(30vw, 12rem);
    }

    #menu div.flex {
        row-gap: 6rem;
    }

    #menu .flex div {
        width: 100%;
        max-width: 600px;
        padding-block: 3rem 2rem;
    }

    table caption {
        top: -2.5em;
    }
}