.l-header {
    padding-top: 30px;
    position: relative;
}

.p-header__logo {
    text-align: center;
}

.p-header__logo img {
    max-width: 262px;
}

.wrap-index {
    position: relative;
    z-index: 1;
}

.menu-header-fixed {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 464px;
  z-index: 9999;
  pointer-events: none;
}

.menu-header {
  position: absolute;
  top: 0;
  right: 16px;
  pointer-events: auto;
}

.bg-menu {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 0;
}

.bg-menu .img-bg-center {
    width: 100%;
}

.bg-menu .img-bg-right {
    position: absolute;
    top: 0;
    right: 0;
}

.banner-left {
    position: fixed;
    top: 436px;
    left: 80px;
}

.menu-right {
    position: fixed;
    top: 171px;
    right: 166px;
}

/* Loading Page Styles */
.loadding-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    /* z-index: 9999; */
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    visibility: visible;
}

.loadding-page.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loadding-top {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images */
.loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    -webkit-transition: height 0.8s ease;
    transition: height 0.8s ease;
}

.loading-bg-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
}

/* Loading Item Animation */
.loading-item {
    position: relative;
    z-index: 2;
    transform: translateY(100vh);
    animation: loadingSequence 2s ease-in-out forwards;
}

/* Main Site Wrapper */
.l-siteWrapper {
    position: relative;
    z-index: 2;
    opacity: 0;
    /* transform: translateY(100vh); */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.l-siteWrapper.show {
    /* transform: translateY(0); */
    opacity: 1;
    overflow: hidden;
}

.error404 .loadding-page {
    display: none;
}

.error404 .l-siteWrapper {
    opacity: 1;
    height: 100vh;
    transform: translateY(0vh);
}

.error404 .wrap-index {
    height: 100vh;
}

.error404 .title-404 {
    font-family: "Zen Dots";
    font-weight: 400;
    font-style: Regular;
    font-size: 88px;
    line-height: 140%;
    letter-spacing: 6.5px;
    color: #FFFFFF;
    margin-top: 164px;
}

.error404 .keyword-404 {
    font-family: "Zen Kaku Gothic New";
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1.6px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.error404 .l-footer{
    display: none;
}

.error404 .bg-menu {
    height: 100vh;
}

.error404 .buy-now-btn {
    font-size: 14px;
}

.banner-left .suha-title .img-logo-banner{
    width: 294px;
    margin-bottom: -5px;
}

.banner-left .suha-title .img-suha-title {
    width: 90px;
    margin-top: 7px;
    margin-bottom: 8px;
}

.error404 .l-siteWrapper {
    overflow: hidden;
}

.error404 .img-bg-right {
    top: 2px;
    right: 0;
}

.w-logo-header {
    width: 80px;
}

@keyframes loadingSequence {
    0% {
        transform: translateY(100vh);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    20% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        animation-timing-function: linear;
    }
    30% {
        transform: translateY(0) rotate(180deg);
        opacity: 1;
        animation-timing-function: linear;
    }
    45% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
        animation-timing-function: linear;
    }
    65% {
        transform: translateY(0) rotate(1800deg);
        opacity: 1;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    100% {
        transform: translateY(-40vh) rotate(3600deg);
        opacity: 0;
    }
}


      