:root {
    --header-height: 80px;
    --device-height: 100vh;
    --main-section-margin: 150px;
    --vision-text-height: 180px;
    --infinite-slide-height: 240px;
    --infinite-mobile-slide-height: 150px;
}

@-webkit-keyframes background-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes background-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes background-down {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}
@keyframes background-down {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* 0%에서 -100%으로 이동하는 애니메이션 */
@-webkit-keyframes aniScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes aniScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* 100%에서 0%으로 이동하는 애니메이션 */
@-webkit-keyframes aniScroll-2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}
@keyframes aniScroll-2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

/*==========================*/

.pop-up-section {
    /*display: none;*/

    z-index: 9999;
    position: fixed;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    border: 1px solid;
}
.pop-up-section .img-article {
    width: 550px;
    height: 700px;
    background: url("/images/pop_up.png") no-repeat center/cover;
    background-color: #ffffef;
    background-color: #E5E5E5;
}
.pop-up-section .btn-div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    background-color: #232323;
}
.pop-up-section .btn-div .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 50px;
    height: 20px;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    font-size: 12px;
}

@media (max-width: 700px) {
    .pop-up-section {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }
    .pop-up-section .img-article {
        width: 385px;
        height: 490px;
        background: url("/images/pop_up.png") no-repeat center/cover;
    }
}
/*==========================*/

main .index-main-section {
    display: flex;
    align-items: flex-end;
    height: var(--app-height);
}
main .index-main-section .moving-contents {
    -o-object-fit: cover;
    object-fit: cover; /* Cover the entire section */
}
main .index-main-section .play-bar-container {
    width: 90%;
    margin: 80px auto;
}
main .index-main-section .play-bar-container strong {
    font-size: 5rem;
    color: white;
}
main .index-main-section .play-bar-container .play-bar {
    margin-top: 20px;
    position: relative;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}
main .index-main-section .play-bar-container .play-bar .progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0%;
    height: 120%;
    background-color: rgb(255, 255, 255);
}
main .moving-container .moving-contents {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the video behind other content */
}
main .scroll-slide.left {
    transition: transform 2s ease-in-out;
    transform: translateX(-100%);
}
main .scroll-slide.right {
    transition: transform 2s ease-in-out;
    transform: translateX(100%);
}
main .scroll-slide.upto {
    transition: transform 1s ease-in-out;
    transform: translateY(100%);
}
main .scroll-slide.active {
    transform: translateX(0%);
    transform: translateY(0%);
}
main .slogan-section {
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: white;
    height: var(--app-height);
    padding: 0 250px;
}
main .slogan-section .slogan-text-container {
    width: 60%;
}
main .slogan-section .slogan-text-container strong {
    font-size: 6.5rem;
    line-height: 10rem;
}
main .slogan-section .slogan-text-container .btn-container a {
    display: flex;
    gap: 10px;
}
main .slogan-section .slogan-text-container .btn-container a:hover {
    text-decoration: underline;
}
main .slogan-section .slogan-text-container .btn-container a .text {
    font-size: 2rem;
    color: black;
}
main .slogan-section .slogan-text-container .btn-container a .icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images/arrow_button-02.png) no-repeat center/cover;
}
main .slogan-section .slogan-img-container {
    width: 40%;
    height: 70%;
    background: url(/images/mk_building.jpeg) no-repeat center/100%;
}
main .white-space {
    height: 20vh;
    background-color: white;
}
main .white-space:last-child {
    border-bottom: 1px solid rgb(236, 228, 218);
}

main .aznis-section {
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    background: url("/images/background_aznis7.png") no-repeat center / cover;
    padding-top: 90px;
}

main .aznis-section:before {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
}

