.section__cuisine-scroll {
    height: calc(100vh - var(--wp-admin-bar-height, 0px));
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 !important;
    background-color: #c9a676;
    background-image: var(--bg-desktop);
}
.cuisine-scroll_component {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    width: max-content;
}
.cuisine-scroll_component:before {
    content: '';
    display: block;
    width: 100%;
    height: calc(100vh - var(--wp-admin-bar-height, 0px));
    position: absolute;
    left: 115.15px;
    top: 0;
    background: url('../images/cuisine-bg.png') repeat-x;
    background-size: contain;
    background-position: top left;
}
.cuisine-scroll_component:after {
    content: '';
    display: block;
    width: 100%;
    height: calc(100vh - var(--wp-admin-bar-height, 0px));
    position: absolute;
    left: 0;
    top: 0;
    background: url('../images/overlay-layer.png') repeat;
    background-size: auto;
    background-position: center;
    /* opacity: 0.15; */
    mix-blend-mode: luminosity;
    z-index: 3;
    pointer-events: none;
}
.cuisine-scroll_content {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.cuisine-intro {
    height: calc(100vh - var(--wp-admin-bar-height, 0px));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 0 107px;
    margin-right: 202px;
}
.cuisine-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.cuisine-intro__ja {
    margin: 0;
    color: var(--color-dark);
    font-size: var(--font-size-h0);
    font-weight: 500;
    letter-spacing: 8px;
}
.cuisine-intro__en {
    text-transform: uppercase;
    color: var(--color-dark);
}
.cuisine-intro .cuisine-intro__ja,
.cuisine-intro .cuisine-intro__en {
    transition: color 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.text-color-invert .cuisine-intro .cuisine-intro__ja,
.text-color-invert .cuisine-intro .cuisine-intro__en {
    color: var(--color-white)
}
.cuisine-item {
    position: relative;
    width: auto;
    height: calc(100vh - var(--wp-admin-bar-height, 0px));
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: transparent;
    padding: 0 25vw 0;
    will-change: width;
    gap: 80px;
}
.cuisine-item:first-child {
    padding: 0 25vw 0 0;
}
.cuisine-item__inner {
    position: relative;
    z-index: 2;
    order: unset;
    flex: unset;
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    opacity: 1 !important;
}
.cuisine-item__content {
    position: relative;
    z-index: 2;
    color: var(--color-dark);
    text-align: left;
    width: 100%;
    transition: color 0.4s ease;
}
body .cuisine-item__number {
    display: block;
    font-family: var(--font-family-heading);
    font-size: 1rem;
    padding-bottom: 30px;
    color: var(--color-dark);
    border-bottom: 1px solid #1b1b1b66;
    margin-bottom: 30px;
    line-height: 1.25;
    font-weight: 500;
}
.cuisine-item__name {
    margin-bottom: 30px;
    color: #F0E7DA;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2222222222222222222222222222222;
    padding-left: 1rem;
    position: relative;
}

.cuisine-item__name::before {
    content: "";
    position: absolute;
    top: 9.5px;
    left: 6.5px;
    width: 3px;
    height: 3px;
    background-color: #F0E7DA;
    border-radius: 50%;
}
.cuisine-item__jp-name {
    margin-bottom: 30px;
}
.cuisine-item__jp-desc * {
    font-family: var(--font-family-heading);
}
.cuisine-item__desc *,
.cuisine-item__jp-desc * {
    color: var(--color-dark);
    line-height: 1.5;
}
.cuisine-item__desc,
.cuisine-item__desc *:not(:last-child),
.cuisine-item__jp-desc *:not(:last-child) {
    margin-bottom: 20px;
}
.cuisine-item__button {
    margin-top: 53px;
}
.cuisine-item__link {
    text-decoration: none;
    color: var(--color-dark);
}
.cuisine-item__link.button.primary::before,
.cuisine-item__link.button.primary::after {
    filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(3471%) hue-rotate(21deg) brightness(101%) contrast(79%);
}
.cuisine-item__link:hover {
    opacity: 1 !important;
}
.cuisine-item__image-bg {
    width: 400px;
    z-index: 1;
    overflow: hidden;
    order: unset;
    opacity: 1 !important;
    will-change: width, height, top, right;
}
.cuisine-item__image-bg__inner {
    padding-bottom: 125%;
}
.cuisine-item__image {
    position: fixed;
    transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}
.cuisine-item__image::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--black);
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.text-color-invert .cuisine-item__image:after {
    opacity: 0.3;
}
.cuisine-item__img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    object-position: center;
}
.cuisine-item__image-bg::after {
    display: none;
}
.cuisine-item__button-description {
    padding: 5px 0 5px;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .cuisine-item__content,
    .cuisine-item__desc *,
    .cuisine-item__jp-desc *,
    .cuisine-item__link,
    .cuisine-item__name,
    body .cuisine-item__number,
    .cuisine-item__link.button.primary::before,
    .cuisine-item__link.button.primary::after,
    .cuisine-item__button-description {
        transition: all 2.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .text-color-invert .cuisine-item__content,
    .text-color-invert .cuisine-item__desc *,
    .text-color-invert .cuisine-item__jp-desc *,
    .text-color-invert .cuisine-item__link,
    body .text-color-invert .cuisine-item__number,
    .text-color-invert .cuisine-item__name,
    .cuisine-item__button-description {
        color: var(--color-white);
    }
    body .text-color-invert .cuisine-item__number {
        border-color: var(--color-white);
    }

    .text-color-invert .cuisine-item__link.button.primary::before,
    .text-color-invert .cuisine-item__link.button.primary::after {
        filter: none;
    }
    /* .cuisine-item__button-description {
        padding: 5px 0 5px 41px;
    } */
}
@media (max-width: 767px) {
    .section__cuisine-scroll {
        height: auto;
        overflow-y: visible;
        overflow-x: hidden;
    }
    .cuisine-scroll_component {
        display: block;
        width: 100%;
        height: auto;
    }
    .cuisine-scroll_content {
        display: flex;
        width: 100%;
        height: auto;
        gap: 70px;
        flex-flow: column;
    }
    .cuisine-intro {
        width: 100%;
        padding: 60px 20px;
        border-right: none;
        writing-mode: horizontal-tb;
        height: auto;
        padding: 270px 20px 70px;
    }
    .cuisine-intro__inner {
        writing-mode: horizontal-tb;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .cuisine-intro__ja {
        line-height: 1.2333333333333333333333333333333;
        font-size: var(--font-size-h2);
        letter-spacing: 0;
    }
    .cuisine-item {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 0 !important;
        display: block;
        background: transparent;
        flex-direction: column;
    }
    .cuisine-item__name {
        text-align: left;
        margin-bottom: 10px;
    }
    .cuisine-item__inner {
        padding: 0 30px;
        max-width: 100%;
        order: unset;
        width: 100%;
        z-index: 999;
    }
    .cuisine-item__image-bg {
        position: relative;
        width: 100%;
        margin-top: 70px;
    }
    .cuisine-item__image-bg__inner {
        padding-bottom: 124.87179487179487179487179487179%;
        overflow: hidden;
    }
    .cuisine-item__img,
    .cuisine-item__image-bg__inner picture,
    .cuisine-item__image {
        /* opacity: 1; */
        transform: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .cuisine-item__desc,
    .cuisine-item__jp-desc {
        display: block;
        opacity: 0.8;
        transform: none;
        color: #3e3a39;
        text-align: justify;
    }
    .cuisine-item__content {
        text-align: center;
        width: 100%;
    }
    .cuisine-item__jp-name {
        margin-bottom: 30px;
        text-align: left;
    }
    .cuisine-item__button {
        margin-top: 30px;
    }
    .cuisine-scroll_component:before {
        left: 0;
        width: 1853px;
        height: 100%;
        background: url('../images/cuisine-bg-mobile.png') repeat-y;
        background-size: cover;
        background-position: top center;
        /* background-repeat: repeat-y; */
    }
    .cuisine-scroll_component:after {
        background-position: top center;
        background-repeat: repeat;
        height: 100%;
        width: 100%;
    }
}