:root {
  --top-value: 50%; /* デフォルト値 */
  --first-height: 30%; /* 初期値、JavaScriptで上書きされます */
}




/* スクロールが浅い場合のロゴとハンバーガーメニューの挙動調整 */
.disnone{
  display: none!important;
}


/* ページの途中で読込された場合のロゴscaleバグを調整する */
@media screen and (max-width: 1024px) {
.scale_fix {
    transform: translate(-50%, -32px); /* 何も変形を加えない */
}
}

@media screen and (min-width: 1025px) {
  .scale_fix {
    transform: translate(-50%, -50%)!important; /* 何も変形を加えない */
  }
}