/* ====================================================
  PC表示
====================================================*/
@media screen and (min-width:1104px) {
  .global-container {
    min-height: 100vh;
    grid-template-rows: var(--header-space) 1fr auto;
  }
}
/* ====================================================
  スマホ表示
====================================================*/
@media screen and (max-width:1103px) {
  .global-container {
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
  }
}
