@charset "UTF-8";
/* --- メインビジュアル画像 --- */
/*  確認のためとりあえず入れる */
#mainvisual {
  --app-h: 100vh;
  --app-w: 100vw;
  height: calc(var(--app-h) * 0.6);
  background-color: #ccc;
  position: relative;
  z-index: 0;
}
@supports (height: 100dvh) {
  #mainvisual {
    --app-h: 100dvh;
    --app-w: 100dvw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: var(--app-h);
  }
}
#mainvisual img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */
