#hero {
    position: relative;
    width: 100%;
    height: clamp(600px, 80vh, 800px);
    overflow: hidden;
}

#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

section#concept {
    border-radius: 0 0 var(--radius-base) 0;
    padding-top: clamp(6rem, 10vw, 10rem);
}

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

#concept .container.flex>div {
    width: 60%;
}

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

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

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

/* #concept .img-1::before {
    position: absolute;
    display: block;
    content: "";
    width: 110%;
    height: 110%;
    background-color: var(--c-accent);
    top: 3rem;
    right: 3rem;
    z-index: -1;
    opacity: .1;
} */

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

/* #overview .fade-in-up:last-child {
    margin-top: 14rem;
} */

#overview figure {
    gap: 6rem;
}

#overview figure>img {
    width: 50%;
    box-shadow: var(--shadow);
}

/* #overview li:first-child {
    border-top: 1px solid var(--c-accent);
} */

#overview li {
    /* border-bottom: 1px solid var(--c-accent); */
    padding-block: 8rem;
}

#overview figcaption {
    width: 50%;
    position: relative;
}

#overview figcaption>div {
    margin-bottom: 8rem;
}

#overview figure p {
    border-top: 1px solid var(--c-accent);
    padding-top: 2rem;
}

#overview h3 {
    /* border-bottom: 3px solid var(--c-accent); */
    /* margin-bottom: 1rem; */
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
}

#overview h3 span {
    line-height: 1em;
    padding-top: .5em;
}

#overview figcaption img {
    position: absolute;
    top: 0;
    right: 0;
    height: clamp(4rem, 5vw, 5rem);
    width: auto;
    opacity: .6;
}

#overview figcaption ul {
    line-height: 1.5em;
    margin-top: 1rem;
}

#overview h3 span {
    display: block;
}

#overview figcaption a {
    margin-left: auto;
}

section#list {
    border-radius:  0 0 var(--radius-base) 0;
}

#list::before {
    /* display: none; */
    left: 0;
}

#list ol.flex {
    flex-wrap: wrap;
    row-gap: 6rem;
}

#list li {
    width: 32%;
    position: relative;
    /* box-shadow: var(--shadow); */
    border-radius: 2rem;
    box-shadow:  0 0 10px rgba(143, 139, 136, 0.3);
}

#list ol {
    list-style: none;
    counter-reset: item;
}

#list li img {
    opacity: .6;
}

#list li::before {
    content: counter(item);
    position: absolute;
    top: -.3em;
    left: .1em;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: bold;
    color: var(--c-accent);
}

#list ol li {
    counter-increment: item;
    background-color: #fff;
    padding-block: 6rem;
    padding-inline: var(--pd-inline);
}

#list figure img {
    margin-bottom: 1rem;
    height: clamp(6rem, 10vw, 10rem);
    margin-bottom: 3rem;
}

#list figcaption p:first-child {
    border-top: 1px solid var(--c-accent);
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

#access::before {
    left: 0;
}


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

#access dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: min(3vw, 2rem);
}

#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 div.map {
    width: 50%;
    aspect-ratio: 3/2;
}

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

@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 .h2-wrap {
        margin-inline: auto;
    }

    #concept .flex div.img-1 {
        width: 80%;
    }

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

    #concept .img-2 {
        display: none;
    }

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

    #overview figure {
        gap: 2rem;
    }

    #overview figcaption>div {
    margin-bottom: 5rem;
}

#overview li {
    padding-block: 6rem;
}

    #top-page #list ol.flex li {
        width: 85%;
    }

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

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