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


.main-logo img.scale_fix {
  transform: scale(1) !important;
  left: 0px !important;
  top: 20px !important;
}


/* スクロールが浅い場合のロゴとハンバーガーメニューの挙動調整 */
.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%);
  } */
}