/*---------
OUR STORE
----------*/

/*---- 共通ブロック ----*/


/*----コンテンツブロック ----*/

/* 店舗画像 */

.scroll-container {
    overflow: hidden;
    /* はみ出た画像を見えなくする */
    width: 100%;
    margin-bottom: 65px;
    background: #fff;
}

.scroll-wrapper {
    display: flex;
    width: max-content;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
}

.scroll-item {
    flex: 0 0 auto;
    width: 240px;
    /* 画像の幅 */
    margin: 0 15px 0 0;
}

.scroll-item:nth-child(even) {
    margin-top: 30px;
}

.scroll-item img {
    width: 100%;
    display: block;
    vertical-align: bottom;
}


/* メイン */

.store_photo {
    max-width: 335px;
    margin: 0 auto 40px;
}

.store_photo img {
    border-radius: 7px;
}

.store_info_block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.store_info_map {
    padding-bottom: 10px;
    border-bottom: 1px solid #D9D9D9;
}

.store_map {
    max-width: 335px;
    margin: 0 auto;
    border-radius: 7px;
}

.store_info_list {
    display: flex;
    align-items: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px solid #D9D9D9;
}

.store_info_map .store_info_list {
    border: none;
    padding: 0;
    margin-bottom: 5px;
}

.store_info_list dt {
    font-size: 16px;
    font-weight: bold;
    line-height: calc(32 / 16);
    flex: 0 0 155px;
    white-space: nowrap;
}

.store_info_list dd {
    font-size: 16px;
    font-weight: 400;
    line-height: calc(28 / 16);
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (min-width:768px) {

    /*---- 共通ブロック ----*/

    .section_content--store .section_space {
        max-width: 755px;
        margin: 0 auto;
    }

    /*----コンテンツブロック ----*/

    /* 店舗画像 */

    .scroll-container {
        margin-bottom: 100px;
    }

    .scroll-item {
        width: 340px;
        margin: 0 30px 0 0;
    }

    .scroll-item:nth-child(even) {
        margin-top: 40px;
    }



    /* メイン */

    .store_photo {
        max-width: 755px;
        margin: 0 auto 70px;
    }

    .store_info_block {
        gap: 40px;
    }

    .store_info_map {
        padding-bottom: 15px;
        border-bottom: 1px solid #D9D9D9;
    }

    .store_map {
        max-width: 550px;
    }

    .store_info_map .store_info_list {
        margin-bottom: 15px;
    }

    .store_info_list dt {
        flex: 0 0 204px;
    }

}