* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.section__dinning--scene.v1>.container {
    max-width: 1280px;
}

.dinning__scene--list {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.dinning__scene--list .container {
    max-width: 100%;
    padding: 0;
}

.section__dinning--scene {
    overflow: hidden;
}

.section__dinning--scene .inner__left .container {
    max-width: 1268px;
    padding: 0 20px;
}

.section__dinning--scene.v1 .section__title {
    max-width: 628px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section__dinning--scene .dinning__scene--item .inner__right {
    width: calc(100% - 350px);
}

.dinning__scene--item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.dinning__scene--item .tablet,
.dinning__scene--item .mb {
    display: none;
}

.dinning__scene--item .item__content {
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0;
    position: relative;
    z-index: 2;
}

.dinning__scene--item .image__animation {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: opacity .8s ease-in-out, visibility .8s ease-in-out;
    -o-transition: opacity .8s ease-in-out, visibility .8s ease-in-out;
    transition: opacity .8s ease-in-out, visibility .8s ease-in-out;
}

/* Initial state for image--no-hover - starts hidden */
.dinning__scene--item .image__animation.image--no-hover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2; /* Higher z-index to appear above image--hover */
}

/* Show image--no-hover when animation starts (in-viewport) */
.section__dinning--scene.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition-delay: 0.3s; /* Show immediately when animation starts */
}

.section__dinning--scene .dinning__scene--item .image__animation.image--no-hover svg {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    transition-delay: 0s; /* Show immediately when animation starts */
}

.section__dinning--scene.in-viewport .dinning__scene--item .image__animation.image--no-hover svg {
    opacity: 1;
}

/* V1 - Show image--no-hover when SVG keyframe starts */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    transition-delay: 0.4s; /* V1 SVG starts at 0s, show after 0.7s to ensure SVG is visible */
}

/* V2 - Show image--no-hover when SVG keyframe starts */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    transition-delay: 4.2s; /* V2 SVG starts after 4.2s delay */
}

/* V3 - Show image--no-hover when SVG keyframe starts */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    transition-delay: 0.2s; /* V3 SVG starts at 0s, show after 0.7s to ensure SVG is visible */
}

/* V4 - Show image--no-hover when SVG keyframe starts */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    transition-delay: 0.4s; /* V4 SVG starts at 0s, show after 0.7s to ensure SVG is visible */
}

/* V1 - Image no-hover fade out timing */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 5.1s; /* After image--hover fade in completes (1.8s + 3.3s) */
    position: relative;
    z-index: 2;
}

/* V2 - Image no-hover fade out timing */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 5.8s; /* After image--hover fade in completes (2.8s + 3.0s) */
    position: relative;
    z-index: 2;
}

/* V3 - Image no-hover fade out timing */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 5.1s; /* After image--hover fade in completes (1.8s + 3.3s) */
    position: relative;
    z-index: 2;
}

/* V4 - Image no-hover fade out timing */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 5.1s; /* After image--hover fade in completes (1.8s + 3.3s) */
    position: relative;
    z-index: 2;
}

/* For image--no-hover that only contains img (no SVG) - immediate fade out */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 4.1s ease-in-out, visibility 4.1s ease-in-out;
    transition-delay: 0.5s; /* Immediate fade out for img-only */
}

.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 4.1s ease-in-out, visibility 4.1s ease-in-out;
    transition-delay: 0.5s; /* Immediate fade out for img-only */
}

.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 4.1s ease-in-out, visibility 4.1s ease-in-out;
    transition-delay: 0.3s; /* Immediate fade out for img-only */
}

.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 4.1s ease-in-out, visibility 4.1s ease-in-out;
    transition-delay: 0.3s; /* Immediate fade out for img-only */
}

.section__dinning--scene .dinning__scene--item .image__animation.image--hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1; /* Lower z-index to appear behind image--no-hover */
}

/* V1 - Image hover fade in (1.8s + 2.0s = 3.8s total) */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 2.0s ease-in-out, visibility 2.0s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out (2.8s + 0.5s) */
}

/* V2 - Image hover fade in (2.8s + 1.5s = 4.3s total) */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    transition-delay: 2.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}

/* SVG inside image--hover - show only after SVG animation completes */
/* V1 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V2 - SVG animation completes at 4.9s (4.2s delay + 0.7s duration) */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V3 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.5s; /* Start fading in while SVG is still drawing */
}

/* V4 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V3 - Image hover fade in (1.8s + 1.2s = 3.0s total) */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    transition-delay: 1.5s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}