main .aznis-section .animation-container {
    -webkit-animation: background-rotate 100s linear infinite;
    animation: background-rotate 100s linear infinite;
    position: absolute;
    z-index: 1;
    right: -35%;
    width: 2000px;
    height: calc(var(--device-height) * 1.5);
    background: url(/images/aznis_star.png) no-repeat center / 90%;
}
main .aznis-section .animation-container2 {
    -webkit-animation: background-rotate 80s linear infinite;
    animation: background-rotate 80s linear infinite;
    position: absolute;
    z-index: 1;
    right: 25%;
    width: 2000px;
    height: calc(var(--device-height) * 1.5);
    background: url(/images/aznis_star.png) no-repeat center/70%;
}
main .aznis-section .animation-container3 {
    -webkit-animation: background-down 50s linear infinite;
    animation: background-down 50s linear infinite;
    position: absolute;
    right: 0;
    width: 2000px;
    height: calc(var(--device-height) * 1.5);
    background: url(/images/aznis_star.png) no-repeat center/80%;
}
main .aznis-section .top-container {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    height: 225px;
    margin: 0 var(--main-section-margin);
}
main .aznis-section .top-container .text-container h2 {
    font-size: 6.5rem;
    /*color: #eee7e7;*/
}
main .aznis-section .top-container .text-container h3 {
    font-size: 2rem;
    /*color: white;*/
}
main .aznis-section .top-container .text-container h3 a {
    display: flex;
    gap: 10px;
    /*color: white;*/
}
main .aznis-section .top-container .text-container h3 a span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images/arrow_button-02.png) no-repeat center/cover;
}
main .aznis-section .top-container .text-container h3 a:hover {
    text-decoration: underline;
}
main .aznis-section .top-container .img-container {
    width: 300px;
}
main .aznis-section .top-container .img-container a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/aznis_logo_white.png) no-repeat center/100%;
}
main .aznis-section .bottom-container {
    overflow: hidden;
    box-sizing: border-box;
    height: calc(100vh - 315px);
    padding: 60px 100px 50px;
}
main .aznis-section .bottom-container .bottom-article {
    width: 100%;
    height: 100%;
    background: url(/images/aznis_main_image.jpg) no-repeat center/cover;
}

