@media (min-width: 940px) {
  .app-container {
    max-width: 85rem !important;  /* 65remから85rem (1360px) に変更 */
  }
}

/* フルHD以上ならさらに広げる */
@media (min-width: 1920px) {
  .app-container {
    max-width: 100rem !important;  /* 1600px */
  }
}