/* V4 - Image hover fade in (1.8s + 2.0s = 3.8s total) */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 2.0s ease-in-out, visibility 2.0s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}

/* For image--hover when image--no-hover only contains img (no SVG) - immediate fade in */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) + .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 2.0s ease-in-out, visibility 2.0s ease-in-out;
    transition-delay: 0.5s; /* Start fading in immediately for img-only */
}

.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) + .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    transition-delay: 0.5s; /* Start fading in immediately for img-only */
}

.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) + .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    transition-delay: 0.3s; /* Start fading in immediately for img-only */
}

.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover:not(:has(svg)) + .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 2.0s ease-in-out, visibility 2.0s ease-in-out;
    transition-delay: 0.5s; /* Start fading in immediately for img-only */
}

.section__dinning--scene.v1 .dinning__scene--item .inner__left .item__content {
    padding-top: 100px;
}

.section__dinning--scene.v2 .dinning__scene--item .inner__left .item__content {
    padding-top: 75px;
}

.dinning__scene--item .inner__left .item__content {
    width: 320px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section__dinning--scene.v1 {
    margin-top: 80px;
    position: relative;
    z-index: 5;
}

.section__dinning--scene.v2 {
    margin-top: -188px;
}

.section__dinning--scene .dinning__scene--item {
    position: relative;
}

.section__dinning--scene .dinning__scene--item .inner__left {
    padding-top: 150px;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* V1 - Image hover fade in (2.8s + 0.5s fade out = 3.3s) */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out (2.8s + 0.5s) */
}

/* V2 - Image hover fade in (2.8s + 1.5s = 4.3s total) */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 2.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}

/* SVG inside image--hover - show only after SVG animation completes */
/* V1 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V2 - SVG animation completes at 4.9s (4.2s delay + 0.7s duration) */
.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V3 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.5s; /* Start fading in while SVG is still drawing */
}

/* V4 - SVG animation completes at 2.8s (2.1s delay + 0.7s duration) */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover svg {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
}

/* V3 - Image hover fade in (1.8s + 1.2s = 3.0s total) */
.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 1.5s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}

/* V4 - Image hover fade in (1.8s + 2.0s = 3.8s total) */
.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transition-delay: 1.8s; /* Start fading in while SVG is still drawing */
    /* After image no-hover fade out */
}


/* ========================================
   SVG ANIMATION KEYFRAMES AND STYLES
   ======================================== */

/* V1 SVG Animation Keyframes (from 1_overlay_animate.txt) */
@-webkit-keyframes v1-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-1 {
    -webkit-animation: v1-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
    animation: v1-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both
}

@-webkit-keyframes v1-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-2 {
    -webkit-animation: v1-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: v1-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both
}

@-webkit-keyframes v1-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-3 {
    -webkit-animation: v1-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
    animation: v1-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both
}

@-webkit-keyframes v1-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-4 {
    -webkit-animation: v1-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both;
    animation: v1-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both
}

@-webkit-keyframes v1-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-5 {
    -webkit-animation: v1-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: v1-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both
}

@-webkit-keyframes v1-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-6 {
    -webkit-animation: v1-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: v1-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both
}

@-webkit-keyframes v1-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v1-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v1 .svg-elem-7 {
    -webkit-animation: v1-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both;
    animation: v1-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both
}

@-webkit-keyframes v1-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes v1-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.section__dinning--scene.v1 .svg-elem-8 {
    -webkit-animation: v1-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: v1-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both
}

/* V2 SVG Animation Keyframes (from 2_overlay_animate.txt) */
@-webkit-keyframes v2-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-1 {
    -webkit-animation: v2-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
    animation: v2-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both
}

@-webkit-keyframes v2-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-2 {
    -webkit-animation: v2-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: v2-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both
}

@-webkit-keyframes v2-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-3 {
    -webkit-animation: v2-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
    animation: v2-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both
}

@-webkit-keyframes v2-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-4 {
    -webkit-animation: v2-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both;
    animation: v2-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both
}

@-webkit-keyframes v2-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-5 {
    -webkit-animation: v2-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: v2-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both
}

@-webkit-keyframes v2-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-6 {
    -webkit-animation: v2-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: v2-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both
}

@-webkit-keyframes v2-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-7 {
    -webkit-animation: v2-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both;
    animation: v2-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both
}

@-webkit-keyframes v2-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-8 {
    -webkit-animation: v2-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: v2-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both
}

@-webkit-keyframes v2-animate-svg-fill-9 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-9 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-9 {
    -webkit-animation: v2-animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
    animation: v2-animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both
}

