.cafe__bg {
    background-image: url(./image/cafe-bg.jpg);
}

.cafe__outer {
    max-width: 1440px;
    margin: auto;
}

.cafe__inner {
    display: flex;
    align-items: center;
}

.cafe__img {
    flex: 1 1 55%
}

.cafe__textbox {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cafe__text-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.cafe__text {
    margin-top: clamp(35px, 2vw, 50px);
}

@media screen and (max-width: 1440px) {
    .cafe__img {
        margin-right: auto;
        margin-left: calc(50% - 50vw);
    }
}

@media screen and (max-width:768px) {
    .cafe__inner {
        flex-direction: column;
        gap: 60px;
    }

    .cafe__textbox {
        order: 1;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 4.26%;

    }

    .cafe__img {
        order: 2;
        margin-left: 0;
    }
}

/***************************************
店内写真
****************************************/
.sample__visuals {
    display: grid;
    grid-template-columns: 3fr 7fr;
    grid-template-rows: auto auto auto;
    gap: clamp(70px, 12vw, 175px) clamp(30px, 6vw, 84px);
    max-width: 1440px;
}

.sample__inner {
    padding: 135px 0 290px;
}

.sample__text {
    grid-column: 1;
    grid-row: 1;
    margin-top: clamp(22px, 3vw, 55px);
    justify-self: right;
    max-width: 322px;
}



.sample__text p:nth-child(2) {
    margin-top: clamp(25px, 2vw, 30px);
}

.cafe__left {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: clamp(189px, calc(10.32vw + 150.26px), 299px);
    justify-self: left;
}

.cafe__top {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: clamp(335px, calc(42.44vw + 175.84px), 787px);
    justify-self: end;
}

.cafe__bottom {
    grid-column: 2;
    grid-row: 3;
    width: clamp(328px, calc(40.46vw + 176.23px), 759px);
    margin-right: var(--wrapper-gutter);
}

@media screen and (max-width:890px) {
    .sample__inner {
        padding: 60px 0 150px;
    }

    .sample__visuals {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sample__visuals>* {
        grid-column: auto;
        grid-row: auto;
    }

    .sample__text {
        grid-column: 1;
        grid-row: 1;
        margin-top: 0;
        justify-self: left;
        margin-left: clamp(0px, 3vw, 30px);

        order: 1;
    }

    .cafe__left {
        order: 3;
        justify-self: start;
        margin-left: 30px;
    }

    .cafe__top {
        order: 2;
    }

    .cafe__bottom {
        order: 4;
        justify-self: right;
        margin-right: 0px;
    }
}

@media screen and (max-width:460px) {
    .cafe__left {
        margin-left: calc(-1 * ((100vw - 100%) / 2));
    }
}