/* ------------------------- Style Â® Code by Dennis -------------------------------------------------- */



 .main-wrap {
    box-sizing: border-box;
    will-change: auto;
    
     transform: none !important;
     opacity: 1 !important;
 }
 
 main.touch {
    position: relative;
    height: auto;
 }
 
 main.touch .main-wrap {
    position: relative;
 }
 
 @media screen and (max-width: 1024px) {
    main {
       position: relative;
    }
    .main-wrap {
       position: relative;
    }
 }
 
 /* ------------------------- Page Transition -------------------------------------------------- */
 
 .no-scroll-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 900;
    display: none;
 }
 
 .loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 800;
    pointer-events: none;
    background: transparent;
 }
 
 .loading-screen {
    position: relative;
    padding: 0;
    width: 100%;
    height: 100%;
    left: 0;
    will-change: top;
 }
 
 .loading-screen,
 .loading-container .rounded-div-wrap.top .rounded-div,
 .loading-container .rounded-div-wrap.bottom .rounded-div {
    background: var(--color-dark-dark);
 }
 
 .loading-container .rounded-div-wrap.top .rounded-div,
 .loading-container .rounded-div-wrap.bottom .rounded-div {
    height: 745%;
 }
 
 .loading-container .rounded-div-wrap.top {
    top: 0;
    position: absolute;
    transform: translateY(-99%) scale(1,-1);
    z-index: 2;
    height: 0vh;
    will-change: height;
 }
 
 .loading-container .rounded-div-wrap.bottom {
    top: unset;
    bottom: 0;
    position: absolute;
    transform: translateY(99%);
    z-index: 2;
    height: 0vh;
    will-change: height;
 }
 
 .loading-container .loading-words {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    display: block;
    will-change: opacity;
 }
 
 .loading-container .loading-words h2 {
    margin: 0;
    padding: 0;
    color: var(--color-white);
    position: absolute;
    top:0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    white-space: nowrap;
    will-change: opacity;
 }
 
 .loading-container .loading-words h2.jap {
    font-size: calc(clamp(3.25em, 5vw, 4.5em) * .65);
    transform: translate(-50%, 10%);
 }
 
 .loading-container .dot {
    display: none;
    position: absolute;
    border-radius: 50%;
    background: var(--color-white);
    left: 0;
    top: 47%;
    bottom: auto;
    width: calc(clamp(16px, 1.2vw, 19px) / 1.65);
    height: calc(clamp(16px, 1.2vw, 19px) / 1.65);
    transform: translate(0, 0) scale(1);
 }
 
 .loading-container .loading-words h2.active {
    display: block;
 }
 
 .loading-container .loading-words .home-active,
 .loading-container .loading-words .home-active-last {
    opacity: 0;
    display: none;
 }
 
 .loading-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 90;
    background: #FFF;
    visibility: hidden;
    opacity: 0;
 }
 
 .once-in {
    will-change: transform;
 }
 
 @media screen and (max-width: 540px) {
 
    /* .loading-container .loading-words h2 {
       padding-left: 0;
    } */
 
    /* .loading-container .dot {
       display: none;
    } */
 
    .loading-container .dot {
       top: 42%;
    }
 }
 
 
 