html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#sp-contents {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.store-title {
    color: #727272;
    text-align: center;
    padding-top: 120px;
}
.store-title p {
    font-size: 40px;
} 

@media (max-width: 1024px) {
    .store-title {
        padding-top: 200px;
    }
    .store-title p {
        font-size: 65px;
    }
}

@media (max-width: 599px) {
    .store-title {
        padding-top: calc((200 / 780) * 100vw);
    }
    .store-title p {
        font-size: calc((65 / 780) * 100vw);
    }
}




.store-content-shop {
    padding-top: 120px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 120px;
}
@media (max-width: 1024px) {
    .store-content-shop {
        padding-top: 200px;
        padding-bottom: 200px;
        padding-left: 65px;
        padding-right: 65px;
    
    }
}
@media (max-width: 599px) {
    .store-content-shop {
        padding-top: calc((200 / 780) * 100vw);
        padding-bottom: calc((200 / 780) * 100vw);
        padding-left: calc((65 / 780) * 100vw);
        padding-right: calc((65 / 780) * 100vw);
    }
}


.store-content-shop-container {
    width: 100%;
    position: relative;
}

.store-content-shop-ex h3 {
    cursor: pointer;
    /* font-size: 24.32px; */
    font-size: 16px;
    font-family: "kiwi-maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #727272;
}
@media (max-width: 1024px) {
    .store-content-shop-ex h3 {
        font-size: 26px;

    }
}
@media (max-width: 599px) {
    .store-content-shop-ex h3 {
        font-size: calc((26 / 780) * 100vw);
    }
}

.store-content-shop-accordion-title,
.store-content-shop-accordion-title1,
.store-content-shop-accordion-title2,
.store-content-shop-accordion-title3,
.store-content-shop-accordion-title4,
.store-content-shop-accordion-title5 {
    position: relative;
}

.store-content-shop-accordion-title::before,
.store-content-shop-accordion-title1::before,
.store-content-shop-accordion-title2::before,
.store-content-shop-accordion-title3::before,
.store-content-shop-accordion-title4::before,
.store-content-shop-accordion-title5::before {
    background: #727272;
    content: "";
    height: 2px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: rotate(90deg);
    transition: transform .3s ease-in-out;
    width: 10px;
}

.store-content-shop-accordion-title.open::before,
.store-content-shop-accordion-title1.open::before,
.store-content-shop-accordion-title2.open::before,
.store-content-shop-accordion-title3.open::before,
.store-content-shop-accordion-title4.open::before,
.store-content-shop-accordion-title5.open::before {
    transform: rotate(180deg);
}

.store-content-shop-accordion-title::after,
.store-content-shop-accordion-title1::after,
.store-content-shop-accordion-title2::after,
.store-content-shop-accordion-title3::after,
.store-content-shop-accordion-title4::after,
.store-content-shop-accordion-title5::after {
    background: #727272;
    content: "";
    height: 2px;
    position: absolute;
    right: 0px;
    top: 50%;
    transition: opacity .3s ease-in-out;
    width: 10px;
}
.store-content-shop-accordion-title.open::after,
.store-content-shop-accordion-title1.open::after,
.store-content-shop-accordion-title2.open::after,
.store-content-shop-accordion-title3.open::after,
.store-content-shop-accordion-title4.open::after,
.store-content-shop-accordion-title5.open::after {
    opacity: 0;
}

.store-content-shop-ex hr {
    border-width: 0.2px 0 0 0;
    border-style: solid;
    border-color: #d6d1cd;
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .store-content-shop-ex hr {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}
@media (max-width: 599px) {
    .store-content-shop-ex hr {
        margin-top: calc((60 / 780) * 100vw);
        margin-bottom: calc((60 / 780) * 100vw);
    }
}

.store-content-shop-ex-1 {
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .store-content-shop-ex-1 {
        margin-bottom: 80px;
    }
}
@media (max-width: 599px) {
    .store-content-shop-ex-1 {
        margin-bottom: calc((80 / 780) * 100vw);
    }
}

.store-content-shop-ex-1 h3 {
    font-family: "kiwi-maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* font-size: 20.48px; */
    font-size: 14px;
    color: #727272;
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .store-content-shop-ex-1 h3 {
        font-size: 24px;
        margin-bottom: 30px;

    }
}
@media (max-width: 599px) {
    .store-content-shop-ex-1 h3 {
        font-size: calc((24 / 780) * 100vw);
        margin-bottom: calc((30 / 780) * 100vw);
    }
}


.store-content-shop-ex-1 p {
    font-family: "kiwi-maru", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* font-size: 17.92px; */
    font-size: 12px;
    color: #727272;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .store-content-shop-ex-1 p {
        font-size: 22px;
        margin-bottom: 20px;
    }
}
@media (max-width: 599px) {
    .store-content-shop-ex-1 p {
        font-size: calc((22 / 780) * 100vw);
        margin-bottom: calc((20 / 780) * 100vw);
    }
}


.chuui {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 120px;
}
.chuui p {
    font-size: 12px;
    line-height: 1.5;
    color: #727272;
}

@media (max-width: 1024px) {
    .chuui {
        padding-top: 200px;
    }
    .chuui p {
        font-size: 20px;
    }
}

@media (max-width: 599px) {
    .chuui {
        padding-top: calc((200 / 780) * 100vw);
    }
    .chuui p {
        font-size: calc((20 / 780) * 100vw);
    }
}