@-webkit-keyframes v2-animate-svg-fill-10 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-10 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-10 {
    -webkit-animation: v2-animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6999999999999997s both;
    animation: v2-animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6999999999999997s both
}

@-webkit-keyframes v2-animate-svg-fill-11 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-11 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-11 {
    -webkit-animation: v2-animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
    animation: v2-animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both
}

@-webkit-keyframes v2-animate-svg-fill-12 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-12 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-12 {
    -webkit-animation: v2-animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
    animation: v2-animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both
}

@-webkit-keyframes v2-animate-svg-fill-13 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-13 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-13 {
    -webkit-animation: v2-animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5999999999999996s both;
    animation: v2-animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5999999999999996s both
}

@-webkit-keyframes v2-animate-svg-fill-14 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v2-animate-svg-fill-14 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v2 .svg-elem-14 {
    -webkit-animation: v2-animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
    animation: v2-animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both
}

@-webkit-keyframes v2-animate-svg-fill-15 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes v2-animate-svg-fill-15 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.section__dinning--scene.v2 .svg-elem-15 {
    -webkit-animation: v2-animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
    animation: v2-animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both
}

/* V3 SVG Animation Keyframes (from 3_overlay_animate.txt) */
@-webkit-keyframes v3-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-1 {
    -webkit-animation: v3-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
    animation: v3-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both
}

@-webkit-keyframes v3-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-2 {
    -webkit-animation: v3-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: v3-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both
}

@-webkit-keyframes v3-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-3 {
    -webkit-animation: v3-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
    animation: v3-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both
}

@-webkit-keyframes v3-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-4 {
    -webkit-animation: v3-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both;
    animation: v3-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both
}

@-webkit-keyframes v3-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-5 {
    -webkit-animation: v3-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: v3-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both
}

@-webkit-keyframes v3-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-6 {
    -webkit-animation: v3-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: v3-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both
}

@-webkit-keyframes v3-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v3-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v3 .svg-elem-7 {
    -webkit-animation: v3-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both;
    animation: v3-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both
}

@-webkit-keyframes v3-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes v3-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.section__dinning--scene.v3 .svg-elem-8 {
    -webkit-animation: v3-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: v3-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both
}

/* V4 SVG Animation Keyframes (from 4_overlay_animate.txt) */
@-webkit-keyframes v4-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-1 {
    -webkit-animation: v4-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
    animation: v4-animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both
}

@-webkit-keyframes v4-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-2 {
    -webkit-animation: v4-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: v4-animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both
}

@-webkit-keyframes v4-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-3 {
    -webkit-animation: v4-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
    animation: v4-animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both
}

@-webkit-keyframes v4-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-4 {
    -webkit-animation: v4-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both;
    animation: v4-animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both
}

@-webkit-keyframes v4-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-5 {
    -webkit-animation: v4-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: v4-animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both
}

@-webkit-keyframes v4-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-6 {
    -webkit-animation: v4-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: v4-animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both
}

@-webkit-keyframes v4-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes v4-animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.v4 .svg-elem-7 {
    -webkit-animation: v4-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both;
    animation: v4-animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both
}

@-webkit-keyframes v4-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes v4-animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.section__dinning--scene.v4 .svg-elem-8 {
    -webkit-animation: v4-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: v4-animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both
}

