#hero {
    position: relative;
    height: clamp(500px, 80vh, 900px);
    overflow: hidden;
}

#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

section#concept {
    padding-top: clamp(8rem, 18vw, 35rem);
}

#concept .lead {
    margin-bottom: .5em;
}

#concept .flex>* {
    width: 50%;
}

.point {
    margin-bottom: 10rem;
}

.point li {
    width: 30%;
}

#recommend figure img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 5px var(--sub-color);
}

.rating {
    padding-block: 5rem 6rem;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px var(--sub-color);
}

.rating div:has(.number) {
    margin-bottom: 6rem;
}

.number {
    color: var(--accent-color);
    font-family: "Bona Nova SC", serif;
    font-size: clamp(3rem, 5vw, 4rem);
    letter-spacing: .1em;
}

.star {
    width: clamp(15rem, 20vw, 20rem);
    margin-bottom: 1rem;
}

.rating li {
    width: 90%;
    gap: 1rem;
    padding: 1.5rem 2%;
    margin-inline: auto;
    border-radius: 1rem;
    background-color: var(--base-color);
    line-height: 1.5em;
}

.rating li:not(:last-child) {
    margin-bottom: 3rem;
}

.rating ul img {
    display: block;
    flex-shrink: 0;
    width: clamp(4rem, 5vw, 7rem);
    padding-block: 1%;
    aspect-ratio: 1/1;
    object-fit: contain;
    opacity: 0.5;
}

#menu ul.flex {
    margin-bottom: 8rem;
}

#menu li {
    width: 30%;
}

#menu figure img {
    margin-bottom: 1rem;
    box-shadow: 0 0 5px var(--sub-color);
}

#menu figcaption p:nth-child(n+2) {
    font-size: 1.4rem;
    line-height: 2rem;
}

#step {
    position: relative;
    height: 70rem;
    background-image: url(/assets/img/step/img_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#step>div {
    position: absolute;
    inset: 0;
    height: fit-content;
    margin: auto;
    padding-block: 10rem 8rem;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

#step .flex {
    flex-direction: column;
    gap: 1rem;
}

#step h2 {
    margin-bottom: 4rem;
}

#step .flex img {
    width: 2rem;
    margin-inline: auto;
}

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

#profile .flex>img {
    width: 40%;
    border-radius: 50%;
}

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

#access .flex img {
    width: 50%;
}

#access dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 2em;
}

#access dt {
    font-weight: 500;
}

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

#access .shop-address {
    margin-bottom: 2rem;
}

.map {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

#app>div>.flex {
    gap: 10rem;
}

#app .d-pc {
    width: 30%;
}

#app .text-block {
    width: 70%;
}

#app h3 {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: clamp(2.2rem, 3vw, 3rem);
}

.install {
    gap: 3rem;
    padding: 3rem;
    margin-top: 5rem;
    background-color: #fff;
}

.install img {
    width: 30%;
}

.install .text-block {
    width: 70%;
}

.install .btn-install {
    position: relative;
    width: 25rem;
    gap: .3em;
    color: #fff;
}

.install .material-symbols-outlined {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    font-size: 1.2em;
}

.install .btn .material-symbols-outlined {
    right: 1rem;
    font-weight: 200;
}

.search {
    position: relative;
    width: 25rem;
    height: 4rem;
    margin-top: 2rem;
    border-radius: 5px;
    border: 1px solid #000;
}

.search .material-symbols-outlined {
    left: 1rem;
    font-size: 300;
}

.search p {
    line-height: 4rem;
}

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

    #hero .text-block {
        margin-bottom: 0;
    }

    #hero .slider {
        width: 100%;
        height: 55vh;
        max-height: 800px;
        overflow: hidden;
        position: relative;
    }

    #hero .slide {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

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

    #hero .text-block {
        width: 100%;
        margin-top: 4rem;
    }

    #hero .text-block img {
        margin-bottom: 1rem;
    }

    #concept {
        text-align: center;
    }

    #concept .flex>* {
        width: 100%;
    }

    #recommend .point {
        row-gap: 6rem;
        margin-bottom: 6rem;
    }

    #recommend .point.flex>* {
        width: 80%;
    }

    .rating div:has(.number) {
        margin-bottom: 4rem;
    }

    #menu ul.flex {
        row-gap: 6rem;
        margin-bottom: 6rem;
    }

    #menu .flex>* {
        width: 100%;
    }

    #step {
        height: 50rem;
        padding-block: 6rem 8rem;
    }

    #step>div {
        padding-block: 6rem 4rem;
    }

    #step h2 {
        margin-bottom: 2rem;
    }

    #profile .flex>* {
        width: 100%;
    }

    #profile .flex>img {
        width: 80%;
        border-radius: 50%;
    }

    #profile .text-block {
        text-align: center;
    }

    section#access {
        padding-bottom: 10rem;
    }

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

    #access .flex>* {
        width: 100%;
    }

    #access .flex img {
        width: 100%;
    }

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

    #app {
        text-align: center;
    }

    #app>div>.flex {
        gap: 0rem;
    }

    #app h3 {
        margin-bottom: 1rem;
    }

    #app .d-sp {
        width: 50%;
        max-width: 300px;
        margin-top: 3rem;
        margin-inline: auto;
        border-radius: 20%;
    }

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

    .install {
        padding-inline: 0;
        padding-bottom: 4rem;
    }

    .install img {
        max-width: 150px;
    }

    .install .btn-install {
        margin-left: 0;
    }
}