header {
    transition: all 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(0);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


main {
    padding-top: 0;
}

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

#concept img {
    box-shadow: var(--shadow);
}

#concept .flex:has(.text-content) {
    row-gap: 4rem;
}

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

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

#concept .img-1 {
    width: 40%;
}

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

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

#concept>.before::before {
    width: calc(50vw - (50%) + 38%);
    height: 60%;
    bottom: -6rem;
    right: calc(-1 * (50vw - (50%)));
}

#concept .img-content.before::before {
    display: none;
}

section#origin {
    padding-block: clamp(6rem, 10vw, 8rem);
}

#origin {
    background-image: url(/assets/img/common/bg_01.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: -10;
}

#origin::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: .4;
    z-index: -1;
}

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

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

#menu li {
    width: 46%;
    box-shadow: var(--shadow);
}

#menu li:nth-child(even) {
    margin-top: 8rem;
}

#menu figcaption {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 2rem min(3vw, 2rem) 3rem;
}

#menu h3 span {
    color: var(--c-accent);
    display: block;
}

#menu p {
    margin-bottom: 2rem;
}

#menu .effect {
    gap: .4em;
    flex-wrap: wrap;
}

#menu .effect span {
    color: var(--c-light);
    border: 1px solid var(--c-light);
    border-radius: 1em;
    padding-inline: .7em;
    padding-block: .4em .5em;
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 1em;
}

#menu .btn {
    margin-top: 8rem;
}

#menu .before::before {
    width: calc((50vw - 50%) + 90%);
    height: 101%;
    bottom: -8rem;
    left: calc(-1 * (50vw - 50%));
}


#instagram .btn {
    gap: .5em;
}

section#access {
    padding-bottom: clamp(4rem, 8vw, 14rem);
}

#access h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.5rem, 2.5vw, 3.3rem);
    font-weight: 300;
}

#access h3 span {
    color: #000;
    padding-left: .3em;
    font-size: 1.4rem;
}

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

#access div.flex>* {
    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;
}

#access dd.last {
    margin-bottom: 0;
}

#access dd+dd {
    margin-top: -1.5rem;
}

#access .before {
    display: block;
}

#access .before::before {
    width: 100%;
    height: 100%;
    top: min(3vw, 3rem);
    right: min(3vw, 3rem);
}

@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 h2::before {
        right: 0;
        margin-inline: auto;
    }

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

    #concept>.before::before {
        display: none;
    }

    #concept .img-content.before::before {
        height: 80%;
        width: 60vw;
        left: -5vw;
        bottom: -2rem;
        z-index: -1;
        display: block;
    }

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

    #menu ul {
        row-gap: 6rem;
    }

    #menu li:nth-child(even) {
        margin-top: 0;
    }

    #menu .btn {
        margin-top: 6rem;
    }

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

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