.l-page {
    padding-bottom: 0px;
}

/*---------
about-us
----------*/

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

.section_content--about-us {
    padding-bottom: 250px;
}


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

.about-us_list {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.about-us_item_detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-us_item_detail_title {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: calc(32 / 20);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.detail_title_num {
    font-size: 56px;
    font-weight: 400;
    color: var(--main-color);
    line-height: calc(56 / 56);
    font-family: var(--point-font);
}

.about-us_item_detail_text {
    font-size: 16px;
    line-height: calc(28 / 16);
}

.about-us_item_detail_photo {
    border-radius: 10px;
    width: 335px;
    margin: 0 auto;
}

.about-us_item_detail_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width:768px) {

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

    .section_content--about-us {
        padding-bottom: 385px;
    }

    .section_content--about-us .section_space {
        max-width: 836px;
        margin: 0 auto;
    }


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

    .about-us_list {
        gap: 65px;
    }

    .about-us_item:nth-child(even) .about-us_item_detail {
        flex-direction: row-reverse;
    }

    .about-us_item_detail {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .detail_title_block {
        flex: 1 1 45%;
        max-width: 396px;
    }

    .about-us_item_detail_title {
        font-size: 26px;
        line-height: calc(38 / 26);
        margin-bottom: 15px;
    }

    .detail_title_num {
        font-size: 64px;
        line-height: calc(64 / 64);
    }

    .about-us_item_detail_photo {
        flex: 1 1 45%;
        max-width: 400px;
        width: 100%;
    }
}



/*---------
gallery
----------*/

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

.section_content--gallery {
    background: url("../images/about/sp-section_content-gallery_bg.jpg") center / cover no-repeat;
    min-height: 243px;
    overflow: visible;
    position: relative;
    /* ←追加：重なり制御の土台 */
    padding-top: 10px;
}

.section_content--gallery .section_space {
    width: 100%;
}


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

/* 無限スクロール画像 */

.scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -155px;
}

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

#scroll-wrapper img {
    display: block;
    width: auto;
    height: 283px;
    flex-shrink: 0;
    margin-right: 12px;
    vertical-align: bottom;
}


@media (min-width:768px) {

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

    .section_content--gallery {
        background: url("../images/about/section_content-gallery_bg.jpg") center / cover no-repeat;
        min-height: 477px;
        overflow: visible;
        position: relative;
        /* ←追加：重なり制御の土台 */
        padding-top: 10px;
    }

    .section_content--gallery .section_space {
        max-width: 100%;
    }

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

    /* 無限スクロール画像 */

    .scroll-container {
        margin-top: -234px;
    }

    /* 画像 */
    #scroll-wrapper img {
        height: 513px;
        margin-right: 24px;
    }

}