.section__dinning--scene.v2 .dinning__scene--list {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

/* Viewport Detection Classes */

.section__dinning--scene.v2 .dinning__scene--list>.container {
    position: static;
}

.section__dinning--scene.v2 .dinning__scene--item .item__images .image--no-hover {
    position: relative;
    z-index: 3;
}

.section__dinning--scene.v3 .dinning__scene--item .inner__left,
.section__dinning--scene.v4 .dinning__scene--item .inner__left {
    padding-top: 185px;
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-1 {
    -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
    animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both
}

/* Keep SVG filled when out-viewport (animation already completed) */
.section__dinning--scene.out-viewport .svg-elem-1,
.section__dinning--scene.out-viewport .svg-elem-2,
.section__dinning--scene.out-viewport .svg-elem-3,
.section__dinning--scene.out-viewport .svg-elem-4,
.section__dinning--scene.out-viewport .svg-elem-5,
.section__dinning--scene.out-viewport .svg-elem-6,
.section__dinning--scene.out-viewport .svg-elem-7,
.section__dinning--scene.out-viewport .svg-elem-8 {
    -webkit-animation: none;
    animation: none;
    fill: rgb(221, 211, 200); /* Keep filled state */
}

/* Image--no-hover fade in when out-viewport */
.section__dinning--scene.out-viewport .dinning__scene--item .image__animation.image--no-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transition: opacity 4.1s ease-in-out, visibility 4.1s ease-in-out;
    transition-delay: 0s; /* Immediate fade in */
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-2 {
    -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both;
    animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s both
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-3 {
    -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both;
    animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-4 {
    -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both;
    animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8999999999999999s both
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-5 {
    -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
    animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-6 {
    -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(221, 211, 200)
    }
}

.section__dinning--scene.in-viewport .svg-elem-7 {
    -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both;
    animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both
}

@-webkit-keyframes animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

@keyframes animate-svg-fill-8 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 255, 255)
    }
}

.section__dinning--scene.in-viewport .svg-elem-8 {
    -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both
}

@media (max-width: 1366px) {

    .section__dinning--scene.v4 .dinning__scene--item .image--no-hover {
        left: 0;
    }
}

@media (max-width: 991px) {
    .dinning__scene--item .tablet {
        display: block;
    }

    .dinning__scene--item .pc,
    .dinning__scene--item .mb {
        display: none;
    }

    .section__dinning--scene {
        margin-bottom: 40px;
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

    .dinning__scene--item .inner__left .item__content {
        max-width: 177px;
        width: 100%;
    }

    .section__dinning--scene .container {
        padding-left: 0;
        padding-right: 0;
    }

    .section__dinning--scene .dinning__scene--item .inner__right {
        width: 100%;
    }

    .section__dinning--scene.v2 .dinning__scene--item .inner__left .item__content,
    .section__dinning--scene.v2 {
        margin-top: 0;
    }

    .section__dinning--scene.v4 .dinning__scene--item .inner__left,
    .section__dinning--scene.v2 .inner__left {
        padding-top: 0;
        top: 0;
    }

    .section__dinning--scene.v4 .dinning__scene--item .inner__left,
    .section__dinning--scene.v3 .dinning__scene--item .inner__left,
    .dinning__scene--item .inner__left .item__content {
        padding-top: 0;
    }

    .section__dinning--scene.v1 .dinning__scene--item {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .section__dinning--scene.v1 .dinning__scene--item .inner__left .item__content {
        padding-top: 50px;
    }

    .section__dinning--scene .dinning__scene--item .inner__left {
        padding-top: 0;
    }
}

@media (max-width: 570px) {
	.section__dinning--scene {
		overflow: visible;
	}
	.section__dinning--scene .dinning__scene--item .inner__left .item__content{
		max-width: 100%;
	}
	.section__dinning--scene.v1 .section__title{
		font-size: 36px;
		line-height: 44px;
	}
    .dinning__scene--item .tablet,
    .dinning__scene--item .pc {
        display: none;
        height: auto;
    }
	
    .dinning__scene--item .mb {
        display: block;
        height: auto;
    }
	
	.section__dinning--scene.v1  {
        margin-top: 44px;
		margin-bottom: 0px;
    }

    .section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover {
        transform: translate3d(-17px, -47px, 0);
    }

    .section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover {
        transform: translate3d(-8px, -90px, 0);
    }

	.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -90px, 0);
	}
	
	.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -90px, 0);
	}
	
	.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -110px, 0);
	}
	
	.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -110px, 0);
	}
	
	.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -110px, 0);
	}
	
	.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -110px, 0);
	}

    .section__dinning--scene.v2 .dinning__scene--item .inner__left .item__content {
        padding-top: 0;
    }
}

@media (max-width: 380px) {
	.section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--no-hover {
        transform: translate3d(-17px, -27px, 0);
    }

    .section__dinning--scene.v1.in-viewport .dinning__scene--item .image__animation.image--hover {
        transform: translate3d(-8px, -60px, 0);
    }

	.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -60px, 0);
	}
	
	.section__dinning--scene.v2.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -60px, 0);
	}
	
	.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -80px, 0);
	}
	
	.section__dinning--scene.v3.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -80px, 0);
	}
	
	.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--hover{
		transform: translate3d(0px, -80px, 0);
	}
	
	.section__dinning--scene.v4.in-viewport .dinning__scene--item .image__animation.image--no-hover{
		transform: translate3d(0px, -80px, 0);
	}

    .section__dinning--scene.v2 .dinning__scene--item .inner__left .item__content {
        padding-top: 0;
    }
}