@charset "utf-8";

.store-detail {
    margin-top: 50px;
}

.store-header {
    border-bottom: 1px solid var(--black);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 0 0 12px;
    margin: 0 0 24px;
}

.store-pref {
    font-weight: bold;
    line-height: 1;
    font-size: 14px;
    margin: 0 0 8px;
}

.store-name {
    color: var(--blue);
    line-height: var(--line-height-sm);
    font-size: 35px;
    margin: 0;
}

.shop-available-marudan {
    display: inline-block;
    padding: .75em;
    border-radius: 6px;
    background: var(--orange);
    color: #fff;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 5px;
}

.store-info {
    position: relative;
    background: #f2f2f2;
    font-size: 13px;
    margin: 48px 0 0;
    padding: 0 min(92px, calc(56 / 768 * 100vw)) min(92px, calc(56 / 768 * 100vw));
}

.store-info::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding-top: 80px;
}

.store-kv {
    position: relative;
    z-index: 1;
}

.store-kv img {
    width: 100%;
    height: auto;
    display: block;
}

.store-profile-title {
    font-weight: bold;
    color: #5b5b5b/*#75777b;*/;
    font-size: 24px;
    margin: 40px 0 24px;
}

.store-profile-list {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.store-profile-list::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    border-left: 1px solid #e0e0e0;
}

.store-profile-group {
    flex: 1 0 0;
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
}

.store-profile-item {
    display: table-row;
}

.store-profile-item-title,
.store-profile-item-text {
    display: table-cell;
    padding-block: 6px;

    :where(.store-profile-group:first-child .store-profile-item:first-child) & {
        padding-top: 0;
    }

    :where(.store-profile-group:last-child .store-profile-item:last-child) & {
        border-bottom: none;
    }
}

.store-profile-item-title {
    font-weight: bold;
    /*color: #848a97;/*#3c4b69;/*#75777b;*/
    color: #5b5b5b/*#75777b;*/;
    width: 7em;
    padding-right: 1.25em;
}

:where(.store-profile-list) p {
    margin: 0;
}

.store-pr-main-title {
    line-height: 1.65;
    font-size: 29px;
    margin: 70px 0 27px;
}

.store-pr-sub-title {
    line-height: 1.65;
    font-size: 18px;
    margin: 16px 0;
}

.store-pr-text {
    line-height: 2;
    font-size: 15px;
}

.section--store-casestudy,
.section--store-event {
    margin-top: 80px;
}

@media (max-width: 768px) {

    .store-detail {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: calc(var(--inner-py) * 1.5);
    }

    .store-header {
        display: block;
        padding: 0;
        margin: 0 0 24px;
    }

    .store-header::after {
        content: '';
        display: block;
        margin-top: 12px;
    }

    .store-pref {
        font-size: 12px;
        margin: 0 0 8px;
    }

    .store-name {
        font-size: 24px;
        margin-bottom: 0;
    }

    .shop-available-marudan {
        padding: .75em 1em;
        border-radius: 3px;
        margin: 12px 0  0;
        font-size: 11px;
    }

    .store-info {
        font-size: 12px;
        margin: 0 calc(var(--inner-py) * -1);
        padding: 0 var(--inner-py) calc(var(--inner-py) * 1.25);
    }

    .store-info::before {
        padding-top: 10%;
    }

    .store-profile-title {
        font-size: 17px;
        /* margin: 24px 0 20px; */
        margin: 24px 0 16px;
    }

    .store-profile-list {
        line-height: 1.65;
        display: table;
        width: 100%;
    }

    .store-profile-list::after {
        content: none;
    }

    .store-profile-group {
        display: contents;
    }

    .store-profile-item-title,
    .store-profile-item-text {
        padding-block: 8px;
        /* border-bottom: 1px dashed #dcdcdc; */

        :where(.store-profile-group:first-child .store-profile-item:first-child) & {
            /* padding-top: 0; */
            /* border-top: 1px dashed #dcdcdc; */
        }

        :where(.store-profile-group:last-child .store-profile-item:last-child) & {
            /* padding-bottom: 0; */
            border-bottom: none;
        }
    }

    .store-profile-item-title {
        width: 7em;
        padding-right: 1em;
    }

    /* .store-profile-item-title {
        color: var(--blue);
        margin-bottom: .05em;
    } */

    .store-pr {
        margin-top: calc(var(--inner-py) * 1.5);
    }

    .store-pr-main-title {
        font-size: calc(22 / 14 * 1em);
        margin: 20px 0;
    }

    .store-pr-sub-title {
        font-size: calc(16 / 14 * 1em);
        margin: 16px 0;
    }

    .store-pr-text {
        line-height: inherit;
        font-size: inherit;
    }

    .section--store-casestudy,
    .section--store-event {
        margin-top: calc(40 / 375 * 100vw);
    }

}

@media (max-width: 576px) {

    

}