@charset "utf-8";
.wrap {
    overflow: hidden;
}

main {
    position: relative;
}

/*ローディング画面*/
.loading-wrapper { 
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
} 

.bg-logo {
    max-width: 400px;
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 0.15;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        opacity: 1;
    }
}
/*終わり*/  


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  

/*<header class="header">*/
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/ 


/*ローディング画面*/
    .bg-logo {
        max-width: clamp(240px, 320vw / 5.99, 320px);
    }
/*終わり*/  

}