main .entertainment-section {
    box-sizing: border-box;
    height: var(--resize-height);
    background-color: white;
    padding-top: 90px;
}
main .entertainment-section .top-container {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    height: 225px;
    margin: 0 var(--main-section-margin);
}
main .entertainment-section .top-container .text-container h2 {
    font-size: 6.5rem;
}
main .entertainment-section .top-container .text-container h3 {
    font-size: 2rem;
}
main .entertainment-section .top-container .text-container h3 a {
    display: flex;
    gap: 10px;
}
main .entertainment-section .top-container .text-container h3 a span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images/arrow_button-02.png) no-repeat center/cover;
}
main .entertainment-section .top-container .text-container h3 a:hover {
    text-decoration: underline;
}
main .entertainment-section .top-container .img-container {
    width: 350px;
}
main .entertainment-section .top-container .img-container a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/viewentLogo.png) no-repeat center/60%;
}
main .entertainment-section .bottom-container {
    overflow: hidden;
    box-sizing: border-box;
    height: calc(var(--resize-height) - 315px);
    padding: 120px var(--main-section-margin) 50px;
}
main .entertainment-section .bottom-container .actor-container {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
}
main .entertainment-section .bottom-container .actor-container .actor {
    width: 100%;
}
main .entertainment-section .bottom-container .actor-container .actor:first-child {
    background: url(/images/gloria_actor_01.png) no-repeat center/cover;
}
main .entertainment-section .bottom-container .actor-container .actor:nth-child(2) {
    background: url(/images/gloria_actor_02.png) no-repeat center/cover;
}
main .entertainment-section .bottom-container .actor-container .actor:nth-child(3) {
    background: url(/images/gloria_actor_03.png) no-repeat center/cover;
}
main .entertainment-section .bottom-container .actor-container .actor:nth-child(4) {
    background: url(/images/gloria_actor_05.png) no-repeat center/cover;
}
main .entertainment-section .bottom-container .actor-container .actor:last-child {
    background: url(/images/gloria_actor_04.png) no-repeat center/cover;
}
main .franchise-section {
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: var(--app-height);
    background-color: white;
    padding-top: 90px;
}
main .franchise-section .top-container {
    display: flex;
    justify-content: space-between;
    height: 225px;
    margin: 0 var(--main-section-margin);
}
main .franchise-section .top-container .text-container h2 {
    font-size: 6.5rem;
}
main .franchise-section .top-container .text-container h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}
main .franchise-section .top-container .text-container h3 a {
    display: flex;
    justify-content: space-between;
    width: 260px;
}
main .franchise-section .top-container .text-container h3 a span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images/arrow_button-02.png) no-repeat center/cover;
}
main .franchise-section .top-container .text-container h3 a:hover {
    text-decoration: underline;
}
main .franchise-section .top-container .img-container {
    width: 350px;
}
main .franchise-section .top-container .img-container a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/mkFranchiseLogo.png) no-repeat center/100%;
}
main .franchise-section .bottom-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 80px;
    height: 60%;
}
main .franchise-section .bottom-container .brand-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 170px;
    width: 88%;
    margin: 0 auto;
}
main .franchise-section .bottom-container .brand-container .img-container {
    border: 1px solid;
    width: 31%;
}
main .franchise-section .bottom-container .brand-container .img-container.maison a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/maison_banner_logo.png) no-repeat center/100%;
}
main .franchise-section .bottom-container .brand-container .img-container.jin a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/jin_banner_logo.png) no-repeat center/90%;
}
main .franchise-section .bottom-container .brand-container .img-container.don a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/don_banner_logo.png) no-repeat center/100%;
}
main .franchise-section .bottom-container .pic-container {
    position: relative;
    display: flex;
    height: var(--infinite-slide-height);
    overflow: hidden;
}
main .franchise-section .bottom-container .pic-container .pic-wrap {
    position: absolute;
    display: flex;
    gap: 10px;
    padding-right: 10px;
    -webkit-animation: aniScroll 30s linear infinite;
    animation: aniScroll 30s linear infinite;
}
main .franchise-section .bottom-container .pic-container .pic-wrap.list2 {
    -webkit-animation: aniScroll-2 30s linear infinite;
    animation: aniScroll-2 30s linear infinite;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic {
    width: var(--infinite-slide-height);
    height: var(--infinite-slide-height);
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison1 {
    background: url(/images/maison_square_01.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison2 {
    background: url(/images/maison_square_02.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison3 {
    background: url(/images/maison_square_03.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison4 {
    background: url(/images/maison_square_04.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin1 {
    background: url(/images/jin_square_01.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin2 {
    background: url(/images/jin_square_02.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin3 {
    background: url(/images/jin_square_03.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin4 {
    background: url(/images/jin_square_04.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don1 {
    background: url(/images/don_square_01.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don2 {
    background: url(/images/don_square_02.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don3 {
    background: url(/images/don_square_03.png) no-repeat center/cover;
}
main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don4 {
    background: url(/images/don_square_04.png) no-repeat center/cover;
}
main .food-section {
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: var(--app-height);
    background-color: white;
    padding-top: 90px;
}
main .food-section .top-container {
    display: flex;
    justify-content: space-between;
    height: 225px;
    margin: 0 var(--main-section-margin);
}
main .food-section .top-container .text-container h2 {
    font-size: 6.5rem;
}
main .food-section .top-container .text-container h3 {
    font-size: 2rem;
}
main .food-section .top-container .text-container h3 a {
    display: flex;
    gap: 10px;
}
main .food-section .top-container .text-container h3 a span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(/images/arrow_button-02.png) no-repeat center/cover;
}
main .food-section .top-container .text-container h3 a:hover {
    text-decoration: underline;
}
main .food-section .top-container .img-container {
    width: 350px;
}
main .food-section .top-container .img-container a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/loriaFood_logo.png) no-repeat center/100%;
}
main .food-section .bottom-container {
    position: relative;
    height: 60%;
    margin: 65px;
    overflow: hidden;
}
main .food-section .bottom-container .logo-absolute-container {
    position: absolute;
    bottom: 10px;
    left: 30px;
    width: 200px;
    height: 120px;
    background: url(/images/doomaruLogo.png) no-repeat center/100%;
}
main .food-section .bottom-container .bg-video {
    -o-object-fit: cover;
    object-fit: cover; /* Cover the entire section */
}
main .vision-section {
    box-sizing: border-box;
    position: relative;
    padding: calc(50vh - var(--vision-text-height) / 2) 0;
}
main .vision-section .white-bg-absolute {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}
main .vision-section .img-container {
    transition: opacity 0.5s, width 0.3s, left 0.3s, background-size 0.3s;
    z-index: -1;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
}
main .vision-section .img-container.active {
    transition: opacity 0.4s, width 0.2s, left 0.2s, background-size 0.2s;
    opacity: 1;
}
main .vision-section .img-container.humanism {
    background: url(/images/humanism.jpg) no-repeat center/cover fixed;
}
main .vision-section .img-container.global {
    background: url(/images/global.jpg) no-repeat center/cover fixed;
}
main .vision-section .img-container.clean {
    background: url(/images/clean.jpg) no-repeat center/cover fixed;
}
main .vision-section .img-container.friendly {
    background: url(/images/friendly.jpg) no-repeat center/cover fixed;
}
main .vision-section .inner-container {
    display: flex;
    flex-direction: column;
    gap: 30rem;
    overflow: hidden;
}
main .vision-section .inner-container .text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: var(--vision-text-height);
    margin-left: 50%;
    opacity: 0.5;
}
main .vision-section .inner-container .text-container.opacity {
    opacity: 1;
}
main .vision-section .inner-container .text-container h2 {
    font-size: 9rem;
    color: white;
}
main .vision-section .inner-container .text-container h3 {
    font-size: 4rem;
    color: white;
}

@media (max-width: 1024px) {
    html {
        font-size: 45%;
    }
    main .slogan-section {
        padding: 0 10px;
    }
    main .slogan-section .slogan-text-container {
        width: 50%;
    }
    main .slogan-section .slogan-text-container strong {
        font-size: 3rem;
        line-height: 5rem;
    }
    main .slogan-section .slogan-text-container .btn-container {
        margin-top: 20px;
    }
    main .slogan-section .slogan-img-container {
        width: 50%;
        height: 100%;
        background: url(/images/mk_building.jpeg) no-repeat center/150%;
    }
    main .white-space {
        height: 20vh;
        background-color: white;
    }
    main .white-space:last-child {
        border-bottom: 1px solid rgb(236, 228, 218);
    }
    main .aznis-section {
        box-sizing: border-box;
        height: 100vh;
        background-color: white;
        padding-top: 90px;
    }
    main .aznis-section .top-container {
        display: flex;
        justify-content: space-between;
        overflow: hidden;
        height: 180px;
        margin: 0 10px;
    }
    main .aznis-section .top-container .text-container h2 {
        font-size: 4rem;
    }
    main .aznis-section .top-container .text-container h3 {
        font-size: 2rem;
    }
    main .aznis-section .top-container .text-container h3 a {
        display: flex;
        gap: 10px;
    }
    main .aznis-section .top-container .text-container h3 a span {
        display: block;
        width: 20px;
        height: 20px;
        background: url(/images/arrow_button-02.png) no-repeat center/cover;
    }
    main .aznis-section .top-container .text-container h3 a:hover {
        text-decoration: underline;
    }
    main .aznis-section .top-container .img-container {
        width: 180px;
    }
    main .aznis-section .top-container .img-container a {
        display: block;
        width: 100%;
        height: 100%;
        background: url(/images/aznis_logo_test.jpg) no-repeat center/100%;
    }
    main .aznis-section .bottom-container {
        padding: 120px 10px 50px;
    }
    main .entertainment-section {
        box-sizing: border-box;
        height: var(--app-height);
        background-color: white;
        padding-top: 90px;
    }
    main .entertainment-section .top-container {
        display: flex;
        justify-content: space-between;
        overflow: hidden;
        height: 180px;
        margin: 0 10px;
    }
    main .entertainment-section .top-container .text-container h2 {
        font-size: 4rem;
    }
    main .entertainment-section .top-container .text-container h3 {
        font-size: 2rem;
    }
    main .entertainment-section .top-container .text-container h3 a {
        display: flex;
        gap: 10px;
    }
    main .entertainment-section .top-container .text-container h3 a span {
        display: block;
        width: 20px;
        height: 20px;
        background: url(/images/arrow_button-02.png) no-repeat center/cover;
    }
    main .entertainment-section .top-container .text-container h3 a:hover {
        text-decoration: underline;
    }
    main .entertainment-section .top-container .img-container {
        width: 180px;
    }
    main .entertainment-section .top-container .img-container a {
        display: block;
        width: 100%;
        height: 100%;
        background: url(/images/viewentLogo.png) no-repeat center/60%;
    }
    main .entertainment-section .bottom-container {
        padding: 120px 10px 50px;
    }
    main .entertainment-section .bottom-container .actor-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    main .entertainment-section .bottom-container .actor-container .actor {
        width: 30%;
    }
    main .franchise-section .top-container {
        display: flex;
        justify-content: space-between;
        height: 225px;
        margin: 0 10px;
    }
    main .franchise-section .top-container .text-container h2 {
        font-size: 4rem;
        margin-bottom: 30px;
    }
    main .franchise-section .top-container .text-container h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    main .franchise-section .top-container .text-container h3 a {
        display: flex;
        justify-content: space-between;
        width: 180px;
    }
    main .franchise-section .top-container .text-container h3 a span {
        display: block;
        width: 20px;
        height: 20px;
        background: url(/images/arrow_button-02.png) no-repeat center/cover;
    }
    main .franchise-section .top-container .text-container h3 a:hover {
        text-decoration: underline;
    }
    main .franchise-section .top-container .img-container {
        width: 180px;
    }
    main .franchise-section .top-container .img-container a {
        display: block;
        width: 100%;
        height: 100%;
        background: url(/images/mkFranchiseLogo.png) no-repeat center/100%;
    }
    main .franchise-section .bottom-container {
        gap: 50px;
    }
    main .franchise-section .bottom-container .brand-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        height: 120px;
        width: 100%;
        margin: 0 auto;
    }
    main .franchise-section .bottom-container .brand-container .img-container.maison a {
        background: url(/images/maison_banner_logo.png) no-repeat center/100%;
    }
    main .franchise-section .bottom-container .brand-container .img-container.jin a {
        background: url(/images/jin_banner_logo.png) no-repeat center/90%;
    }
    main .franchise-section .bottom-container .brand-container .img-container.don a {
        background: url(/images/don_banner_logo.png) no-repeat center/100%;
    }
    main .franchise-section .bottom-container .pic-container {
        position: relative;
        display: flex;
        height: var(--infinite-mobile-slide-height);
        overflow: hidden;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap {
        position: absolute;
        display: flex;
        gap: 10px;
        padding-right: 10px;
        -webkit-animation: aniScroll 30s linear infinite;
        animation: aniScroll 30s linear infinite;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap.list2 {
        -webkit-animation: aniScroll-2 30s linear infinite;
        animation: aniScroll-2 30s linear infinite;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic {
        width: var(--infinite-mobile-slide-height);
        height: var(--infinite-mobile-slide-height);
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison1 {
        background: url(/images/maison_square_01.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison2 {
        background: url(/images/maison_square_02.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison3 {
        background: url(/images/maison_square_03.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.maison4 {
        background: url(/images/maison_square_04.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin1 {
        background: url(/images/jin_square_01.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin2 {
        background: url(/images/jin_square_02.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin3 {
        background: url(/images/jin_square_03.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.jin4 {
        background: url(/images/jin_square_04.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don1 {
        background: url(/images/don_square_01.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don2 {
        background: url(/images/don_square_02.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don3 {
        background: url(/images/don_square_03.png) no-repeat center/cover;
    }
    main .franchise-section .bottom-container .pic-container .pic-wrap .slide-pic.don4 {
        background: url(/images/don_square_04.png) no-repeat center/cover;
    }
    main .food-section .top-container {
        display: flex;
        justify-content: space-between;
        height: 225px;
        margin: 0 10px;
    }
    main .food-section .top-container .text-container h2 {
        font-size: 4rem;
    }
    main .food-section .top-container .text-container h3 {
        font-size: 2rem;
    }
    main .food-section .top-container .text-container h3 a {
        display: flex;
        gap: 10px;
    }
    main .food-section .top-container .text-container h3 a span {
        display: block;
        width: 20px;
        height: 20px;
        background: url(/images/arrow_button-02.png) no-repeat center/cover;
    }
    main .food-section .top-container .text-container h3 a:hover {
        text-decoration: underline;
    }
    main .food-section .top-container .img-container {
        width: 180px;
    }
    main .food-section .top-container .img-container a {
        display: block;
        width: 100%;
        height: 100%;
        background: url(/images/loriaFood_logo.png) no-repeat center/100%;
    }
    main .food-section .bottom-container {
        position: relative;
        height: 60%;
        margin: 0;
        overflow: hidden;
    }
    main .food-section .bottom-container .logo-absolute-container {
        position: absolute;
        bottom: 10px;
        left: 30px;
        width: 130px;
        height: 120px;
        background: url(/images/doomaruLogo.png) no-repeat center/100%;
    }
    main .food-section .bottom-container .bg-video {
        -o-object-fit: cover;
        object-fit: cover; /* Cover the entire section */
    }
    main .vision-section {
        box-sizing: border-box;
        position: relative;
        padding: 0;
        height: 1200px;
        background-color: white;
    }
    main .vision-section .white-bg-absolute {
        display: none;
    }
    main .vision-section .img-container {
        transition: opacity 0.5s, width 0.3s, left 0.3s, background-size 0.3s;
        z-index: 0;
        position: absolute;
        left: 0;
        width: 100%;
        height: 25%;
        opacity: 1;
    }
    main .vision-section .img-container.active {
        transition: opacity 0.4s, width 0.2s, left 0.2s, background-size 0.2s;
        opacity: 1;
    }
    main .vision-section .img-container.humanism {
        background: url(/images/humanism.jpg) no-repeat center/cover;
        top: 0;
    }
    main .vision-section .img-container.global {
        background: url(/images/global.jpg) no-repeat center/cover;
        top: 25%;
    }
    main .vision-section .img-container.clean {
        background: url(/images/clean.jpg) no-repeat center/cover;
        top: 50%;
    }
    main .vision-section .img-container.friendly {
        background: url(/images/friendly.jpg) no-repeat center/cover;
        top: 75%;
    }
    main .vision-section .inner-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    main .vision-section .inner-container .text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        width: 50%;
        height: 300px;
        margin-left: 45%;
        opacity: 0.5;
    }
    main .vision-section .inner-container .text-container.opacity {
        opacity: 1;
    }
    main .vision-section .inner-container .text-container h2 {
        font-size: 5.3rem;
        color: white;
    }
    main .vision-section .inner-container .text-container h3 {
        font-size: 3rem;
    }
}

/*@media (max-width: 1024px) and (max-height: 660px) {*/
/*    main .entertainment-section {*/
/*        height: 130vh;*/
/*    }*/
/*    main .entertainment-section .bottom-container {*/
/*        height: calc(130vh - 315px);*/
/*    }*/
/*}*/