section#concept-page,
section#staff {
    padding-bottom: 0;
}

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

#concept-page img {
    margin-bottom: 3rem;
    border-radius: var(--radius);
}

#staff li {
    width: 100%;
    border-radius: 2rem;
}

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

#staff .face {
    position: relative;
    width: 30%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 8px solid var(--c-orange);
}

#staff .eyelash .face {
    border-color: var(--c-blue);
}

.skill {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: min(8vw, 12rem);
    pointer-events: none;
}

#staff .photo {
    border-radius: 50%;
}

#staff .text-block {
    width: 60%;
}

#staff h3 {
    margin-bottom: .5em;
    font-size: clamp(2.6rem, 3vw, 3.6rem);
    font-family: "Lexend", sans-serif;
    font-weight: 500;
}

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

.map {
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
}

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

@media screen and (max-width: 900px) {
    #concept-page .text-center {
        text-align: left;
    }

    #concept-page br {
        display: none;
    }

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

    .skill {
        width: min(20vw, 12rem);
        top: -1rem;
        left: min(2vw, 1rem);
    }

    #staff .face {
        max-width: 500px;
    }

    #concept-detail main .flex.flex-column-sp>* {
        width: 100%;
    }

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